Skip to content
Snippets Groups Projects
Commit 30c05f6b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

ffmpeg: fix pts handling in the non monotone dts workaround

parent 007ee09d
No related branches found
No related tags found
No related merge requests found
......@@ -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 "
"in incorrect timestamps in the output file.\n",
max);
pkt->dts = max;
if (pkt->pts != AV_NOPTS_VALUE)
if(pkt->pts >= pkt->dts)
pkt->pts = FFMAX(pkt->pts, max);
pkt->dts = max;
}
}
ost->last_mux_dts = pkt->dts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment