Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
b11a889055
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavfilter/vf_tinterlace.c

+ 2
- 0
libavfilter/vf_tinterlace.c View File

@@ -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);


Loading…
Cancel
Save