summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2013-12-17 18:28:25 +0100
committerSebastian Dröge <sebastian@centricular.com>2013-12-17 18:32:08 +0100
commit88cbfb6726018e91355b7d305b1bc1ea8d0406f3 (patch)
tree4d3badc7066115a09d28e7ded42f7efe805f9b5f
parent77c1b0aac19e9db6253f16b8a0343e0e1784688e (diff)
vpx: Mark VP9 support as non-experimental
There was a libvpx release with VP9 support now and the bitstream is frozen too.
-rw-r--r--configure.ac18
1 files changed, 8 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 0c7ad96d42..7aad309424 100644
--- a/configure.ac
+++ b/configure.ac
@@ -961,16 +961,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