From 5b1095a4008613ec7f2efd6349670521a6d44dae Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 29 Dec 2011 12:46:27 -0500 Subject: AUDIO: Only warn about audio edit lists when the count is > 1 MPEG-4 files don't contain any elst atom --- audio/decoders/quicktime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } } -- cgit v1.2.3