summaryrefslogtreecommitdiffstats
path: root/gst/flx/gstflxdec.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-10-17 14:56:12 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-10-17 14:56:12 +0000
commitd472134c41418fcb34a9153761b2018de017d74c (patch)
tree1cfd070ef9dfcbca72339d9dc026932bdae78373 /gst/flx/gstflxdec.c
parent1aa9f76c496fcaccaa38dbaef329c7d6f76161cc (diff)
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.
Diffstat (limited to 'gst/flx/gstflxdec.c')
-rw-r--r--gst/flx/gstflxdec.c3
1 files changed, 2 insertions, 1 deletions
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;