summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-05-11 03:57:04 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-05-11 04:07:31 +0300
commit0ae292fbcb03fadd57501b831603783c5a5a5754 (patch)
tree9c898b0ca3968225ea3b718e5e3a2c8129f4462a /configure
parentb26d8828d403ab495ccf066ec205298af74b9be5 (diff)
downloadmpv-0ae292fbcb03fadd57501b831603783c5a5a5754.tar.bz2
mpv-0ae292fbcb03fadd57501b831603783c5a5a5754.tar.xz
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index eb4bb04859..b2a53f88e5 100755
--- a/configure
+++ b/configure
@@ -4326,7 +4326,7 @@ if test "$_vdpau" = auto ; then
#include <vdpau/vdpau_x11.h>
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