diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index b37ff1f2c880162a5dd4d5b40f611b73fc1c697e..76c60c1d297e60db5baf7dceb7c47039c8ea837e 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -1163,7 +1163,8 @@ int ff_filter_frame(AVFilterLink *link, AVFrame *frame) /* Consistency checks */ if (link->type == AVMEDIA_TYPE_VIDEO) { - if (strcmp(link->dst->filter->name, "scale")) { + if (strcmp(link->dst->filter->name, "scale") && + strcmp(link->dst->filter->name, "idet")) { av_assert1(frame->format == link->format); av_assert1(frame->width == link->w); av_assert1(frame->height == link->h);