From 2d109a18fb9bb87100c8b788457bc5c8458f9f50 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 29 Jun 2005 16:14:30 +0000 Subject: configure.ac (GST_CFLAGS): GCC strikes back!!! Let the build breakage ensue!!! Original commit message from CVS: 2005-06-29 Andy Wingo * configure.ac (GST_CFLAGS): GCC strikes back!!! Let the build breakage ensue!!! * gst/rtsp/gstrtspsrc.c (gst_rtspsrc_loop, gst_rtspsrc_open): Signedness, unused var fixes. (gst_rtspsrc_close): Unused? * gst/realmedia/rmdemux.c (re_hexdump_bytes): Unused. * gst/law/mulaw-encode.c (gst_mulawenc_chain): Signeness fix. * gst/law/alaw-encode.c (alawenc_getcaps): Remove unneeded declarations. Typo (probably crasher) fix. * gst/law/mulaw-encode.c (mulawdec_getcaps): * gst/law/mulaw-encode.c (mulawenc_getcaps): * gst/law/alaw-decode.c (alawdec_getcaps): Same crasher fix. * gst/goom/gstgoom.c (gst_goom_init): Hook up the event function. * gst/effectv/gstwarp.c (gst_warptv_setup): Signedness fix. * gst/effectv/gstdice.c (gst_dicetv_draw): Um, deferencing uninitialized pointer not good. * gst/videofilter/gstvideoexample.c (plugin_init): * gst/videofilter/Makefile.am (libgstvideoexample_la_LIBADD): Link to libgstvideofilter instead of gst_library_load. * gst/alpha/gstalpha.c (gst_alpha_chroma_key_i420) (gst_alpha_chroma_key_ayuv): Signedness fixen. --- gst/alpha/gstalpha.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/alpha') diff --git a/gst/alpha/gstalpha.c b/gst/alpha/gstalpha.c index a7573a5f..4e403cbc 100644 --- a/gst/alpha/gstalpha.c +++ b/gst/alpha/gstalpha.c @@ -497,7 +497,7 @@ gst_alpha_set_i420 (guint8 * src, guint8 * dest, gint width, gint height, } static void -gst_alpha_chroma_key_ayuv (gchar * src, gchar * dest, gint width, gint height, +gst_alpha_chroma_key_ayuv (guint8 * src, guint8 * dest, gint width, gint height, GstAlpha * alpha) { gint b_alpha; @@ -608,7 +608,7 @@ gst_alpha_chroma_key_ayuv (gchar * src, gchar * dest, gint width, gint height, /* based on http://www.cs.utah.edu/~michael/chroma/ */ static void -gst_alpha_chroma_key_i420 (gchar * src, gchar * dest, gint width, gint height, +gst_alpha_chroma_key_i420 (guint8 * src, guint8 * dest, gint width, gint height, GstAlpha * alpha) { gint b_alpha; -- cgit