mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avfilter/vf_fftdnoiz: fix missing funcionality
This commit is contained in:
parent
025ae145de
commit
374d646930
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue