mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
sys/qtwrapper/audiodecoders.c: Fix mismatched signedness compiler warning.
Original commit message from CVS: * sys/qtwrapper/audiodecoders.c: (open_decoder): Fix mismatched signedness compiler warning.
This commit is contained in:
parent
700060263e
commit
d87878326d
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-11-03 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* sys/qtwrapper/audiodecoders.c:
|
||||
(open_decoder):
|
||||
Fix mismatched signedness compiler warning.
|
||||
|
||||
2008-11-03 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* gst/speexresample/gstspeexresample.c:
|
||||
|
|
|
@ -431,7 +431,7 @@ open_decoder (QTWrapperAudioDecoder * qtwrapper, GstCaps * caps,
|
|||
/* QuickTime/iTunes creates AAC files with the wrong channel count in the header,
|
||||
so parse that out of the codec data if we can.
|
||||
*/
|
||||
aac_parse_codec_data (codec_data, &channels);
|
||||
aac_parse_codec_data (codec_data, (guint *) & channels);
|
||||
}
|
||||
|
||||
/* If the quicktime demuxer gives us a full esds atom, use that instead of
|
||||
|
|
Loading…
Reference in a new issue