summaryrefslogtreecommitdiff
path: root/libavfilter/vf_crop.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-07-14 17:09:43 +0200
committerAnton Khirnov <anton@khirnov.net>2012-07-20 21:10:42 +0200
commit07bad27810cdd7d3171cbd542119aa051646377c (patch)
tree3bb780df53f6779185ea0fc78ba584a7296105b8 /libavfilter/vf_crop.c
parent533fd5b5b468131cfe164455783c351eb69af657 (diff)
lavfi: unref AVFilterLink.cur_buf in ff_end_frame().
This reduces code duplication and prevents stale pointers from remaining on the link.
Diffstat (limited to 'libavfilter/vf_crop.c')
-rw-r--r--libavfilter/vf_crop.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 6d124c19d3..6988fcffa9 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -317,7 +317,6 @@ static void end_frame(AVFilterLink *link)
CropContext *crop = link->dst->priv;
crop->var_values[VAR_N] += 1.0;
- avfilter_unref_buffer(link->cur_buf);
ff_end_frame(link->dst->outputs[0]);
}