vpx: Mark VP9 support as non-experimental
authorSebastian Dröge <sebastian@centricular.com>
Tue, 17 Dec 2013 17:28:25 +0000 (18:28 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 17 Dec 2013 17:28:25 +0000 (18:28 +0100)
There was a libvpx release with VP9 support now and the bitstream
is frozen too.

configure.ac

index 01b850f..58bb7ce 100644 (file)
@@ -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