diff options
author | Matthew Hoops | 2011-12-29 12:46:27 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-12-29 12:47:53 -0500 |
commit | 5b1095a4008613ec7f2efd6349670521a6d44dae (patch) | |
tree | 8d4a43d2ef0caecf417ec3794d0aab78e54b6b8e | |
parent | 44a8e4ac1d963ec31e233884fce83ffdb007898c (diff) | |
download | scummvm-rg350-5b1095a4008613ec7f2efd6349670521a6d44dae.tar.gz scummvm-rg350-5b1095a4008613ec7f2efd6349670521a6d44dae.tar.bz2 scummvm-rg350-5b1095a4008613ec7f2efd6349670521a6d44dae.zip |
AUDIO: Only warn about audio edit lists when the count is > 1
MPEG-4 files don't contain any elst atom
-rw-r--r-- | audio/decoders/quicktime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decoders/quicktime.cpp b/audio/decoders/quicktime.cpp index e737bf8e10..621964cb3b 100644 --- a/audio/decoders/quicktime.cpp +++ b/audio/decoders/quicktime.cpp @@ -88,7 +88,7 @@ void QuickTimeAudioDecoder::init() { // Initialize the codec (if necessary) entry->initCodec(); - if (_tracks[_audioTrackIndex]->editCount != 1) + if (_tracks[_audioTrackIndex]->editCount > 1) warning("Multiple edit list entries in an audio track. Things may go awry"); } } |