summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-18 10:23:15 +0200
committerwm4 <wm4@nowhere>2012-08-20 15:36:03 +0200
commit6f7ba66817b5cd3761b802930dc7ba62464e3c6a (patch)
treee923b7d1cbd9888f297e859eb62ef9f160edfb64 /libmpcodecs/vd.c
parente181547db10c48a92b6c4d891c184b416ebe2add (diff)
downloadmpv-6f7ba66817b5cd3761b802930dc7ba62464e3c6a.tar.bz2
mpv-6f7ba66817b5cd3761b802930dc7ba62464e3c6a.tar.xz
Remove support for libdv
This removes the libdv demuxer and audio/video decoders. FFmpeg has support for it, and it's even preferred over the internal decoders.
Diffstat (limited to 'libmpcodecs/vd.c')
-rw-r--r--libmpcodecs/vd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index 9594cfba24..1d35566cc3 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -45,7 +45,6 @@ extern const vd_functions_t mpcodecs_vd_mpng;
extern const vd_functions_t mpcodecs_vd_ijpg;
extern const vd_functions_t mpcodecs_vd_mtga;
extern const vd_functions_t mpcodecs_vd_realvid;
-extern const vd_functions_t mpcodecs_vd_libdv;
extern const vd_functions_t mpcodecs_vd_lzo;
extern const vd_functions_t mpcodecs_vd_qtvideo;
@@ -66,9 +65,6 @@ const vd_functions_t * const mpcodecs_vd_drivers[] = {
&mpcodecs_vd_ijpg,
#endif
&mpcodecs_vd_mtga,
-#ifdef CONFIG_LIBDV095
- &mpcodecs_vd_libdv,
-#endif
/* Please do not add any new decoders here. If you want to implement a new
* decoder, add it to libavcodec, except for wrappers around external
* libraries and decoders requiring binary support. */