summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2012-09-19 10:41:47 +0200
committerDamien Lespiau <damien.lespiau@intel.com>2012-09-25 23:24:32 +0100
commitc3cce94f97e9a0b1bfe05b1f05304a4fd9700040 (patch)
treea7c5af2b9b52bc3561b93305d57e30d59df9e62b /configure.ac
parentde86ba2be78b936e527e32d5e4b7260605e9fbb6 (diff)
downloadclutter-gst-c3cce94f97e9a0b1bfe05b1f05304a4fd9700040.tar.gz
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
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index fe09d08..3f469cc 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 ========================================================================