From 08ee02deca81fe4c4db356f89132b0f87deffeb6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 16 Nov 2014 01:06:18 +0100 Subject: avfilter/vf_tinterlace: remove unused variable Signed-off-by: Michael Niedermayer --- libavfilter/vf_tinterlace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_tinterlace.c') diff --git a/libavfilter/vf_tinterlace.c b/libavfilter/vf_tinterlace.c index 2a5f3d9..133f073 100644 --- a/libavfilter/vf_tinterlace.c +++ b/libavfilter/vf_tinterlace.c @@ -180,7 +180,7 @@ void copy_picture_field(TInterlaceContext *tinterlace, const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(format); int plane, vsub = desc->log2_chroma_h; int k = src_field == FIELD_UPPER_AND_LOWER ? 1 : 2; - int h, i; + int h; for (plane = 0; plane < desc->nb_components; plane++) { int lines = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(src_h, vsub) : src_h; -- cgit v1.1