mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ext/amrwb/gstamrwbdec.c: Fix the sign of the data we pass to the decoder so that the decoder compiles with newer refe...
Original commit message from CVS: Patch by: Sebastien Merle <sylane at gmail dot com> * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_chain): Fix the sign of the data we pass to the decoder so that the decoder compiles with newer reference code as well. Fixes #528618.
This commit is contained in:
parent
0dc1c6799b
commit
12d250c612
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-06-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Patch by: Sebastien Merle <sylane at gmail dot com>
|
||||
|
||||
* ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_chain):
|
||||
Fix the sign of the data we pass to the decoder so that the decoder
|
||||
compiles with newer reference code as well. Fixes #528618.
|
||||
|
||||
2008-06-12 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* tests/icles/test-oss4.c:
|
||||
|
|
|
@ -306,7 +306,7 @@ gst_amrwbdec_chain (GstPad * pad, GstBuffer * buffer)
|
|||
gst_buffer_set_caps (out, GST_PAD_CAPS (amrwbdec->srcpad));
|
||||
|
||||
/* decode */
|
||||
D_IF_decode (amrwbdec->handle, (Word8 *) data,
|
||||
D_IF_decode (amrwbdec->handle, (UWord8 *) data,
|
||||
(Word16 *) GST_BUFFER_DATA (out), _good_frame);
|
||||
|
||||
g_free ((gpointer) data);
|
||||
|
|
Loading…
Reference in a new issue