diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-26 19:56:53 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-26 21:30:45 +0100 |
commit | 5673a0102ae1c3a11665db5d82e754c9e917a512 (patch) | |
tree | 3d0f129c7cab4f8350e2232fb62f5f0378f6e46c /libavfilter/vf_decimate.c | |
parent | 33e0eb510912e61db94f23b2b78442babff60104 (diff) | |
download | ffmpeg-5673a0102ae1c3a11665db5d82e754c9e917a512.tar.gz |
lavfi/decimate: remove usage of link->cur_buf.
Diffstat (limited to 'libavfilter/vf_decimate.c')
-rw-r--r-- | libavfilter/vf_decimate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_decimate.c b/libavfilter/vf_decimate.c index 267a435024..b81c3ee8f2 100644 --- a/libavfilter/vf_decimate.c +++ b/libavfilter/vf_decimate.c @@ -198,7 +198,6 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *cur) } else { avfilter_unref_buffer(decimate->ref); decimate->ref = cur; - inlink->cur_buf = NULL; decimate->drop_count = FFMIN(-1, decimate->drop_count-1); if (ret = ff_filter_frame(outlink, avfilter_ref_buffer(cur, ~AV_PERM_WRITE)) < 0) |