Commit 1166fc07 authored by Michael Niedermayer's avatar Michael Niedermayer

utils: fix duration calculation for strange_duration_example.ts

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent de2022c5
......@@ -2326,8 +2326,6 @@ static void estimate_timings_from_pts(AVFormatContext *ic, int64_t old_offset)
duration -= st->start_time;
else
duration -= st->first_dts;
if (duration < 0)
duration += 1LL<<st->pts_wrap_bits;
if (duration > 0) {
if (st->duration == AV_NOPTS_VALUE || st->duration < duration)
st->duration = duration;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment