mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
vp9dec: Require vpx >= 1.3.0 for building vp9dec and vp9enc
Previous versions did not have a stable bitstream for VP9. https://bugzilla.gnome.org/show_bug.cgi?id=720986
This commit is contained in:
parent
4baf8080f2
commit
c0852624f7
1 changed files with 11 additions and 8 deletions
19
configure.ac
19
configure.ac
|
@ -960,14 +960,17 @@ AG_GST_CHECK_FEATURE(VPX, [VPX decoder], vpx, [
|
|||
HAVE_VP8=yes
|
||||
AC_DEFINE(HAVE_VP8_DECODER, 1, [Defined if the VP8 decoder is available])
|
||||
])
|
||||
AC_CHECK_LIB(vpx, vpx_codec_vp9_cx_algo, [
|
||||
HAVE_VP9=yes
|
||||
AC_DEFINE(HAVE_VP9_ENCODER, 1, [Defined if the VP9 encoder is available])
|
||||
])
|
||||
AC_CHECK_LIB(vpx, vpx_codec_vp9_dx_algo, [
|
||||
HAVE_VP9=yes
|
||||
AC_DEFINE(HAVE_VP9_DECODER, 1, [Defined if the VP9 decoder is available])
|
||||
])
|
||||
|
||||
PKG_CHECK_MODULES(VPX_130, vpx >= 1.3.0, [
|
||||
AC_CHECK_LIB(vpx, vpx_codec_vp9_cx_algo, [
|
||||
HAVE_VP9=yes
|
||||
AC_DEFINE(HAVE_VP9_ENCODER, 1, [Defined if the VP9 encoder is available])
|
||||
])
|
||||
AC_CHECK_LIB(vpx, vpx_codec_vp9_dx_algo, [
|
||||
HAVE_VP9=yes
|
||||
AC_DEFINE(HAVE_VP9_DECODER, 1, [Defined if the VP9 decoder is available])
|
||||
])
|
||||
], [true])
|
||||
LIBS="$OLD_LIBS"
|
||||
CFLAGS="$OLD_CFLAGS"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue