1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

avfilter/f_select: Added activate for aselect

During migration to the activation filter API the aselect filter was
accidentally turned into a no-op filter.
This commit is contained in:
Anders Rein
2025-11-17 23:52:49 +01:00
committed by Marton Balint
parent 3cc1dc3358
commit 7411e902da

View File

@@ -504,6 +504,7 @@ const FFFilter ff_af_aselect = {
.p.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
.init = aselect_init,
.uninit = uninit,
.activate = activate,
.priv_size = sizeof(SelectContext),
FILTER_INPUTS(avfilter_af_aselect_inputs),
};