diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-19 17:21:04 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-19 18:36:36 +0100 |
commit | 4e20e94921460f7108ad76dc873417cd15b356c4 (patch) | |
tree | 1b341a50520e00a7ceefe5b3092817cf186ea264 | |
parent | c5092025901b37aa5de4f290afb61fc5377eb79d (diff) | |
download | ffmpeg-4e20e94921460f7108ad76dc873417cd15b356c4.tar.gz |
ffmpeg: Check duration for overlap and clip in fps cfr/vfr code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffmpeg.c | 7 | ||||
-rw-r--r-- | tests/ref/fate/gif-disposal-restore | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -904,6 +904,13 @@ static void do_video_out(AVFormatContext *s, sync_ipts = next_picture->pts; delta0 = sync_ipts - ost->sync_opts; delta = delta0 + duration; + if (delta0 < 0 && delta > 0) { + double cor = FFMIN(-delta0, duration); + av_log(NULL, AV_LOG_WARNING, "Past duration %f too large\n", -delta0); + sync_ipts += cor; + duration -= cor; + delta0 += cor; + } /* by default, we output a single frame */ nb0_frames = 0; diff --git a/tests/ref/fate/gif-disposal-restore b/tests/ref/fate/gif-disposal-restore index c0c04b4e6f..0ff1715153 100644 --- a/tests/ref/fate/gif-disposal-restore +++ b/tests/ref/fate/gif-disposal-restore @@ -1,4 +1,4 @@ #tb 0: 1/1 0, 0, 0, 1, 112320, 0xb8afe429 -0, 0, 0, 1, 112320, 0xae588a4b +0, 1, 1, 1, 112320, 0xae588a4b 0, 3, 3, 1, 112320, 0xccdd27b7 |