diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-16 13:24:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-16 13:24:43 +0100 |
commit | b4bb996d6f41812144cf97947c3e88a9a1659c4f (patch) | |
tree | a09e0244e8cfeefed87d64eb45b2056339ff09ba | |
parent | bb29ee62e9ef30c26988f386e7c3be7affe836f9 (diff) | |
download | ffmpeg-b4bb996d6f41812144cf97947c3e88a9a1659c4f.tar.gz |
yadif: remove unused variable
Found by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_yadif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index fb17531dbf..b7c2d8073a 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -177,7 +177,6 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic, int w = dstpic->video->w; int h = dstpic->video->h; int refs = yadif->cur->linesize[i]; - int absrefs = FFABS(refs); int df = (yadif->csp->comp[i].depth_minus1 + 8) / 8; int l_edge, l_edge_pix; |