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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * description.c: description stream output module (gathers ES info)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: description.c 8716 2004-09-16 22:04:36Z gbazin $
  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., 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/input.h>
  30. #include <vlc/sout.h>
  31. /*****************************************************************************
  32.  * Exported prototypes
  33.  *****************************************************************************/
  34. static int      Open    ( vlc_object_t * );
  35. static void     Close   ( vlc_object_t * );
  36. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  37. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  38. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  39. /*****************************************************************************
  40.  * Module descriptor
  41.  *****************************************************************************/
  42. vlc_module_begin();
  43.     set_description( _("Description stream output") );
  44.     set_capability( "sout stream", 50 );
  45.     add_shortcut( "description" );
  46.     set_callbacks( Open, Close );
  47. vlc_module_end();
  48. struct sout_stream_sys_t
  49. {
  50.     input_thread_t *p_input;
  51.     mtime_t i_stream_start;
  52. };
  53. struct sout_stream_id_t
  54. {
  55.     int i_d_u_m_m_y;
  56. };
  57. /*****************************************************************************
  58.  * Open:
  59.  *****************************************************************************/
  60. static int Open( vlc_object_t *p_this )
  61. {
  62.     sout_stream_t *p_stream = (sout_stream_t*)p_this;
  63.     sout_stream_sys_t *p_sys;
  64.     p_stream->pf_add  = Add;
  65.     p_stream->pf_del  = Del;
  66.     p_stream->pf_send = Send;
  67.     p_sys = p_stream->p_sys = malloc(sizeof(sout_stream_sys_t));
  68.     p_sys->p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_PARENT );
  69.     if( !p_sys->p_input ) return VLC_EGENERIC;
  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.     vlc_object_release( p_stream->p_sys->p_input );
  80. }
  81. static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  82. {
  83.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  84.     sout_stream_id_t *id;
  85.     es_format_t *p_fmt_copy = malloc(sizeof(es_format_t));
  86.     id = malloc( sizeof( sout_stream_id_t ) );
  87.     id->i_d_u_m_m_y = 0;
  88.     es_format_Copy( p_fmt_copy, p_fmt );
  89.     vlc_mutex_lock( &p_sys->p_input->input.p_item->lock );
  90.     TAB_APPEND( p_sys->p_input->input.p_item->i_es,
  91.                 p_sys->p_input->input.p_item->es, p_fmt_copy );
  92.     vlc_mutex_unlock( &p_sys->p_input->input.p_item->lock );
  93.     if( p_sys->i_stream_start <= 0 ) p_sys->i_stream_start = mdate();
  94.     return id;
  95. }
  96. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  97. {
  98.     free( id );
  99.     return VLC_SUCCESS;
  100. }
  101. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  102.                  block_t *p_buffer )
  103. {
  104.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  105.     block_ChainRelease( p_buffer );
  106.     if( p_sys->i_stream_start + 1500000 < mdate() )
  107.     {
  108.         p_sys->p_input->b_eof = VLC_TRUE;
  109.     }
  110.     return VLC_SUCCESS;
  111. }