mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
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)
This commit is contained in:
parent
83b6c3bdd1
commit
1b72d441d0
2 changed files with 12 additions and 2 deletions
10
ChangeLog
10
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>
|
2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
|
||||||
|
|
||||||
* ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
|
* ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
|
||||||
|
|
|
@ -887,9 +887,9 @@ dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
|
||||||
dnl *** dirac ***
|
dnl *** dirac ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true)
|
||||||
GST_CHECK_FEATURE(DIRAC, [dirac plug-ins], dirac, [
|
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
|
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
|
fi
|
||||||
AC_SUBST(DIRAC_CFLAGS)
|
AC_SUBST(DIRAC_CFLAGS)
|
||||||
AC_SUBST(DIRAC_LIBS)
|
AC_SUBST(DIRAC_LIBS)
|
||||||
|
|
Loading…
Reference in a new issue