Browse Source

avfilter/avfilter: allow idet like scale to have parameter changes

Fixes assertion failure

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
6c702c3c63
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavfilter/avfilter.c

+ 2
- 1
libavfilter/avfilter.c View File

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


Loading…
Cancel
Save