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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * description.c: description stream output module (gathers ES info)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 the VideoLAN team
  5.  * $Id: e1ebd6c1bb7e837d531eed2ae36bdef27b069bff $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  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_input.h>
  32. #include <vlc_block.h>
  33. #include <vlc_sout.h>
  34. #include <assert.h>
  35. /*****************************************************************************
  36.  * Exported prototypes
  37.  *****************************************************************************/
  38. static int      Open    ( vlc_object_t * );
  39. static void     Close   ( vlc_object_t * );
  40. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  41. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  42. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  43. /*****************************************************************************
  44.  * Module descriptor
  45.  *****************************************************************************/
  46. vlc_module_begin ()
  47.     set_description( N_("Description stream output") )
  48.     set_capability( "sout stream", 50 )
  49.     add_shortcut( "description" )
  50.     set_callbacks( Open, Close )
  51. vlc_module_end ()
  52. struct sout_stream_sys_t
  53. {
  54.     mtime_t i_stream_start;
  55. };
  56. struct sout_stream_id_t
  57. {
  58. };
  59. /*****************************************************************************
  60.  * Open:
  61.  *****************************************************************************/
  62. static int Open( vlc_object_t *p_this )
  63. {
  64.     sout_stream_t *p_stream = (sout_stream_t*)p_this;
  65.     sout_stream_sys_t *p_sys;
  66.     p_stream->pf_add  = Add;
  67.     p_stream->pf_del  = Del;
  68.     p_stream->pf_send = Send;
  69.     p_sys = p_stream->p_sys = malloc(sizeof(sout_stream_sys_t));
  70.     p_sys->i_stream_start = 0;
  71.     return VLC_SUCCESS;
  72. }
  73. /*****************************************************************************
  74.  * Close:
  75.  *****************************************************************************/
  76. static void Close( vlc_object_t *p_this )
  77. {
  78.     sout_stream_t *p_stream = (sout_stream_t *)p_this;
  79.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  80.     msg_Dbg( p_this, "Closing" );
  81.     free( p_sys );
  82. }
  83. static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  84. {
  85.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  86.     sout_stream_id_t *id;
  87.     es_format_t *p_fmt_copy;
  88.     input_item_t *p_item;
  89.     input_thread_t *p_input;
  90.     msg_Dbg( p_stream, "Adding a stream" );
  91.     p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT, FIND_PARENT );
  92.     assert( p_input );
  93.  
  94.     p_item = input_GetItem(p_input);
  95.     p_fmt_copy = malloc(sizeof(es_format_t));
  96.     es_format_Copy( p_fmt_copy, p_fmt );
  97.     vlc_mutex_lock( &p_item->lock );
  98.     TAB_APPEND( p_item->i_es, p_item->es, p_fmt_copy );
  99.     vlc_mutex_unlock( &p_item->lock );
  100.     vlc_object_release( p_input );
  101.     if( p_sys->i_stream_start <= 0 )
  102.         p_sys->i_stream_start = mdate();
  103.     id = malloc( sizeof( sout_stream_id_t ) );
  104.     return id;
  105. }
  106. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  107. {
  108.     msg_Dbg( p_stream, "Removing a stream" );
  109.     free( id );
  110.     return VLC_SUCCESS;
  111. }
  112. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  113.                  block_t *p_buffer )
  114. {
  115.     VLC_UNUSED(id);
  116.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  117.     block_ChainRelease( p_buffer );
  118.     if( p_sys->i_stream_start + 1500000 < mdate() )
  119.     {
  120.         input_thread_t *p_input;
  121.         p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT, FIND_PARENT );
  122.         if( p_input )
  123.         {
  124.             p_input->b_eof = true;
  125.             vlc_object_release( p_input );
  126.         }
  127.     }
  128.     return VLC_SUCCESS;
  129. }