mirror of https://git.ffmpeg.org/ffmpeg.git
movenc: fix edit list for the case of negative pts.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
015b805d13
commit
14fd34d73b
|
@ -1672,6 +1672,10 @@ static int mov_write_edts_tag(AVIOContext *pb, MOVTrack *track)
|
|||
avio_wb32(pb, -1);
|
||||
}
|
||||
avio_wb32(pb, 0x00010000);
|
||||
} else {
|
||||
av_assert0(track->cluster[0].dts <= 0);
|
||||
start_ct = -track->cluster[0].dts;
|
||||
duration += delay;
|
||||
}
|
||||
|
||||
/* duration */
|
||||
|
|
Loading…
Reference in New Issue