Commit 9f7a6e01 authored by Christophe Massiot's avatar Christophe Massiot

* modules/stream_out/autodel.c: Removed unused call to sout_CfgParse().

parent 1cb0a680
...@@ -50,10 +50,6 @@ vlc_module_end(); ...@@ -50,10 +50,6 @@ vlc_module_end();
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
static const char *ppsz_sout_options[] = {
NULL
};
static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * ); static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
static int Del ( sout_stream_t *, sout_stream_id_t * ); static int Del ( sout_stream_t *, sout_stream_id_t * );
static int Send ( sout_stream_t *, sout_stream_id_t *, block_t * ); static int Send ( sout_stream_t *, sout_stream_id_t *, block_t * );
...@@ -93,9 +89,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -93,9 +89,6 @@ static int Open( vlc_object_t *p_this )
p_sys->pp_es = NULL; p_sys->pp_es = NULL;
p_sys->i_es_num = 0; p_sys->i_es_num = 0;
sout_CfgParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
p_stream->p_cfg );
p_stream->pf_add = Add; p_stream->pf_add = Add;
p_stream->pf_del = Del; p_stream->pf_del = Del;
p_stream->pf_send = Send; p_stream->pf_send = Send;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment