mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-20 19:21:46 +00:00
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:
parent
44a8e4ac1d
commit
5b1095a400
@ -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");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user