[vlc-commits] Mpeg-TS demuxer: fix typo and use one less string

Jean-Baptiste Kempf git at videolan.org
Sun Jun 19 20:20:45 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jun 17 17:00:55 2011 +0200| [929ab4ecc84641637035d6e1cf5a2916f20d86a7] | committer: Jean-Baptiste Kempf

Mpeg-TS demuxer: fix typo and use one less string

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

 modules/demux/ts.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 7058c7a..54be680 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -102,8 +102,9 @@ static void Close ( vlc_object_t * );
 #define MTUOUT_TEXT N_("MTU for out mode")
 #define MTUOUT_LONGTEXT N_("MTU for out mode.")
 
-#define CSA_TEXT N_("CSA ck")
-#define CSA_LONGTEXT N_("Control word for the CSA encryption algorithm")
+#define CSA_TEXT N_("CSA Key")
+#define CSA_LONGTEXT N_("CSA encryption key. This must be a " \
+  "16 char string (8 hexadecimal bytes).")
 
 #define CSA2_TEXT N_("Second CSA Key")
 #define CSA2_LONGTEXT N_("The even CSA encryption key. This must be a " \
@@ -151,7 +152,7 @@ vlc_module_begin ()
     add_integer( "ts-out-mtu", 1400, MTUOUT_TEXT,
                  MTUOUT_LONGTEXT, true )
     add_string( "ts-csa-ck", NULL, CSA_TEXT, CSA_LONGTEXT, true )
-    add_string( "ts-csa2-ck", NULL, CSA_TEXT, CSA_LONGTEXT, true )
+    add_string( "ts-csa2-ck", NULL, CSA2_TEXT, CSA2_LONGTEXT, true )
     add_integer( "ts-csa-pkt", 188, CPKT_TEXT, CPKT_LONGTEXT, true )
     add_bool( "ts-silent", false, SILENT_TEXT, SILENT_LONGTEXT, true )
 



More information about the vlc-commits mailing list