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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dummy.c: dummy muxer module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 51e11adaa2b2f243ebc53002b31d446da9e7e3c8 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_sout.h>
  33. #include <vlc_block.h>
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. static int  Open   ( vlc_object_t * );
  38. static void Close  ( vlc_object_t * );
  39. vlc_module_begin ()
  40.     set_description( N_("Dummy/Raw muxer") )
  41.     set_capability( "sout mux", 5 )
  42.     set_category( CAT_SOUT )
  43.     set_subcategory( SUBCAT_SOUT_MUX )
  44.     add_shortcut( "dummy" )
  45.     add_shortcut( "raw" )
  46.     add_shortcut( "es" )
  47.     set_callbacks( Open, Close )
  48. vlc_module_end ()
  49. /*****************************************************************************
  50.  * Exported prototypes
  51.  *****************************************************************************/
  52. static int Control( sout_mux_t *, int, va_list );
  53. static int AddStream( sout_mux_t *, sout_input_t * );
  54. static int DelStream( sout_mux_t *, sout_input_t * );
  55. static int Mux      ( sout_mux_t * );
  56. struct sout_mux_sys_t
  57. {
  58.     /* Some streams have special initialization data, we'll output this
  59.      * data as an header in the stream. */
  60.     bool b_header;
  61. };
  62. /*****************************************************************************
  63.  * Open:
  64.  *****************************************************************************/
  65. static int Open( vlc_object_t *p_this )
  66. {
  67.     sout_mux_t *p_mux = (sout_mux_t*)p_this;
  68.     sout_mux_sys_t  *p_sys;
  69.     msg_Dbg( p_mux, "Dummy/Raw muxer opened" );
  70.     msg_Info( p_mux, "Open" );
  71.     p_mux->pf_control   = Control;
  72.     p_mux->pf_addstream = AddStream;
  73.     p_mux->pf_delstream = DelStream;
  74.     p_mux->pf_mux       = Mux;
  75.     p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
  76.     if( !p_sys )
  77.         return VLC_ENOMEM;
  78.     p_sys->b_header      = true;
  79.     return VLC_SUCCESS;
  80. }
  81. /*****************************************************************************
  82.  * Close:
  83.  *****************************************************************************/
  84. static void Close( vlc_object_t * p_this )
  85. {
  86.     sout_mux_t *p_mux = (sout_mux_t*)p_this;
  87.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  88.     msg_Dbg( p_mux, "Dummy/Raw muxer closed" );
  89.     free( p_sys );
  90. }
  91. static int Control( sout_mux_t *p_mux, int i_query, va_list args )
  92. {
  93.     VLC_UNUSED(p_mux);
  94.     bool *pb_bool;
  95.     switch( i_query )
  96.     {
  97.         case MUX_CAN_ADD_STREAM_WHILE_MUXING:
  98.             pb_bool = (bool*)va_arg( args, bool * );
  99.             *pb_bool = true;
  100.             return VLC_SUCCESS;
  101.         case MUX_GET_ADD_STREAM_WAIT:
  102.             pb_bool = (bool*)va_arg( args, bool * );
  103.             *pb_bool = false;
  104.             return VLC_SUCCESS;
  105.         case MUX_GET_MIME:   /* Unknown */
  106.         default:
  107.             return VLC_EGENERIC;
  108.    }
  109. }
  110. static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
  111. {
  112.     VLC_UNUSED(p_input);
  113.     msg_Dbg( p_mux, "adding input" );
  114.     return VLC_SUCCESS;
  115. }
  116. static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
  117. {
  118.     VLC_UNUSED(p_input);
  119.     msg_Dbg( p_mux, "removing input" );
  120.     return VLC_SUCCESS;
  121. }
  122. static int Mux( sout_mux_t *p_mux )
  123. {
  124.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  125.     int i;
  126.     for( i = 0; i < p_mux->i_nb_inputs; i++ )
  127.     {
  128.         block_fifo_t *p_fifo;
  129.         int i_count;
  130.         if( p_sys->b_header && p_mux->pp_inputs[i]->p_fmt->i_extra )
  131.         {
  132.             /* Write header data */
  133.             block_t *p_data;
  134.             p_data = block_New( p_mux, p_mux->pp_inputs[i]->p_fmt->i_extra );
  135.             memcpy( p_data->p_buffer, p_mux->pp_inputs[i]->p_fmt->p_extra,
  136.                     p_mux->pp_inputs[i]->p_fmt->i_extra );
  137.             msg_Dbg( p_mux, "writing header data" );
  138.             sout_AccessOutWrite( p_mux->p_access, p_data );
  139.         }
  140.         p_fifo = p_mux->pp_inputs[i]->p_fifo;
  141.         i_count = block_FifoCount( p_fifo );
  142.         while( i_count > 0 )
  143.         {
  144.             block_t *p_data = block_FifoGet( p_fifo );
  145.             sout_AccessOutWrite( p_mux->p_access, p_data );
  146.             i_count--;
  147.         }
  148.     }
  149.     p_sys->b_header = false;
  150.     return VLC_SUCCESS;
  151. }