mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
movenc: fix assert failure caused by rounding.
Fixes Ticket1820 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
32cd3a7c16
commit
66b45d8f7a
@ -1721,8 +1721,8 @@ static int mov_write_edts_tag(AVIOContext *pb, MOVTrack *track)
|
|||||||
}
|
}
|
||||||
avio_wb32(pb, 0x00010000);
|
avio_wb32(pb, 0x00010000);
|
||||||
} else {
|
} else {
|
||||||
av_assert0(track->cluster[0].dts <= 0);
|
av_assert0(av_rescale_rnd(track->cluster[0].dts, MOV_TIMESCALE, track->timescale, AV_ROUND_DOWN) <= 0);
|
||||||
start_ct = -track->cluster[0].dts;
|
start_ct = -FFMIN(track->cluster[0].dts, 0); //FFMIN needed due to rounding
|
||||||
duration += delay;
|
duration += delay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user