aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-12-15 16:53:34 -0800
committerMichael Niedermayer <michaelni@gmx.at>2013-12-16 03:17:39 +0100
commit7a994d777a0a538d0998fbb4125bf14c39017c43 (patch)
tree0079ed772f02fb9cb8ebd864a3ee8e286463280c
parent1c67ad9d93031839e6e5032190cd95f6dfda8f59 (diff)
downloadffmpeg-7a994d777a0a538d0998fbb4125bf14c39017c43.tar.gz
configure: (vp9) ensure bitstream compatibility
avoids picking up a library that could produce invalid bitstreams and fixes build issues with the same. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e36f8527cd..f4f3bb62c4 100755
--- a/configure
+++ b/configure
@@ -4427,7 +4427,7 @@ enabled libvpx && {
enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
die "ERROR: libvpx encoder version must be >=0.9.7"; }
enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
- enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx" -lvpx || disable libvpx_vp9_encoder; } }
+ enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_SVC" -lvpx || disable libvpx_vp9_encoder; } }
enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
{ check_cpp_condition x264.h "X264_BUILD >= 118" ||