Commit b11a8890 authored by Michael Niedermayer's avatar Michael Niedermayer

vf_tinterlace: default of mode switch is impossible, add assert.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e7101a7f
......@@ -309,6 +309,8 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
inlink->format, inlink->w, inlink->h,
tff ? FIELD_UPPER : FIELD_LOWER, 1, tff ? FIELD_UPPER : FIELD_LOWER);
break;
default:
av_assert0(0);
}
ret = ff_filter_frame(outlink, out);
......
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