Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-07-14 19:09:43 +0400
committerAnton Khirnov <anton@khirnov.net>2012-07-20 23:12:49 +0400
commit4c9080a7ef18ad71fb0a75c8d1c1803edd780edd (patch)
treec1301bfaeaecbdc002a236dddee476d24da90df2 /libavfilter/vf_pad.c
parent07bad27810cdd7d3171cbd542119aa051646377c (diff)
lavfi: unref AVFilterLink.out_buf in ff_end_frame().
This reduces code duplication and prevents stale pointers from remaining on the link.
Diffstat (limited to 'libavfilter/vf_pad.c')
-rw-r--r--libavfilter/vf_pad.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c
index b0d5c5fb2f..6ce70bd684 100644
--- a/libavfilter/vf_pad.c
+++ b/libavfilter/vf_pad.c
@@ -347,7 +347,6 @@ static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
static void end_frame(AVFilterLink *link)
{
ff_end_frame(link->dst->outputs[0]);
- avfilter_unref_buffer(link->dst->outputs[0]->out_buf);
}
static void draw_send_bar_slice(AVFilterLink *link, int y, int h, int slice_dir, int before_slice)