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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dummy.c: dummy stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: dummy.c 7046 2004-03-11 17:36:43Z fenrir $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/sout.h>
  30. /*****************************************************************************
  31.  * Exported prototypes
  32.  *****************************************************************************/
  33. static int      Open    ( vlc_object_t * );
  34. static void     Close   ( vlc_object_t * );
  35. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  36. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  37. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  38. /*****************************************************************************
  39.  * Module descriptor
  40.  *****************************************************************************/
  41. vlc_module_begin();
  42.     set_description( _("Dummy stream output") );
  43.     set_capability( "sout stream", 50 );
  44.     add_shortcut( "dummy" );
  45.     set_callbacks( Open, Close );
  46. vlc_module_end();
  47. /*****************************************************************************
  48.  * Open:
  49.  *****************************************************************************/
  50. static int Open( vlc_object_t *p_this )
  51. {
  52.     sout_stream_t *p_stream = (sout_stream_t*)p_this;
  53.     p_stream->pf_add    = Add;
  54.     p_stream->pf_del    = Del;
  55.     p_stream->pf_send   = Send;
  56.     p_stream->p_sys     = NULL;
  57.     return VLC_SUCCESS;
  58. }
  59. /*****************************************************************************
  60.  * Close:
  61.  *****************************************************************************/
  62. static void Close( vlc_object_t * p_this )
  63. {
  64. #if 0
  65.     sout_stream_t   *p_stream = (sout_stream_t*)p_this;
  66. #endif
  67. }
  68. struct sout_stream_id_t
  69. {
  70.     int i_d_u_m_m_y;
  71. };
  72. static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  73. {
  74.     sout_stream_id_t *id;
  75.     id = malloc( sizeof( sout_stream_id_t ) );
  76.     id->i_d_u_m_m_y = 0;
  77.     return id;
  78. }
  79. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  80. {
  81.     free( id );
  82.     return VLC_SUCCESS;
  83. }
  84. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  85.                  block_t *p_buffer )
  86. {
  87.     block_ChainRelease( p_buffer );
  88.     return VLC_SUCCESS;
  89. }