diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-25 13:42:17 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-25 13:42:17 +0000 |
commit | 921bf9f1ff53305bf24b3ef1cc2ac8da05d75c9e (patch) | |
tree | 151b2c771543f7d33d8f0a2840a63d7db5779e76 /libavfilter | |
parent | 0fb226b37a872c8ee84e3e166f2240da66bfd798 (diff) | |
download | ffmpeg-921bf9f1ff53305bf24b3ef1cc2ac8da05d75c9e.tar.gz |
Fix memleak introduced in:
r25185 | stefano | 2010-09-25 03:18:43 +0200 (Sat, 25 Sep 2010) | 1 line
Make the crop filters accept parametric expressions.
Originally committed as revision 25193 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_crop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c index d190d725cc..775c8ff856 100644 --- a/libavfilter/vf_crop.c +++ b/libavfilter/vf_crop.c @@ -305,6 +305,7 @@ static void end_frame(AVFilterLink *link) CropContext *crop = link->dst->priv; crop->var_values[N] += 1.0; + avfilter_unref_buffer(link->cur_buf); avfilter_end_frame(link->dst->outputs[0]); } |