mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-05 11:36:37 +00:00
movenc: Assume streams starting at pts=0 for discontinuous fragments with editlists
This allows producing fragments discontinously where the video stream has b-frames (but starts at pts=0), but doesn't work for the cases with audio with preroll. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
59e8ec0aa8
commit
09e431b9e3
@ -3506,10 +3506,18 @@ int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
if (trk->start_dts == AV_NOPTS_VALUE) {
|
||||
trk->start_dts = pkt->dts;
|
||||
if (trk->frag_discont) {
|
||||
/* Pretend the whole stream started at dts=0, with earlier fragments
|
||||
* already written, with a duration summing up to pkt->dts. */
|
||||
trk->frag_start = pkt->dts;
|
||||
trk->start_dts = 0;
|
||||
if (mov->use_editlist) {
|
||||
/* Pretend the whole stream started at pts=0, with earlier fragments
|
||||
* already written. If the stream started at pts=0, the duration sum
|
||||
* of earlier fragments would have been pkt->pts. */
|
||||
trk->frag_start = pkt->pts;
|
||||
trk->start_dts = pkt->dts - pkt->pts;
|
||||
} else {
|
||||
/* Pretend the whole stream started at dts=0, with earlier fragments
|
||||
* already written, with a duration summing up to pkt->dts. */
|
||||
trk->frag_start = pkt->dts;
|
||||
trk->start_dts = 0;
|
||||
}
|
||||
trk->frag_discont = 0;
|
||||
} else if (pkt->dts && mov->moov_written)
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
|
Loading…
x
Reference in New Issue
Block a user