vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Oct 25 18:35:32 2010 +0300| [6c24f08b6b396f2e9737277a2b02c3446474dd16] | committer: Rémi Denis-Courmont
TS mux: fix use of non-existent variables See http://forum.videolan.org/viewtopic.php?f=13&t=83706 > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6c24f08b6b396f2e9737277a2b02c3446474dd16 --- modules/mux/mpeg/ts.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/mux/mpeg/ts.c b/modules/mux/mpeg/ts.c index 4ad7fca..7a6f415 100644 --- a/modules/mux/mpeg/ts.c +++ b/modules/mux/mpeg/ts.c @@ -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 }; _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
