summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-07-17 19:25:41 -0700
committerMichael Niedermayer <michaelni@gmx.at>2014-07-18 04:44:58 +0200
commitb64808e9ddc832e21e76497d00d820113d7de57a (patch)
tree1e37473ca6c94a8aff4e3902e6cdd83bb22c237d
parentc67cf84628bcc81a0a45dd41bedd1c31dc12f7a7 (diff)
kerndeint: remove dead assignments
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavfilter/vf_kerndeint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c
index 1f8e0910c7..5130208d4b 100644
--- a/libavfilter/vf_kerndeint.c
+++ b/libavfilter/vf_kerndeint.c
@@ -154,10 +154,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
h = plane == 0 ? inlink->h : FF_CEIL_RSHIFT(inlink->h, kerndeint->vsub);
bwidth = kerndeint->tmp_bwidth[plane];
- srcp = srcp_saved = inpic->data[plane];
+ srcp_saved = inpic->data[plane];
src_linesize = inpic->linesize[plane];
psrc_linesize = kerndeint->tmp_linesize[plane];
- dstp = dstp_saved = outpic->data[plane];
+ dstp_saved = outpic->data[plane];
dst_linesize = outpic->linesize[plane];
srcp = srcp_saved + (1 - order) * src_linesize;
dstp = dstp_saved + (1 - order) * dst_linesize;