From: Sebastien Merle Date: Thu, 12 Jun 2008 13:51:51 +0000 (+0000) Subject: ext/amrwb/gstamrwbdec.c: Fix the sign of the data we pass to the decoder so that... X-Git-Tag: 1.19.3~507^2~20203 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12d250c61260d82cba6b1ee6b91a5bf980679be3;p=platform%2Fupstream%2Fgstreamer.git 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 * 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. --- diff --git a/ChangeLog b/ChangeLog index b59a106..aeb12b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-06-12 Wim Taymans + + Patch by: Sebastien Merle + + * 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 * tests/icles/test-oss4.c: diff --git a/ext/amrwb/gstamrwbdec.c b/ext/amrwb/gstamrwbdec.c index 9324fad..525b49c 100644 --- a/ext/amrwb/gstamrwbdec.c +++ b/ext/amrwb/gstamrwbdec.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);