diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-10-17 14:56:12 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-10-17 14:56:12 +0000 |
commit | d472134c41418fcb34a9153761b2018de017d74c (patch) | |
tree | 1cfd070ef9dfcbca72339d9dc026932bdae78373 | |
parent | 1aa9f76c496fcaccaa38dbaef329c7d6f76161cc (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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | gst/flx/gstflxdec.c | 3 |
3 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2005-10-17 Tim-Philipp Müller <tim at centricular dot net> + + * configure.ac: + Enable flx plugin. + + * gst/flx/gstflxdec.c: (flx_decode_chunks): + Fix gcc4 signedness issue. + 2005-10-17 Julien MOUTTE <julien@moutte.net> * configure.ac: Adding videomixer. diff --git a/configure.ac b/configure.ac index 5a6092bc..3a2916b9 100644 --- a/configure.ac +++ b/configure.ac @@ -272,6 +272,7 @@ GST_PLUGINS_ALL="\ avi \ debug \ effectv \ + flx \ goom \ law \ level \ 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; |