]> git.sesse.net Git - vlc/commitdiff
TS mux: fix use of non-existent variables
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 25 Oct 2010 15:35:32 +0000 (18:35 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 25 Oct 2010 15:35:32 +0000 (18:35 +0300)
See http://forum.videolan.org/viewtopic.php?f=13&t=83706

modules/mux/mpeg/ts.c

index 4ad7fca310fd4e65b744a9730681e008071a3119..7a6f41554515f382d2b962bd1cdb2bcf5183468d 100644 (file)
@@ -253,10 +253,13 @@ vlc_module_end ()
  * Local data structures
  *****************************************************************************/
 static const char *const ppsz_sout_options[] = {
-    "pid-video", "pid-audio", "pid-spu", "pid-pmt", "tsid", "netid",
+    "pid-video", "pid-audio", "pid-spu", "pid-pmt", "tsid",
+#ifdef HAVE_DVBPSI_SDT
+    "netid", "sdtdesc",
+#endif
     "es-id-pid", "shaping", "pcr", "bmin", "bmax", "use-key-frames",
     "dts-delay", "csa-ck", "csa2-ck", "csa-use", "csa-pkt", "crypt-audio", "crypt-video",
-    "muxpmt", "sdtdesc", "program-pmt", "alignment",
+    "muxpmt", "program-pmt", "alignment",
     NULL
 };