summaryrefslogtreecommitdiffstats
path: root/gst/videofilter
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-10-14 23:19:58 +0000
committerDavid Schleef <ds@schleef.org>2004-10-14 23:19:58 +0000
commitcc9a17b757dc2c5f2ae9df05747bc0e3ce36648e (patch)
tree99e9828a199fd2725ff6b7607e750623073d4c31 /gst/videofilter
parentd4ef0029a6fba005565e239598b1fc46dc973048 (diff)
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
Diffstat (limited to 'gst/videofilter')
-rw-r--r--gst/videofilter/gstvideobalance.c4
1 files changed, 2 insertions, 2 deletions
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);
}
}