mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_fftdnoiz: fix missing funcionality
This commit is contained in:
parent
025ae145de
commit
374d646930
@ -583,6 +583,9 @@ static int export_pass(AVFilterContext *ctx, void *arg,
|
|||||||
for (int plane = 0; plane < s->nb_planes; plane++) {
|
for (int plane = 0; plane < s->nb_planes; plane++) {
|
||||||
PlaneContext *p = &s->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],
|
export_plane(s, out->data[plane], out->linesize[plane],
|
||||||
p->buffer[CURRENT], p->buffer_linesize, plane,
|
p->buffer[CURRENT], p->buffer_linesize, plane,
|
||||||
jobnr, nb_jobs);
|
jobnr, nb_jobs);
|
||||||
|
Loading…
Reference in New Issue
Block a user