Commit 32f808e2 authored by Laurent Aimar's avatar Laurent Aimar

* all: sout_ParseCfg -> sout_CfgParse.

parent 9ea870aa
......@@ -99,7 +99,7 @@ static int Open( vlc_object_t *p_this )
int i_flags;
vlc_value_t val;
sout_ParseCfg( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
sout_CfgParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
if( !( p_access->p_sys = malloc( sizeof( sout_access_out_sys_t ) ) ) )
{
......
......@@ -114,7 +114,7 @@ static int Open( vlc_object_t *p_this )
return( VLC_EGENERIC );
}
sout_ParseCfg( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
sout_CfgParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
/* p_access->psz_name host.name:port/filename */
psz_name = psz_parser = strdup( p_access->psz_name );
......
......@@ -174,7 +174,7 @@ static int Open( vlc_object_t *p_this )
vlc_value_t val;
sout_ParseCfg( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
sout_CfgParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
if( !( p_sys = p_access->p_sys =
malloc( sizeof( sout_access_out_sys_t ) ) ) )
......
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