dummy.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dummy.c: dummy stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 the VideoLAN team
  5.  * $Id: fbf7a2ed59585132f5f0a12cf0b28de318b58e6b $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_block.h>
  32. #include <vlc_sout.h>
  33. /*****************************************************************************
  34.  * Exported prototypes
  35.  *****************************************************************************/
  36. static int      Open    ( vlc_object_t * );
  37. static void     Close   ( vlc_object_t * );
  38. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  39. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  40. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. vlc_module_begin ()
  45.     set_description( N_("Dummy stream output") )
  46.     set_capability( "sout stream", 50 )
  47.     add_shortcut( "dummy" )
  48.     add_shortcut( "drop" )
  49.     set_callbacks( Open, Close )
  50. vlc_module_end ()
  51. /*****************************************************************************
  52.  * Open:
  53.  *****************************************************************************/
  54. static int Open( vlc_object_t *p_this )
  55. {
  56.     sout_stream_t *p_stream = (sout_stream_t*)p_this;
  57.     p_stream->pf_add    = Add;
  58.     p_stream->pf_del    = Del;
  59.     p_stream->pf_send   = Send;
  60.     p_stream->p_sys     = NULL;
  61.     return VLC_SUCCESS;
  62. }
  63. /*****************************************************************************
  64.  * Close:
  65.  *****************************************************************************/
  66. static void Close( vlc_object_t * p_this )
  67. {
  68.     (void)p_this;
  69. }
  70. static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  71. {
  72.     VLC_UNUSED(p_stream); VLC_UNUSED(p_fmt);
  73.     return malloc( 1 );
  74. }
  75. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  76. {
  77.     VLC_UNUSED(p_stream);
  78.     free( id );
  79.     return VLC_SUCCESS;
  80. }
  81. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  82.                  block_t *p_buffer )
  83. {
  84.     (void)p_stream; (void)id;
  85.     block_ChainRelease( p_buffer );
  86.     return VLC_SUCCESS;
  87. }