[FFmpeg-cvslog] ffmpeg: fix pts handling in the non monotone dts workaround

Michael Niedermayer git at videolan.org
Fri May 3 15:11:59 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri May  3 15:00:21 2013 +0200| [30c05f6b02a4806249e566674b88a5925e4796c4] | committer: Michael Niedermayer

ffmpeg: fix pts handling in the non monotone dts workaround

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=30c05f6b02a4806249e566674b88a5925e4796c4
---

 ffmpeg.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 8c9d848..88da0d7 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;



More information about the ffmpeg-cvslog mailing list