mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
configure.ac: update for swfdec-0.3 and liboil-0.2
Original commit message from CVS: * configure.ac: update for swfdec-0.3 and liboil-0.2 * ext/swfdec/gstswfdec.c: update for swfdec-0.3 * ext/swfdec/gstswfdec.h: same * gst/videofilter/gstvideobalance.c: update for liboil-0.2 * gst/videotestsrc/videotestsrc.c: same
This commit is contained in:
parent
d4ef0029a6
commit
cc9a17b757
3 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-10-14 David Schleef <ds@schleef.org>
|
||||
|
||||
* configure.ac: update for swfdec-0.3 and liboil-0.2
|
||||
* ext/swfdec/gstswfdec.c: update for swfdec-0.3
|
||||
* ext/swfdec/gstswfdec.h: same
|
||||
* gst/videofilter/gstvideobalance.c: update for liboil-0.2
|
||||
* gst/videotestsrc/videotestsrc.c: same
|
||||
|
||||
2004-10-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
|
||||
|
|
|
@ -306,7 +306,7 @@ if test "x$HAVE_GDK_LOADERS" = "xyes"; then
|
|||
fi
|
||||
AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GDK_LOADERS" = "xyes")
|
||||
|
||||
PKG_CHECK_MODULES(LIBOIL, liboil-0.1, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
|
||||
PKG_CHECK_MODULES(LIBOIL, liboil-0.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
|
||||
AC_SUBST(LIBOIL_CFLAGS)
|
||||
AC_SUBST(LIBOIL_LIBS)
|
||||
if test "x${HAVE_LIBOIL}" = xyes ; then
|
||||
|
@ -1490,7 +1490,7 @@ GST_CHECK_FEATURE(SNDFILE, [sndfile plug-in], sfsrc sfsink, [
|
|||
dnl *** swfdec ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
|
||||
GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
|
||||
PKG_CHECK_MODULES(SWFDEC, swfdec >= 0.1.3.1, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
|
||||
PKG_CHECK_MODULES(SWFDEC, swfdec-0.3 >= 0.3.0, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
|
||||
AC_SUBST(SWFDEC_CFLAGS)
|
||||
AC_SUBST(SWFDEC_LIBS)
|
||||
])
|
||||
|
|
|
@ -487,7 +487,7 @@ gst_videobalance_update_tables_planar411 (GstVideobalance * vb)
|
|||
|
||||
#ifndef HAVE_LIBOIL
|
||||
void
|
||||
tablelookup_u8 (guint8 * dest, int dstr, guint8 * src, int sstr,
|
||||
oil_tablelookup_u8 (guint8 * dest, int dstr, guint8 * src, int sstr,
|
||||
guint8 * table, int tstr, int n)
|
||||
{
|
||||
int i;
|
||||
|
@ -524,7 +524,7 @@ gst_videobalance_planar411 (GstVideofilter * videofilter, void *dest, void *src)
|
|||
guint8 *csrc = src;
|
||||
|
||||
for (y = 0; y < height; y++) {
|
||||
tablelookup_u8 (cdest + y * width, 1, csrc + y * width, 1,
|
||||
oil_tablelookup_u8 (cdest + y * width, 1, csrc + y * width, 1,
|
||||
videobalance->tabley, 1, width);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue