Commit 007ee09d authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: fix the used maximum dts in the monotone dts workaround

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 26b89f62
...@@ -625,10 +625,10 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost) ...@@ -625,10 +625,10 @@ 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",
ost->last_mux_dts + 1); max);
pkt->dts = ost->last_mux_dts + 1; pkt->dts = max;
if (pkt->pts != AV_NOPTS_VALUE) if (pkt->pts != AV_NOPTS_VALUE)
pkt->pts = FFMAX(pkt->pts, pkt->dts); pkt->pts = FFMAX(pkt->pts, max);
} }
} }
ost->last_mux_dts = pkt->dts; ost->last_mux_dts = pkt->dts;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment