avfilter/avfilter: Add a few more basic filters to the list which support frame size changes

Fixes assertion failures

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/150/head
Michael Niedermayer 9 years ago
parent da8eb70dc3
commit 5d859e5980
  1. 7
      libavfilter/avfilter.c

@ -1161,8 +1161,11 @@ int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
/* Consistency checks */ /* Consistency checks */
if (link->type == AVMEDIA_TYPE_VIDEO) { if (link->type == AVMEDIA_TYPE_VIDEO) {
if (strcmp(link->dst->filter->name, "scale") && if (strcmp(link->dst->filter->name, "buffersink") &&
strcmp(link->dst->filter->name, "idet")) { strcmp(link->dst->filter->name, "format") &&
strcmp(link->dst->filter->name, "idet") &&
strcmp(link->dst->filter->name, "null") &&
strcmp(link->dst->filter->name, "scale")) {
av_assert1(frame->format == link->format); av_assert1(frame->format == link->format);
av_assert1(frame->width == link->w); av_assert1(frame->width == link->w);
av_assert1(frame->height == link->h); av_assert1(frame->height == link->h);

Loading…
Cancel
Save