avfilter/vf_xfade: Remove always-false format check

This filter uses ff_set_common_formats_from_list().

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/369/head
Andreas Rheinhardt 3 years ago
parent c87d7c8a81
commit 04a5ffa75f
  1. 4
      libavfilter/vf_xfade.c

@ -1717,10 +1717,6 @@ static int config_output(AVFilterLink *outlink)
XFadeContext *s = ctx->priv;
const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink0->format);
if (inlink0->format != inlink1->format) {
av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
return AVERROR(EINVAL);
}
if (inlink0->w != inlink1->w || inlink0->h != inlink1->h) {
av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
"(size %dx%d) do not match the corresponding "

Loading…
Cancel
Save