diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-21 12:34:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-24 16:33:55 +0100 |
commit | fdd392ed27d88a81bd9d86db6f234ab351ff3f98 (patch) | |
tree | 0f196fb24210a4a659099d196dcd5ea872ce6718 /configure | |
parent | 8cf9253aef19e0ef4523be253a8fa8853179cfb0 (diff) | |
download | ffmpeg-fdd392ed27d88a81bd9d86db6f234ab351ff3f98.tar.gz |
configure: Simplify VDPAU header check
Conflicts:
configure
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4031,10 +4031,9 @@ if ! disabled vaapi; then } || disable vaapi fi -if ! disabled vdpau && enabled vdpau_vdpau_h; then +enabled vdpau && check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" || - { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; } -fi + disable vdpau enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel" enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage" |