From 4c9080a7ef18ad71fb0a75c8d1c1803edd780edd Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 14 Jul 2012 17:09:43 +0200 Subject: lavfi: unref AVFilterLink.out_buf in ff_end_frame(). This reduces code duplication and prevents stale pointers from remaining on the link. --- libavfilter/vf_unsharp.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavfilter/vf_unsharp.c') diff --git a/libavfilter/vf_unsharp.c b/libavfilter/vf_unsharp.c index 3d28759ddf..2a0fe00660 100644 --- a/libavfilter/vf_unsharp.c +++ b/libavfilter/vf_unsharp.c @@ -227,7 +227,6 @@ static void end_frame(AVFilterLink *link) ff_draw_slice(link->dst->outputs[0], 0, link->h, 1); ff_end_frame(link->dst->outputs[0]); - avfilter_unref_buffer(out); } static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir) -- cgit v1.2.3