Commit db47cf33 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Don't parse no options

parent f160db45
......@@ -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" );
......
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