[vlc-commits] zvbi: set default opaque to false as default is text mode now

Ilkka Ollakka git at videolan.org
Tue Nov 12 17:00:18 CET 2013


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Tue Nov 12 17:54:49 2013 +0200| [14851ba145f03bc364c6641023620767533137ab] | committer: Ilkka Ollakka

zvbi: set default opaque to false as default is text mode now

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

 modules/codec/zvbi.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/codec/zvbi.c b/modules/codec/zvbi.c
index d74ac1d..e40f8b9 100644
--- a/modules/codec/zvbi.c
+++ b/modules/codec/zvbi.c
@@ -63,8 +63,8 @@ static void Close( vlc_object_t * );
         "Default page is index 100")
 
 #define OPAQUE_TEXT N_("Teletext transparency")
-#define OPAQUE_LONGTEXT N_("Setting vbi-opaque to false " \
-        "makes the boxed text transparent." )
+#define OPAQUE_LONGTEXT N_("Setting vbi-opaque to true " \
+        "makes the text to be boxed and maybe easier to read." )
 
 #define POS_TEXT N_("Teletext alignment")
 #define POS_LONGTEXT N_( \
@@ -91,7 +91,7 @@ vlc_module_begin ()
 
     add_integer( "vbi-page", 100,
                  PAGE_TEXT, PAGE_LONGTEXT, false )
-    add_bool( "vbi-opaque", true,
+    add_bool( "vbi-opaque", false,
                  OPAQUE_TEXT, OPAQUE_LONGTEXT, false )
     add_integer( "vbi-position", 8, POS_TEXT, POS_LONGTEXT, false )
         change_integer_list( pi_pos_values, ppsz_pos_descriptions );



More information about the vlc-commits mailing list