diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-11-03 21:27:31 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-11-03 21:27:31 +0000 |
commit | d87878326d58b085a28e60b766d6c0efc584f67e (patch) | |
tree | 1a962ef77a514207fabc9a1f4f9be232e7e35772 /sys/qtwrapper/audiodecoders.c | |
parent | 700060263ed1c9527039fc00a4285632df76a99b (diff) | |
download | gst-plugins-bad-d87878326d58b085a28e60b766d6c0efc584f67e.tar.gz gst-plugins-bad-d87878326d58b085a28e60b766d6c0efc584f67e.tar.bz2 gst-plugins-bad-d87878326d58b085a28e60b766d6c0efc584f67e.zip |
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.
Diffstat (limited to 'sys/qtwrapper/audiodecoders.c')
-rw-r--r-- | sys/qtwrapper/audiodecoders.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/qtwrapper/audiodecoders.c b/sys/qtwrapper/audiodecoders.c index d1616443..1816a02c 100644 --- a/sys/qtwrapper/audiodecoders.c +++ b/sys/qtwrapper/audiodecoders.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 |