From 8cc77646c071e3c21600050b3a88d4a2b44b3185 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 3 Sep 2012 22:40:31 +0200 Subject: [PATCH] yadif: remove unused variable Signed-off-by: Michael Niedermayer --- libavfilter/vf_yadif.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 9f949f800a..5318379f60 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -138,7 +138,6 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic, int mrefs = y ?-refs : refs; if(y<=1 || y+2>=h) { - int j; uint8_t *tmp = yadif->temp_line + 64 + 2*absrefs; if(mode<2) memcpy(tmp+2*mrefs, cur+2*mrefs, w*df);