[vlc-commits] demux: adaptive: fix module strings

Francois Cartegnie git at videolan.org
Wed Oct 12 11:38:00 CEST 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Oct 12 11:35:31 2016 +0200| [e9c6a56d082f5d992c25277c530c3e11c687db38] | committer: Francois Cartegnie

demux: adaptive: fix module strings

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e9c6a56d082f5d992c25277c530c3e11c687db38
---

 modules/demux/adaptive/adaptive.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/adaptive/adaptive.cpp b/modules/demux/adaptive/adaptive.cpp
index ca3a994..1430ee1 100644
--- a/modules/demux/adaptive/adaptive.cpp
+++ b/modules/demux/adaptive/adaptive.cpp
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * adaptive.cpp: Adaptative streaming module
+ * adaptive.cpp: Adaptive streaming module
  *****************************************************************************
  * Copyright © 2015 - VideoLAN and VLC Authors
  *
@@ -70,7 +70,7 @@ static void Close   (vlc_object_t *);
 #define ADAPT_BW_TEXT N_("Fixed Bandwidth in KiB/s")
 #define ADAPT_BW_LONGTEXT N_("Preferred bandwidth for non adaptive streams")
 
-#define ADAPT_LOGIC_TEXT N_("Adaptation Logic")
+#define ADAPT_LOGIC_TEXT N_("Adaptive Logic")
 
 #define ADAPT_ACCESS_TEXT N_("Use regular HTTP modules")
 #define ADAPT_ACCESS_LONGTEXT N_("Connect using http access instead of custom http code")
@@ -99,7 +99,7 @@ static const char *const ppsz_logics[] = { N_("Default"),
                                            N_("Highest Bandwidth/Quality")};
 
 vlc_module_begin ()
-        set_shortname( N_("Adaptative"))
+        set_shortname( N_("Adaptive"))
         set_description( N_("Unified adaptive streaming for DASH/HLS") )
         set_capability( "demux", 12 )
         set_category( CAT_INPUT )



More information about the vlc-commits mailing list