]> git.sesse.net Git - vlc/commitdiff
* all: sout_ParseCfg -> sout_CfgParse.
authorLaurent Aimar <fenrir@videolan.org>
Sat, 10 Jul 2004 17:22:35 +0000 (17:22 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 10 Jul 2004 17:22:35 +0000 (17:22 +0000)
modules/access_output/file.c
modules/access_output/http.c
modules/access_output/udp.c

index 117e40e3343770312c2f83a8eddfbc47ebc62f64..f828a1b8b13595a9be1da083b16ef9d24755b836 100644 (file)
@@ -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 ) ) ) )
     {
index 9287bccc7c140c32b9168b53a09b39fd457a8790..6eac341a6164c28109c97c6c807e2f44c1d17c43 100644 (file)
@@ -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 );
index 883db293168456ab0ecadb35cb6554ef9d437978..d998b604d2d7a75217f7aa92edcf25e6b52da208 100644 (file)
@@ -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 ) ) ) )