avfilter/vf_extractplanes: fix regression

Report & solution provided by Andreas Rheinhardt.
This commit is contained in:
Paul B Mahol 2021-09-12 17:03:38 +02:00
parent a543d075cd
commit cd4e6e404b
1 changed files with 1 additions and 0 deletions

View File

@ -387,6 +387,7 @@ static av_cold int init_alphaextract(AVFilterContext *ctx)
ExtractPlanesContext *s = ctx->priv;
s->requested_planes = PLANE_A;
s->map[0] = 3;
return 0;
}