Commit 374d6469 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_fftdnoiz: fix missing funcionality

parent 025ae145
......@@ -583,6 +583,9 @@ static int export_pass(AVFilterContext *ctx, void *arg,
for (int plane = 0; plane < s->nb_planes; plane++) {
PlaneContext *p = &s->planes[plane];
if (!((1 << plane) & s->planesf) || ctx->is_disabled)
continue;
export_plane(s, out->data[plane], out->linesize[plane],
p->buffer[CURRENT], p->buffer_linesize, plane,
jobnr, nb_jobs);
......
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