mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
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.
This commit is contained in:
parent
1aa9f76c49
commit
d472134c41
3 changed files with 11 additions and 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.
|
||||
|
|
|
@ -272,6 +272,7 @@ GST_PLUGINS_ALL="\
|
|||
avi \
|
||||
debug \
|
||||
effectv \
|
||||
flx \
|
||||
goom \
|
||||
law \
|
||||
level \
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue