summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-01 17:22:21 +0200
committerwm4 <wm4@nowhere>2014-06-01 17:22:21 +0200
commita192f32a3a6f6c3c66542f48b512f3892dbed838 (patch)
tree66e4c4e5f0b3be5b138a16147b34eccc5992abc0 /stream/stream.c
parent5a5a3c53f75a093b1a0642174cdbd5a9504e083f (diff)
downloadmpv-a192f32a3a6f6c3c66542f48b512f3892dbed838.tar.bz2
mpv-a192f32a3a6f6c3c66542f48b512f3892dbed838.tar.xz
stream: remove VCD support
If a single person complains, I will readd it. But I don't expect that this will happen. The main reason for removing this is that it's some of the most unclean code remaining, it's unmaintained, and I've never ever heard of someone using it.
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/stream/stream.c b/stream/stream.c
index e2d49564be..773f8662c4 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -57,7 +57,6 @@ char *cdrom_device = NULL;
char *dvd_device = NULL;
int dvd_title = 0;
-extern const stream_info_t stream_info_vcd;
extern const stream_info_t stream_info_cdda;
extern const stream_info_t stream_info_dvb;
extern const stream_info_t stream_info_tv;
@@ -79,9 +78,6 @@ extern const stream_info_t stream_info_rar_entry;
extern const stream_info_t stream_info_edl;
static const stream_info_t *const stream_list[] = {
-#if HAVE_VCD
- &stream_info_vcd,
-#endif
#if HAVE_CDDA
&stream_info_cdda,
#endif