Browse Source

avfilter/vf_scale: Do not skip scale if range mismatches

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Carl Eugen Hoyos Michael Niedermayer 9 years ago
parent
commit
75d9006475
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavfilter/vf_scale.c

+ 1
- 0
libavfilter/vf_scale.c View File

@@ -350,6 +350,7 @@ static int config_props(AVFilterLink *outlink)
scale->isws[0] = scale->isws[1] = scale->sws = NULL;
if (inlink0->w == outlink->w &&
inlink0->h == outlink->h &&
scale->in_range == scale->out_range &&
inlink0->format == outlink->format)
;
else {


Loading…
Cancel
Save