summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2005-03-30 23:07:47 +0000
committerDavid Schleef <ds@schleef.org>2005-03-30 23:07:47 +0000
commit467e04996d787ce833cc370928a147bb759a292c (patch)
tree4be453b071020331f3d24e6bd0618c5a5e5c9756
parent01d7d9e9fe872d41511ff2e886156014673e107f (diff)
downloadgst-plugins-bad-467e04996d787ce833cc370928a147bb759a292c.tar.gz
gst-plugins-bad-467e04996d787ce833cc370928a147bb759a292c.tar.bz2
gst-plugins-bad-467e04996d787ce833cc370928a147bb759a292c.zip
configure.ac: update for liboil-0.3. Remove librfb check.
Original commit message from CVS: * configure.ac: update for liboil-0.3. Remove librfb check. * gst/games/gstvideoimage.c: (oil_splat_u8), (paint_hline_YUY2), (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3), (paint_hline_RGB565), (paint_hline_xRGB1555): * gst/videotestsrc/videotestsrc.c: (paint_hline_YUY2), (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3), (paint_hline_RGB565), (paint_hline_xRGB1555):
-rw-r--r--ChangeLog10
-rw-r--r--configure.ac13
-rw-r--r--gst/games/gstvideoimage.c60
3 files changed, 48 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog
index 9beb4c9b..087966f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-03-30 David Schleef <ds@schleef.org>
+
+ * configure.ac: update for liboil-0.3. Remove librfb check.
+ * gst/games/gstvideoimage.c: (oil_splat_u8), (paint_hline_YUY2),
+ (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
+ (paint_hline_RGB565), (paint_hline_xRGB1555):
+ * gst/videotestsrc/videotestsrc.c: (paint_hline_YUY2),
+ (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
+ (paint_hline_RGB565), (paint_hline_xRGB1555):
+
2005-03-30 Tim-Philipp Müller <tim at centricular dot net>
* ext/musepack/gstmusepackdec.c: (gst_musepack_stream_init):
diff --git a/configure.ac b/configure.ac
index 14e708bd..c88e8eda 100644
--- a/configure.ac
+++ b/configure.ac
@@ -339,12 +339,11 @@ 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.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
-#PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.0, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
+PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.0, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
AC_SUBST(LIBOIL_CFLAGS)
AC_SUBST(LIBOIL_LIBS)
if test "x${HAVE_LIBOIL}" = xyes ; then
- #AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
+ AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
true
fi
@@ -1327,14 +1326,6 @@ GST_CHECK_FEATURE(LIBMNG, [libmng library], mngdec, [
AC_SUBST(LIBMNG_LIBS)
])
-dnl *** librfb ***
-translit(dnm, m, l) AM_CONDITIONAL(USE_LIBRFB, true)
-GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [
- PKG_CHECK_MODULES(LIBRFB, librfb-0.1, HAVE_LIBRFB="yes", HAVE_LIBRFB="no")
- AC_SUBST(LIBRFB_CFLAGS)
- AC_SUBST(LIBRFB_LIBS)
-])
-
dnl *** libvisual ***
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true)
GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [
diff --git a/gst/games/gstvideoimage.c b/gst/games/gstvideoimage.c
index c18843c8..c7905a14 100644
--- a/gst/games/gstvideoimage.c
+++ b/gst/games/gstvideoimage.c
@@ -464,12 +464,12 @@ paint_setup_YVYU (GstVideoImage * p, char *dest)
#ifndef HAVE_LIBOIL
void
-oil_splat_u8 (guint8 * dest, int dstr, guint8 val, int n)
+oil_splat_u8 (guint8 * dest, int dstr, guint8 * val, int n)
{
int i;
for (i = 0; i < n; i++) {
- *dest = val;
+ *dest = *val;
dest += dstr;
}
}
@@ -482,10 +482,13 @@ paint_hline_YUY2 (GstVideoImage * p, int x, int y, int w,
int x1 = x / 2;
int x2 = (x + w) / 2;
int offset = y * p->ystride;
+ guint8 Y = c->Y;
+ guint8 U = c->U;
+ guint8 V = c->V;
- oil_splat_u8 (p->yp + offset + x * 2, 2, c->Y, w);
- oil_splat_u8 (p->up + offset + x1 * 4, 4, c->U, x2 - x1);
- oil_splat_u8 (p->vp + offset + x1 * 4, 4, c->V, x2 - x1);
+ oil_splat_u8 (p->yp + offset + x * 2, 2, &Y, w);
+ oil_splat_u8 (p->up + offset + x1 * 4, 4, &U, x2 - x1);
+ oil_splat_u8 (p->vp + offset + x1 * 4, 4, &V, x2 - x1);
}
static void
@@ -515,11 +518,14 @@ paint_hline_IYU2 (GstVideoImage * p, int x, int y, int w,
const GstVideoColor * c)
{
int offset;
+ guint8 Y = c->Y;
+ guint8 U = c->U;
+ guint8 V = c->V;
offset = y * p->ystride;
- oil_splat_u8 (p->yp + offset + x * 3, 3, c->Y, w);
- oil_splat_u8 (p->up + offset + x * 3, 3, c->U, w);
- oil_splat_u8 (p->vp + offset + x * 3, 3, c->V, w);
+ oil_splat_u8 (p->yp + offset + x * 3, 3, &Y, w);
+ oil_splat_u8 (p->up + offset + x * 3, 3, &U, w);
+ oil_splat_u8 (p->vp + offset + x * 3, 3, &V, w);
}
static void
@@ -769,10 +775,13 @@ paint_hline_str4 (GstVideoImage * p, int x, int y, int w,
const GstVideoColor * c)
{
int offset = y * p->ystride;
+ guint8 R = c->R;
+ guint8 G = c->G;
+ guint8 B = c->B;
- oil_splat_u8 (p->yp + offset + x * 4, 4, c->R, w);
- oil_splat_u8 (p->up + offset + x * 4, 4, c->G, w);
- oil_splat_u8 (p->vp + offset + x * 4, 4, c->B, w);
+ oil_splat_u8 (p->yp + offset + x * 4, 4, &R, w);
+ oil_splat_u8 (p->up + offset + x * 4, 4, &G, w);
+ oil_splat_u8 (p->vp + offset + x * 4, 4, &B, w);
}
static void
@@ -791,10 +800,13 @@ paint_hline_str3 (GstVideoImage * p, int x, int y, int w,
const GstVideoColor * c)
{
int offset = y * p->ystride;
+ guint8 R = c->R;
+ guint8 G = c->G;
+ guint8 B = c->B;
- oil_splat_u8 (p->yp + offset + x * 3, 3, c->R, w);
- oil_splat_u8 (p->up + offset + x * 3, 3, c->G, w);
- oil_splat_u8 (p->vp + offset + x * 3, 3, c->B, w);
+ oil_splat_u8 (p->yp + offset + x * 3, 3, &R, w);
+ oil_splat_u8 (p->up + offset + x * 3, 3, &G, w);
+ oil_splat_u8 (p->vp + offset + x * 3, 3, &B, w);
}
static void
@@ -821,17 +833,17 @@ paint_hline_RGB565 (GstVideoImage * p, int x, int y, int w,
const GstVideoColor * c)
{
int offset = y * p->ystride;
- unsigned int a, b;
+ guint8 a, b;
a = (c->R & 0xf8) | (c->G >> 5);
b = ((c->G << 3) & 0xe0) | (c->B >> 3);
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
- oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, b, w);
- oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, a, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, &b, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, &a, w);
#else
- oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, a, w);
- oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, b, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, &a, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, &b, w);
#endif
}
@@ -859,17 +871,17 @@ paint_hline_xRGB1555 (GstVideoImage * p, int x, int y, int w,
const GstVideoColor * c)
{
int offset = y * p->ystride;
- unsigned int a, b;
+ guint8 a, b;
a = ((c->R >> 1) & 0x7c) | (c->G >> 6);
b = ((c->G << 2) & 0xe0) | (c->B >> 3);
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
- oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, b, w);
- oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, a, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, &b, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, &a, w);
#else
- oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, a, w);
- oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, b, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 0, 2, &a, w);
+ oil_splat_u8 (p->yp + offset + x * 2 + 1, 2, &b, w);
#endif
}