diff options
author | Michael Niedermayer | 2016-09-28 15:47:12 +0200 |
---|---|---|
committer | Michael Niedermayer | 2016-09-28 16:46:24 +0200 |
commit | 14bac7e00d72eac687612d9b125e585011a56d4f (patch) | |
tree | 3051f10bdf881eb8919516bd577a9352899ef0f3 /libavformat/avidec.c | |
parent | 25866680fd6ba2e1994e8aeda2e3b1a1938e8385 (diff) |
avformat/avidec: Remove ancient assert
This assert can with crafted files fail, a warning is already printed
for this case.
Fixes assertion failure
Fixes:1/assert.avi
Found-by: 连一汉 <lianyihan@360.cn>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 1e8481e001..96edfa88ea 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -1857,7 +1857,6 @@ static int avi_read_seek(AVFormatContext *s, int stream_index, continue; // av_assert1(st2->codecpar->block_align); - av_assert0(fabs(av_q2d(st2->time_base) - ast2->scale / (double)ast2->rate) < av_q2d(st2->time_base) * 0.00000001); index = av_index_search_timestamp(st2, av_rescale_q(timestamp, st->time_base, |