From 0ae292fbcb03fadd57501b831603783c5a5a5754 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Tue, 11 May 2010 03:57:04 +0300 Subject: vdpau: drop support for old versions Since I dropped the hack to support older libvdpau versions (without MPEG4 / hqscaling features) from the FFmpeg version used in the build repo it's better to disable those libvdpau versions in MPlayer too. Change the configure check to require a newer libvdpau version, and drop compatibility code in vo_vdpau.c. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index eb4bb04859..b2a53f88e5 100755 --- a/configure +++ b/configure @@ -4326,7 +4326,7 @@ if test "$_vdpau" = auto ; then #include int main(void) { (void) vdp_device_create_x11(0, 0, 0, 0); - return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;} + return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; } EOF cc_check -lvdpau && _vdpau=yes fi -- cgit v1.2.3