Commit 08ee02de authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_tinterlace: remove unused variable

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f3cba01c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment