Browse Source

avfilter/vf_framerate: fix infinite loop with 1-frame input

Fixes infinite loop in:
ffmpeg -f lavfi -i testsrc=d=0.04 -vf framerate=50 -f null none

Signed-off-by: Marton Balint <cus@passwd.hu>
tags/n4.4
Marton Balint 4 years ago
parent
commit
6d3b70c27e
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavfilter/vf_framerate.c

+ 3
- 1
libavfilter/vf_framerate.c View File

@@ -170,7 +170,9 @@ static int process_work_frame(AVFilterContext *ctx)
return 0;

if (!s->f0) {
s->work = av_frame_clone(s->f1);
av_assert1(s->flush);
s->work = s->f1;
s->f1 = NULL;
} else {
if (work_pts >= s->pts1 + s->delta && s->flush)
return 0;


Loading…
Cancel
Save