[vlc-commits] Linux DVB: remove dysfunctional "dvbt" scheme
Rémi Denis-Courmont
git at videolan.org
Mon Mar 12 21:48:34 CET 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 12 22:46:33 2012 +0200| [06a2a739e76f8c05776be0f84faef049a2505cec] | 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.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=06a2a739e76f8c05776be0f84faef049a2505cec
---
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 c7cbf06..630de34 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)
More information about the vlc-commits
mailing list