aboutsummaryrefslogtreecommitdiff
path: root/audio/decoders/quicktime.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-09-09 13:47:40 -0400
committerMatthew Hoops2012-09-09 13:47:40 -0400
commit4a458236f625d28706cfe4560690770a395ee6e3 (patch)
tree556e0ba7d6fbd3b6cc35138f6bf2b873e464d604 /audio/decoders/quicktime.cpp
parent72a1140d572ce46a820cddb6ac85b748cb7a066d (diff)
downloadscummvm-rg350-4a458236f625d28706cfe4560690770a395ee6e3.tar.gz
scummvm-rg350-4a458236f625d28706cfe4560690770a395ee6e3.tar.bz2
scummvm-rg350-4a458236f625d28706cfe4560690770a395ee6e3.zip
COMMON: Make QuickTimeParser::readSampleDesc take the desc size
Diffstat (limited to 'audio/decoders/quicktime.cpp')
-rw-r--r--audio/decoders/quicktime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decoders/quicktime.cpp b/audio/decoders/quicktime.cpp
index 5276cfc530..3ec90078db 100644
--- a/audio/decoders/quicktime.cpp
+++ b/audio/decoders/quicktime.cpp
@@ -134,7 +134,7 @@ void QuickTimeAudioDecoder::init() {
_audioTracks.push_back(new QuickTimeAudioTrack(this, _tracks[i]));
}
-Common::QuickTimeParser::SampleDesc *QuickTimeAudioDecoder::readSampleDesc(Track *track, uint32 format) {
+Common::QuickTimeParser::SampleDesc *QuickTimeAudioDecoder::readSampleDesc(Track *track, uint32 format, uint32 descSize) {
if (track->codecType == CODEC_TYPE_AUDIO) {
debug(0, "Audio Codec FourCC: \'%s\'", tag2str(format));