]> git.sesse.net Git - vlc/blobdiff - modules/access_output/udp.c
* all: sout_ParseCfg -> sout_CfgParse.
[vlc] / modules / access_output / udp.c
index 7bd52b77d5d8acf4ca4a5ae22cc5995ce73f2f64..d998b604d2d7a75217f7aa92edcf25e6b52da208 100644 (file)
@@ -62,7 +62,7 @@ static void Close( vlc_object_t * );
 
 #define CACHING_TEXT N_("Caching value (ms)")
 #define CACHING_LONGTEXT N_( \
-    "Allows you to modify the default caching value for udp streams. This " \
+    "Allows you to modify the default caching value for UDP streams. This " \
     "value should be set in millisecond units." )
 
 #define TTL_TEXT N_("Time To Live")
@@ -72,7 +72,9 @@ static void Close( vlc_object_t * );
 #define GROUP_TEXT N_("Group packets")
 #define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \
                           "or by groups. This allows you to give the number " \
-                          "of packets that will be sent at a time." )
+                          "of packets that will be sent at a time. It " \
+                          "helps reducing the scheduling load on " \
+                          "heavily-loaded systems." )
 #define LATE_TEXT N_("Late delay (ms)" )
 #define LATE_LONGTEXT N_("Late packets are dropped. This allows you to give " \
                        "the time (in milliseconds) a packet is allowed to be" \
@@ -84,7 +86,7 @@ static void Close( vlc_object_t * );
                        "in order to improve streaming)." )
 
 vlc_module_begin();
-    set_description( _("UDP stream ouput") );
+    set_description( _("UDP stream output") );
     add_integer( SOUT_CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
     add_integer( SOUT_CFG_PREFIX "ttl", 0, NULL,TTL_TEXT, TTL_LONGTEXT,
                                  VLC_TRUE );
@@ -172,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 ) ) ) )