AUDIO: Only warn about audio edit lists when the count is > 1

MPEG-4 files don't contain any elst atom
This commit is contained in:
Matthew Hoops 2011-12-29 12:46:27 -05:00
parent 44a8e4ac1d
commit 5b1095a400

View File

@ -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");
}
}