X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fstream_out%2Fdisplay.c;h=b4c9e9f6acfa75ff49e4ceca6e32598a3c6f76e6;hb=fa45d63fdedc4cce1de4257b35de5adfb494d544;hp=e7990f3a5f8935ad3b14d47ba2ee83373ce86a50;hpb=048769f969a82d45e5dd3ca2dca210f39e126e3f;p=vlc diff --git a/modules/stream_out/display.c b/modules/stream_out/display.c index e7990f3a5f..b4c9e9f6ac 100644 --- a/modules/stream_out/display.c +++ b/modules/stream_out/display.c @@ -1,7 +1,7 @@ /***************************************************************************** * display.c: display stream output module ***************************************************************************** - * Copyright (C) 2001, 2002 VideoLAN + * Copyright (C) 2001, 2002 the VideoLAN team * $Id$ * * Authors: Laurent Aimar @@ -18,18 +18,17 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include -#include #include -#include -#include +#include +#include +#include /***************************************************************************** * Module descriptor @@ -47,9 +46,12 @@ static void Close( vlc_object_t * ); #define SOUT_CFG_PREFIX "sout-display-" vlc_module_begin(); + set_shortname( _("Display")); set_description( _("Display stream output") ); set_capability( "sout stream", 50 ); add_shortcut( "display" ); + set_category( CAT_SOUT ); + set_subcategory( SUBCAT_SOUT_STREAM ); add_bool( SOUT_CFG_PREFIX "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_TRUE ); add_bool( SOUT_CFG_PREFIX "video", 1, NULL, VIDEO_TEXT, @@ -74,6 +76,7 @@ static int Send( sout_stream_t *, sout_stream_id_t *, block_t* ); struct sout_stream_sys_t { input_thread_t *p_input; + unsigned i_es; vlc_bool_t b_audio; vlc_bool_t b_video; @@ -90,18 +93,12 @@ static int Open( vlc_object_t *p_this ) sout_stream_sys_t *p_sys; vlc_value_t val; - sout_ParseCfg( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, + config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, p_stream->p_cfg ); p_sys = malloc( sizeof( sout_stream_sys_t ) ); - p_sys->p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT, - FIND_ANYWHERE ); - if( !p_sys->p_input ) - { - msg_Err( p_stream, "cannot find p_input" ); - free( p_sys ); - return VLC_EGENERIC; - } + p_sys->p_input = NULL; + p_sys->i_es = 0; var_Get( p_stream, SOUT_CFG_PREFIX "audio", &val ); p_sys->b_audio = val.b_bool; @@ -135,14 +132,12 @@ static void Close( vlc_object_t * p_this ) /* update p_sout->i_out_pace_nocontrol */ p_stream->p_sout->i_out_pace_nocontrol--; - vlc_object_release( p_sys->p_input ); - free( p_sys ); } struct sout_stream_id_t { - es_descriptor_t *p_es; + decoder_t *p_dec; }; static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt ) @@ -157,36 +152,43 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt ) } id = malloc( sizeof( sout_stream_id_t ) ); + if( id == NULL ) + return NULL; - id->p_es = malloc( sizeof( es_descriptor_t ) ); - memset( id->p_es, 0, sizeof( es_descriptor_t ) ); - id->p_es->i_cat = p_fmt->i_cat; - id->p_es->i_fourcc = p_fmt->i_codec; - id->p_es->b_force_decoder = VLC_TRUE; - es_format_Copy( &id->p_es->fmt, p_fmt ); + if( p_sys->i_es == 0 ) + { + p_sys->p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT, + FIND_PARENT ); + if( p_sys->p_input == NULL ) + { + msg_Err( p_stream, "cannot find input" ); + free( id ); + return NULL; + } + } - id->p_es->p_dec = input_RunDecoder( p_sys->p_input, id->p_es ); - if( id->p_es->p_dec == NULL ) + id->p_dec = input_DecoderNew( p_sys->p_input, p_fmt, VLC_TRUE ); + if( id->p_dec == NULL ) { msg_Err( p_stream, "cannot create decoder for fcc=`%4.4s'", (char*)&p_fmt->i_codec ); - free( id->p_es ); free( id ); + if( p_sys->i_es == 0 ) + vlc_object_release( p_sys->p_input ); return NULL; } + p_sys->i_es++; return id; } static int Del( sout_stream_t *p_stream, sout_stream_id_t *id ) { - sout_stream_sys_t *p_sys = p_stream->p_sys; + input_DecoderDelete( id->p_dec ); + if( --p_stream->p_sys->i_es == 0) + vlc_object_release( p_stream->p_sys->p_input ); - input_EndDecoder( p_sys->p_input, id->p_es ); - - free( id->p_es ); free( id ); - return VLC_SUCCESS; } @@ -201,7 +203,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id, p_buffer->p_next = NULL; - if( id->p_es->p_dec && p_buffer->i_buffer > 0 ) + if( id->p_dec && p_buffer->i_buffer > 0 ) { if( p_buffer->i_dts <= 0 ) p_buffer->i_dts= 0; @@ -213,7 +215,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id, else p_buffer->i_pts += p_sys->i_delay; - input_DecodeBlock( id->p_es->p_dec, p_buffer ); + input_DecoderDecode( id->p_dec, p_buffer ); } p_buffer = p_next;