ffmpeg: fix pts handling in the non monotone dts workaround
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
007ee09d7c
commit
30c05f6b02
4
ffmpeg.c
4
ffmpeg.c
@ -626,9 +626,9 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
|
|||||||
av_log(NULL, AV_LOG_WARNING, "changing to %"PRId64". This may result "
|
av_log(NULL, AV_LOG_WARNING, "changing to %"PRId64". This may result "
|
||||||
"in incorrect timestamps in the output file.\n",
|
"in incorrect timestamps in the output file.\n",
|
||||||
max);
|
max);
|
||||||
pkt->dts = max;
|
if(pkt->pts >= pkt->dts)
|
||||||
if (pkt->pts != AV_NOPTS_VALUE)
|
|
||||||
pkt->pts = FFMAX(pkt->pts, max);
|
pkt->pts = FFMAX(pkt->pts, max);
|
||||||
|
pkt->dts = max;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ost->last_mux_dts = pkt->dts;
|
ost->last_mux_dts = pkt->dts;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user