]> git.sesse.net Git - vlc/commitdiff
* modules/stream_out/autodel.c: Removed unused call to sout_CfgParse().
authorChristophe Massiot <massiot@videolan.org>
Thu, 9 Nov 2006 15:55:36 +0000 (15:55 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 9 Nov 2006 15:55:36 +0000 (15:55 +0000)
modules/stream_out/autodel.c

index 5e926ef1afd7acdc680fc1a7d87ce74d004ffba7..4a3bc028e80959c4d19326fe3c3d7ead4ac357cf 100644 (file)
@@ -50,10 +50,6 @@ vlc_module_end();
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static const char *ppsz_sout_options[] = {
-    NULL
-};
-
 static sout_stream_id_t *Add   ( sout_stream_t *, es_format_t * );
 static int               Del   ( sout_stream_t *, sout_stream_id_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 )
     p_sys->pp_es = NULL;
     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_del    = Del;
     p_stream->pf_send   = Send;