Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 8c9d848c47..88da0d7b0e 100644
--- a/ffmpeg.c
+++ b/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 "
"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;