mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-07 20:31:20 +00:00
vpx: Mark VP9 support as non-experimental
There was a libvpx release with VP9 support now and the bitstream is frozen too.
This commit is contained in:
parent
8bab119af9
commit
c62229ae2d
1 changed files with 8 additions and 10 deletions
18
configure.ac
18
configure.ac
|
@ -960,16 +960,14 @@ AG_GST_CHECK_FEATURE(VPX, [VPX decoder], vpx, [
|
|||
HAVE_VP8=yes
|
||||
AC_DEFINE(HAVE_VP8_DECODER, 1, [Defined if the VP8 decoder is available])
|
||||
])
|
||||
if test "x$BUILD_EXPERIMENTAL" = "xyes"; then
|
||||
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])
|
||||
])
|
||||
fi
|
||||
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])
|
||||
])
|
||||
LIBS="$OLD_LIBS"
|
||||
CFLAGS="$OLD_CFLAGS"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue