dummy.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dummy.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: dummy.c 7522 2004-04-27 16:35:15Z sam $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/sout.h>
  30. /*****************************************************************************
  31.  * Module descriptor
  32.  *****************************************************************************/
  33. static int  Open ( vlc_object_t * );
  34. static void Close( vlc_object_t * );
  35. vlc_module_begin();
  36.     set_description( _("Dummy stream output") );
  37.     set_capability( "sout access", 0 );
  38.     add_shortcut( "dummy" );
  39.     set_callbacks( Open, Close );
  40. vlc_module_end();
  41. /*****************************************************************************
  42.  * Exported prototypes
  43.  *****************************************************************************/
  44. static int     Write( sout_access_out_t *, block_t * );
  45. static int     Seek ( sout_access_out_t *, off_t  );
  46. /*****************************************************************************
  47.  * Open: open the file
  48.  *****************************************************************************/
  49. static int Open( vlc_object_t *p_this )
  50. {
  51.     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
  52.     p_access->p_sys    = NULL;
  53.     p_access->pf_write = Write;
  54.     p_access->pf_seek  = Seek;
  55.     msg_Dbg( p_access, "dummy stream output access opened" );
  56.     return VLC_SUCCESS;
  57. }
  58. /*****************************************************************************
  59.  * Close: close the target
  60.  *****************************************************************************/
  61. static void Close( vlc_object_t * p_this )
  62. {
  63.     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
  64.     msg_Dbg( p_access, "dummy stream output access closed" );
  65. }
  66. /*****************************************************************************
  67.  * Read: standard read on a file descriptor.
  68.  *****************************************************************************/
  69. static int Write( sout_access_out_t *p_access, block_t *p_buffer )
  70. {
  71.     int64_t i_write = 0;
  72.     block_t *b = p_buffer;
  73.     while( b )
  74.     {
  75.         i_write += b->i_buffer;
  76.         b = b->p_next;
  77.     }
  78.     block_ChainRelease( p_buffer );
  79.     return i_write;
  80. }
  81. /*****************************************************************************
  82.  * Seek: seek to a specific location in a file
  83.  *****************************************************************************/
  84. static int Seek( sout_access_out_t *p_access, off_t i_pos )
  85. {
  86.     return 0;
  87. }