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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * autodel.c: monitor mux inputs and automatically add/delete streams
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: a04eff738f12b8ea597ec77751c55af4d4a0d0b3 $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@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. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_sout.h>
  32. #include <vlc_block.h>
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. static int  Open    ( vlc_object_t * );
  37. static void Close   ( vlc_object_t * );
  38. #define SOUT_CFG_PREFIX "sout-autodel-"
  39. vlc_module_begin ()
  40.     set_shortname( N_("Autodel"))
  41.     set_description( N_("Automatically add/delete input streams"))
  42.     set_capability( "sout stream", 50 )
  43.     add_shortcut( "autodel" )
  44.     set_callbacks( Open, Close )
  45. vlc_module_end ()
  46. /*****************************************************************************
  47.  * Local prototypes
  48.  *****************************************************************************/
  49. static sout_stream_id_t *Add   ( sout_stream_t *, es_format_t * );
  50. static int               Del   ( sout_stream_t *, sout_stream_id_t * );
  51. static int               Send  ( sout_stream_t *, sout_stream_id_t *, block_t * );
  52. struct sout_stream_id_t
  53. {
  54.     sout_stream_id_t *id;
  55.     es_format_t fmt;
  56.     mtime_t i_last;
  57.     bool b_error;
  58. };
  59. struct sout_stream_sys_t
  60. {
  61.     sout_stream_t   *p_out;
  62.     sout_stream_id_t **pp_es;
  63.     int i_es_num;
  64. };
  65. /*****************************************************************************
  66.  * Open:
  67.  *****************************************************************************/
  68. static int Open( vlc_object_t *p_this )
  69. {
  70.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  71.     sout_stream_sys_t *p_sys;
  72.     p_sys          = malloc( sizeof( sout_stream_sys_t ) );
  73.     p_sys->p_out = sout_StreamNew( p_stream->p_sout, p_stream->psz_next );
  74.     if( !p_sys->p_out )
  75.     {
  76.         msg_Err( p_stream, "cannot create chain" );
  77.         free( p_sys );
  78.         return VLC_EGENERIC;
  79.     }
  80.     p_sys->pp_es = NULL;
  81.     p_sys->i_es_num = 0;
  82.     p_stream->pf_add    = Add;
  83.     p_stream->pf_del    = Del;
  84.     p_stream->pf_send   = Send;
  85.     p_stream->p_sys     = p_sys;
  86.     /* update p_sout->i_out_pace_nocontrol */
  87.     p_stream->p_sout->i_out_pace_nocontrol++;
  88.     return VLC_SUCCESS;
  89. }
  90. /*****************************************************************************
  91.  * Close:
  92.  *****************************************************************************/
  93. static void Close( vlc_object_t * p_this )
  94. {
  95.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  96.     sout_stream_sys_t *p_sys = (sout_stream_sys_t *)p_stream->p_sys;
  97.     sout_StreamDelete( p_sys->p_out );
  98.     p_stream->p_sout->i_out_pace_nocontrol--;
  99.     free( p_sys );
  100. }
  101. static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  102. {
  103.     sout_stream_sys_t *p_sys = (sout_stream_sys_t *)p_stream->p_sys;
  104.     sout_stream_id_t *p_es = malloc( sizeof(sout_stream_id_t) );
  105.     p_es->fmt = *p_fmt;
  106.     p_es->id = NULL;
  107.     p_es->i_last = 0;
  108.     p_es->b_error = false;
  109.     TAB_APPEND( p_sys->i_es_num, p_sys->pp_es, p_es );
  110.     return p_es;
  111. }
  112. static int Del( sout_stream_t *p_stream, sout_stream_id_t *p_es )
  113. {
  114.     sout_stream_sys_t *p_sys = (sout_stream_sys_t *)p_stream->p_sys;
  115.     sout_stream_id_t *id = p_es->id;
  116.     TAB_REMOVE( p_sys->i_es_num, p_sys->pp_es, p_es );
  117.     free( p_es );
  118.     if ( id != NULL )
  119.         return p_sys->p_out->pf_del( p_sys->p_out, id );
  120.     else
  121.         return VLC_SUCCESS;
  122. }
  123. static int Send( sout_stream_t *p_stream, sout_stream_id_t *p_es,
  124.                  block_t *p_buffer )
  125. {
  126.     sout_stream_sys_t *p_sys = (sout_stream_sys_t *)p_stream->p_sys;
  127.     mtime_t i_current = mdate();
  128.     int i;
  129.     p_es->i_last = p_buffer->i_dts;
  130.     if ( p_es->id == NULL && p_es->b_error != true )
  131.     {
  132.         p_es->id = p_sys->p_out->pf_add( p_sys->p_out, &p_es->fmt );
  133.         if ( p_es->id == NULL )
  134.         {
  135.             p_es->b_error = true;
  136.             msg_Err( p_stream, "couldn't create chain for id %d",
  137.                      p_es->fmt.i_id );
  138.         }
  139.     }
  140.     if ( p_es->b_error != true )
  141.         p_sys->p_out->pf_send( p_sys->p_out, p_es->id, p_buffer );
  142.     else
  143.         block_ChainRelease( p_buffer );
  144.     for ( i = 0; i < p_sys->i_es_num; i++ )
  145.     {
  146.         if ( p_sys->pp_es[i]->id != NULL
  147.               && (p_sys->pp_es[i]->fmt.i_cat == VIDEO_ES
  148.                    || p_sys->pp_es[i]->fmt.i_cat == AUDIO_ES)
  149.               && p_sys->pp_es[i]->i_last < i_current )
  150.         {
  151.             p_sys->p_out->pf_del( p_sys->p_out, p_sys->pp_es[i]->id );
  152.             p_sys->pp_es[i]->id = NULL;
  153.         }
  154.     }
  155.     return VLC_SUCCESS;
  156. }