summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-12-22 16:19:44 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-22 16:21:47 +0100
commitd3b6a9abacc9df124388ca2c38bf9456570f5d59 (patch)
treede0697392856edd0a88ec5ffe2ea99b8a1f2c2d1 /libavformat
parent16557887127256fb1e491702375e7ea7b3940924 (diff)
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>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 06e80c88be..7bea512168 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -4700,7 +4700,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");