summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-02-21 23:41:23 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-02-21 23:41:23 +0000
commit1b72d441d0f277efc866509e515c58994c6a672c (patch)
treeeb41661f5e5a8c8320a598713e483e30c88c9ae5
parent83b6c3bdd1931e0b86bb0bfeb9488cfb2f357426 (diff)
downloadgstreamer-plugins-base-1b72d441d0f277efc866509e515c58994c6a672c.tar.gz
Since dirac 0.5.0 the framerate in dirac is expressed as a rational number. Fix build and up requirement to 0.5.0, an...
Original commit message from CVS: Since dirac 0.5.0 the framerate in dirac is expressed as a rational number. Fix build and up requirement to 0.5.0, and also pass parameters to gst_diracdec_link in the right order. (fixes #167959)
-rw-r--r--ChangeLog10
-rw-r--r--configure.ac4
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e2c1a3c9..9b4023c39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
+
+ * configure.ac:
+ * ext/dirac/gstdiracdec.cc:
+ (gst_diracdec_chain):
+ Since dirac 0.5.0 the framerate in dirac is expressed as a
+ rational number. Fix build and up requirement to 0.5.0, and
+ also pass parameters to gst_diracdec_link in the right order
+ (fixes #167959).
+
2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
* ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
diff --git a/configure.ac b/configure.ac
index 4c1d31e35..4cd6b5b3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -887,9 +887,9 @@ dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
dnl *** dirac ***
translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true)
GST_CHECK_FEATURE(DIRAC, [dirac plug-ins], dirac, [
- PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
+ PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.5.0, HAVE_DIRAC="yes", HAVE_DIRAC="no")
if test x$HAVE_DIRAC = xno ; then
- PKG_CHECK_MODULES(DIRAC, dirac >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
+ PKG_CHECK_MODULES(DIRAC, dirac >= 0.5.0, HAVE_DIRAC="yes", HAVE_DIRAC="no")
fi
AC_SUBST(DIRAC_CFLAGS)
AC_SUBST(DIRAC_LIBS)