aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-12-22 16:19:44 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-15 12:30:40 +0100
commit2f65366c112d27c8c6078a3288c58cb202c65bd3 (patch)
treef010290720f9c4a941d4d640b59ebf56eb8f7b64
parent3e3aa25afa1039775215882aff9d1048165e1c2a (diff)
downloadffmpeg-2f65366c112d27c8c6078a3288c58cb202c65bd3.tar.gz
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 d3b6a9abacc9df124388ca2c38bf9456570f5d59) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 4ce4e2dddd..3668f2a95f 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -4535,7 +4535,7 @@ static int mov_read_header(AVFormatContext *s)
}
}
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
) {
av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");