vlc/vlc-2.0 | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Mar 12 22:46:33 2012 +0200| [e1f6de115c0413244983cc017b9ba9f7fa38b842] | committer: Rémi Denis-Courmont
Linux DVB: remove dysfunctional "dvbt" scheme It is redumdant with the preexisting dvb-t scheme and does not even always select the correct delivery system. Also the failure mode is much more confusing than a plain error input failure message, and it is inconsistent with other delivery system names. (cherry picked from commit 06a2a739e76f8c05776be0f84faef049a2505cec) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=e1f6de115c0413244983cc017b9ba9f7fa38b842 --- modules/access/dtv/access.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/access/dtv/access.c b/modules/access/dtv/access.c index d451fa4..2f46f88 100644 --- a/modules/access/dtv/access.c +++ b/modules/access/dtv/access.c @@ -232,8 +232,11 @@ vlc_module_begin () add_shortcut ("dtv", "tv", "dvb", /* "radio", "dab",*/ "cable", "dvb-c", "cqam", "isdb-c", "satellite", "dvb-s", "dvb-s2", "isdb-s", - "terrestrial", "dvb-t", "dvb-t2", "isdb-t", "atsc", - "dvbt") + "terrestrial", "dvb-t", "dvb-t2", "isdb-t", "atsc" +#ifdef WIN32 + ,"dvbt" +#endif + ) #ifdef __linux__ add_integer ("dvb-adapter", 0, ADAPTER_TEXT, ADAPTER_LONGTEXT, false) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
