avfilter/vf_ssim: fix logic failure when comparing time bases

This commit is contained in:
Paul B Mahol 2020-02-01 21:09:32 +01:00
parent 81d25e5bfc
commit 89eee09739
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ static int config_output(AVFilterLink *outlink)
outlink->time_base = s->fs.time_base;
if (av_cmp_q(mainlink->time_base, outlink->time_base) &&
if (av_cmp_q(mainlink->time_base, outlink->time_base) ||
av_cmp_q(ctx->inputs[1]->time_base, outlink->time_base))
av_log(ctx, AV_LOG_WARNING, "not matching timebases found between first input: %d/%d and second input %d/%d, results may be incorrect!\n",
mainlink->time_base.num, mainlink->time_base.den,