Skip to content
Snippets Groups Projects
Commit b11a8890 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

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

parent e7101a7f
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment