Commit bc1c90ea authored by Clément Bœsch's avatar Clément Bœsch

lavfi/dctdnoiz: fix 10l typo in pr_height computation.

parent 1a36c756
......@@ -147,7 +147,7 @@ static int config_input(AVFilterLink *inlink)
s->color_dct[y][x] = dct_3x3[rgba_map[y]][rgba_map[x]];
s->pr_width = inlink->w - (inlink->w - BSIZE) % s->step;
s->pr_height = inlink->w - (inlink->h - BSIZE) % s->step;
s->pr_height = inlink->h - (inlink->h - BSIZE) % s->step;
if (s->pr_width != inlink->w)
av_log(ctx, AV_LOG_WARNING, "The last %d horizontal pixels won't be denoised\n",
inlink->w - s->pr_width);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment