From db47cf33d70da786fd365b0321700b2236546926 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 24 May 2008 19:58:47 +0300 Subject: [PATCH] Don't parse no options --- modules/access_output/rtmp.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/access_output/rtmp.c b/modules/access_output/rtmp.c index 6e7cfdadd2..c6ede297bb 100644 --- a/modules/access_output/rtmp.c +++ b/modules/access_output/rtmp.c @@ -63,10 +63,6 @@ vlc_module_end(); /***************************************************************************** * Local prototypes *****************************************************************************/ -static const char *ppsz_sout_options[] = { - NULL -}; - static ssize_t Write( sout_access_out_t *, block_t * ); static int Seek ( sout_access_out_t *, off_t ); static void ThreadControl( vlc_object_t * ); @@ -90,8 +86,6 @@ static int Open( vlc_object_t *p_this ) int length_path, length_media_name; int i; - config_ChainParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg ); - if( !( p_sys = calloc ( 1, sizeof( sout_access_out_sys_t ) ) ) ) { msg_Err( p_access, "not enough memory" ); -- 2.39.5