summaryrefslogtreecommitdiffstats
path: root/stream/tv.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-02-06 21:55:35 +0100
committerwm4 <wm4@nowhere>2013-02-06 23:03:39 +0100
commit37c5c114af8b4747dfa0664bf967958baa9a1c91 (patch)
tree407250d8226d5ec1a18f4fd93b6b5f47ce56f73f /stream/tv.c
parentc5340512dd5a75079779c896505a038caf3ce69a (diff)
downloadmpv-37c5c114af8b4747dfa0664bf967958baa9a1c91.tar.bz2
mpv-37c5c114af8b4747dfa0664bf967958baa9a1c91.tar.xz
Remove BSD legacy TV/radio support (BT848 stuff)
FreeBSD actually supports V4L2, and V4L2 supports this chip. Also, this chip is from 1997. Farewell.
Diffstat (limited to 'stream/tv.c')
-rw-r--r--stream/tv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/stream/tv.c b/stream/tv.c
index a9bc535cee..6921fd0f6b 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -57,16 +57,12 @@ char *tv_channel_last_real;
/* enumerating drivers (like in stream.c) */
extern const tvi_info_t tvi_info_dummy;
extern const tvi_info_t tvi_info_v4l2;
-extern const tvi_info_t tvi_info_bsdbt848;
/** List of drivers in autodetection order */
static const tvi_info_t* tvi_driver_list[]={
#ifdef CONFIG_TV_V4L2
&tvi_info_v4l2,
#endif
-#ifdef CONFIG_TV_BSDBT848
- &tvi_info_bsdbt848,
-#endif
&tvi_info_dummy,
NULL
};