]> git.sesse.net Git - vlc/commitdiff
Don't parse no options
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 24 May 2008 16:58:47 +0000 (19:58 +0300)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 24 May 2008 16:58:47 +0000 (19:58 +0300)
modules/access_output/rtmp.c

index 6e7cfdadd262fb44635d13ef72b72d6c00a4aae6..c6ede297bbd098d6cabfa3d16b95f62549fc2dbd 100644 (file)
@@ -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" );