]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_showinfo.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_showinfo.c
index 657e6e6df2245669dc5675d733bceb03325eaccd..d14d99b1f11116567bfa8ea81912144359b48a7d 100644 (file)
@@ -27,6 +27,8 @@
 #include "libavutil/pixdesc.h"
 #include "libavutil/timestamp.h"
 #include "avfilter.h"
+#include "internal.h"
+#include "video.h"
 
 typedef struct {
     unsigned int frame;
@@ -79,6 +81,7 @@ static void end_frame(AVFilterLink *inlink)
     av_log(ctx, AV_LOG_INFO, "]\n");
 
     showinfo->frame++;
+    avfilter_unref_buffer(picref);
     avfilter_end_frame(inlink->dst->outputs[0]);
 }
 
@@ -91,8 +94,8 @@ AVFilter avfilter_vf_showinfo = {
 
     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
                                     .type             = AVMEDIA_TYPE_VIDEO,
-                                    .get_video_buffer = avfilter_null_get_video_buffer,
-                                    .start_frame      = avfilter_null_start_frame,
+                                    .get_video_buffer = ff_null_get_video_buffer,
+                                    .start_frame      = ff_null_start_frame_keep_ref,
                                     .end_frame        = end_frame,
                                     .min_perms        = AV_PERM_READ, },
                                   { .name = NULL}},