From 07bad27810cdd7d3171cbd542119aa051646377c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 14 Jul 2012 17:09:43 +0200 Subject: lavfi: unref AVFilterLink.cur_buf in ff_end_frame(). This reduces code duplication and prevents stale pointers from remaining on the link. --- libavfilter/vf_drawtext.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavfilter/vf_drawtext.c') diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index fd2ec8deae..eac7245bfb 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -868,7 +868,6 @@ static void end_frame(AVFilterLink *inlink) ff_draw_slice(outlink, 0, picref->video->h, 1); ff_end_frame(outlink); - avfilter_unref_buffer(inlink->cur_buf); } AVFilter avfilter_vf_drawtext = { -- cgit v1.2.3