From d87878326d58b085a28e60b766d6c0efc584f67e Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Mon, 3 Nov 2008 21:27:31 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ sys/qtwrapper/audiodecoders.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b7f6c8c55a..8b14257fca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-03 Jan Schmidt + + * sys/qtwrapper/audiodecoders.c: + (open_decoder): + Fix mismatched signedness compiler warning. + 2008-11-03 Sebastian Dröge * gst/speexresample/gstspeexresample.c: diff --git a/sys/qtwrapper/audiodecoders.c b/sys/qtwrapper/audiodecoders.c index d161644354..1816a02cb2 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