avformat/mov: Update handbrake_version threshold for full mp3 parsing

Fixes: Endangered\ Species\ 1x01\ Collecting\ Merl.mp4

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit d3b6a9abac)

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer
2015-12-22 16:19:44 +01:00
parent 3e3aa25afa
commit 2f65366c11

View File

@@ -4535,7 +4535,7 @@ static int mov_read_header(AVFormatContext *s)
} }
} }
if (mov->handbrake_version && if (mov->handbrake_version &&
mov->handbrake_version <= 1000000*0 + 1000*10 + 0 && // 0.10.0 mov->handbrake_version <= 1000000*0 + 1000*10 + 2 && // 0.10.2
st->codec->codec_id == AV_CODEC_ID_MP3 st->codec->codec_id == AV_CODEC_ID_MP3
) { ) {
av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n"); av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");