From cc9a17b757dc2c5f2ae9df05747bc0e3ce36648e Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 14 Oct 2004 23:19:58 +0000 Subject: 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 --- gst/videofilter/gstvideobalance.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/videofilter') diff --git a/gst/videofilter/gstvideobalance.c b/gst/videofilter/gstvideobalance.c index 66e45d12..9ce55252 100644 --- a/gst/videofilter/gstvideobalance.c +++ b/gst/videofilter/gstvideobalance.c @@ -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); } } -- cgit