From 6a26b4a66504f701baf35e58467e55aea28c0ad5 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 18 Aug 2012 11:17:35 +0200 Subject: libmpcodecs: remove redundant audio and video decoders Probably all of these are supported by libavcodec. Missing things can be added back. Also remove qtpalette.h. It was used by demux_mov.c, and should have been deleted with commit 1fde09db6f4ce. --- libmpcodecs/vd.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'libmpcodecs/vd.c') diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c index 1d35566cc3..48e2b0627e 100644 --- a/libmpcodecs/vd.c +++ b/libmpcodecs/vd.c @@ -37,34 +37,14 @@ #include "vf.h" #include "libvo/video_out.h" -extern const vd_functions_t mpcodecs_vd_null; extern const vd_functions_t mpcodecs_vd_ffmpeg; -extern const vd_functions_t mpcodecs_vd_raw; -extern const vd_functions_t mpcodecs_vd_hmblck; -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_lzo; -extern const vd_functions_t mpcodecs_vd_qtvideo; /* 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. */ const vd_functions_t * const mpcodecs_vd_drivers[] = { - &mpcodecs_vd_null, &mpcodecs_vd_ffmpeg, - &mpcodecs_vd_lzo, - &mpcodecs_vd_raw, - &mpcodecs_vd_hmblck, -#ifdef CONFIG_PNG - &mpcodecs_vd_mpng, -#endif -#ifdef CONFIG_JPEG - &mpcodecs_vd_ijpg, -#endif - &mpcodecs_vd_mtga, /* 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. */ -- cgit v1.2.3