]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_fps.c
avformat/avformat: Constify AVFormatContext.*_codec pointers
[ffmpeg] / libavfilter / vf_fps.c
index 6b99f20d2bb367ac3593138fd0bd770d79ba3b36..cf1e36726aeffd407e7e0e9ae5f5ac28cd251138 100644 (file)
@@ -256,7 +256,7 @@ static int write_frame(AVFilterContext *ctx, FPSContext *s, AVFilterLink *outlin
         av_log(ctx, AV_LOG_DEBUG, "Writing frame with pts %"PRId64" to pts %"PRId64"\n",
                s->frames[0]->pts, frame->pts);
         s->cur_frame_out++;
-
+        *again = 1;
         return ff_filter_frame(outlink, frame);
     }
 }