summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2012-09-19 10:41:47 +0200
committerEdward Hervey <edward.hervey@collabora.co.uk>2012-09-19 10:41:47 +0200
commitcd560349154970558ad5325d026e9bdb9feb4845 (patch)
tree5b5c36793cf91a27bffb47a9f58c60423fd6e64a
parentdca592ad5a37ab9206986289450d5d725b53fd89 (diff)
configure: Disable HW decoder support until it is stabilized
The HW decoder/sink interaction and API in GStreamer 1.0 isn't yet clear, and will not behave the same way it did in 0.10. In order not to cause issues with failing auto-plugging, temporarily disable support
-rw-r--r--configure.ac17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index ae2b14d..28f9ca8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -212,14 +212,15 @@ AS_IF([test "x$have_cogl_1_8" != xyes],
dnl ========================================================================
dnl Experimental support for hardware accelerated decoders.
-
-PKG_CHECK_MODULES(HW,
- [gstreamer-basevideo-$GST_MAJORMINOR >= $GST_PLUGINS_BAD_REQ_VERSION],
- [
- have_hw_decoder_support=yes
- AC_DEFINE([HAVE_HW_DECODER_SUPPORT], [1],
- ["Defined if building Clutter with HW decoder support"])
- ],[ have_hw_decoder_support=no ])
+dnl Temporarily disabling for GStreamer 1.0 since it's causing too many issues
+dnl and the API for hw support isn't yet put in stone
+# PKG_CHECK_MODULES(HW,
+# [gstreamer-basevideo-$GST_MAJORMINOR >= $GST_PLUGINS_BAD_REQ_VERSION],
+# [
+# have_hw_decoder_support=yes
+# AC_DEFINE([HAVE_HW_DECODER_SUPPORT], [1],
+# ["Defined if building Clutter with HW decoder support"])
+# ],[ have_hw_decoder_support=no ])
dnl ========================================================================