diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-22 16:19:44 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-15 12:30:40 +0100 |
commit | 2f65366c112d27c8c6078a3288c58cb202c65bd3 (patch) | |
tree | f010290720f9c4a941d4d640b59ebf56eb8f7b64 | |
parent | 3e3aa25afa1039775215882aff9d1048165e1c2a (diff) | |
download | ffmpeg-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.c | 2 |
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"); |