From d472134c41418fcb34a9153761b2018de017d74c Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Mon, 17 Oct 2005 14:56:12 +0000 Subject: configure.ac: Enable flx plugin. Original commit message from CVS: * configure.ac: Enable flx plugin. * gst/flx/gstflxdec.c: (flx_decode_chunks): Fix gcc4 signedness issue. --- gst/flx/gstflxdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gst/flx') diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c index f4d9bf0c..36d9903f 100644 --- a/gst/flx/gstflxdec.c +++ b/gst/flx/gstflxdec.c @@ -205,7 +205,8 @@ gst_flxdec_sink_event_handler (GstPad * pad, GstEvent * event) } static void -flx_decode_chunks (GstFlxDec * flxdec, gulong count, gchar * data, gchar * dest) +flx_decode_chunks (GstFlxDec * flxdec, gulong count, guchar * data, + guchar * dest) { FlxFrameChunk *hdr; -- cgit