[vlc-commits] TS demux: mark CSA options as safe

Jean-Baptiste Kempf git at videolan.org
Mon Jul 11 11:59:03 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jul 11 11:58:02 2011 +0200| [a9fa78e51100b59fc8ed5a10c9dc465443b1a07e] | committer: Jean-Baptiste Kempf

TS demux: mark CSA options as safe

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

 modules/demux/ts.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 54be680..375b090 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -151,9 +151,14 @@ vlc_module_begin ()
     add_string( "ts-out", NULL, TSOUT_TEXT, TSOUT_LONGTEXT, true )
     add_integer( "ts-out-mtu", 1400, MTUOUT_TEXT,
                  MTUOUT_LONGTEXT, true )
+
     add_string( "ts-csa-ck", NULL, CSA_TEXT, CSA_LONGTEXT, true )
+        change_safe()
     add_string( "ts-csa2-ck", NULL, CSA2_TEXT, CSA2_LONGTEXT, true )
+        change_safe()
     add_integer( "ts-csa-pkt", 188, CPKT_TEXT, CPKT_LONGTEXT, true )
+        change_safe()
+
     add_bool( "ts-silent", false, SILENT_TEXT, SILENT_LONGTEXT, true )
 
     add_savefile( "ts-dump-file", NULL, TSDUMP_TEXT, TSDUMP_LONGTEXT, false )



More information about the vlc-commits mailing list