1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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

View File

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