diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-26 20:00:00 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-26 21:30:45 +0100 |
commit | a612e86ea65eef83d3b616df4aa3e774d820e040 (patch) | |
tree | 364d479876c79cbf94a548fbe26ff390191f45b0 /libavfilter/vf_deshake.c | |
parent | 5673a0102ae1c3a11665db5d82e754c9e917a512 (diff) | |
download | ffmpeg-a612e86ea65eef83d3b616df4aa3e774d820e040.tar.gz |
lavfi/deshake: remove usage of link->cur_buf.
Diffstat (limited to 'libavfilter/vf_deshake.c')
-rw-r--r-- | libavfilter/vf_deshake.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c index 867041bc1a..206f701984 100644 --- a/libavfilter/vf_deshake.c +++ b/libavfilter/vf_deshake.c @@ -443,7 +443,6 @@ static int filter_frame(AVFilterLink *link, AVFilterBufferRef *in) } avfilter_copy_buffer_ref_props(out, in); - link->cur_buf = NULL; /* it is in 'in' now */ if (deshake->cx < 0 || deshake->cy < 0 || deshake->cw < 0 || deshake->ch < 0) { // Find the most likely global motion for the current frame find_motion(deshake, (deshake->ref == NULL) ? in->data[0] : deshake->ref->data[0], in->data[0], link->w, link->h, in->linesize[0], &t); |