avfilter/af_acrossover: always align nb_samples for fdsp call

This commit is contained in:
Paul B Mahol 2020-11-29 22:08:35 +01:00
parent 400b9ee731
commit 263b98bbbd
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ static int filter_channels_## name(AVFilterContext *ctx, void *arg, int jobnr, i
CrossoverChannel *xover = &s->xover[ch]; \
\
s->fdsp->vector_## ff ##mul_scalar((type *)frames[0]->extended_data[ch], src, \
s->level_in, nb_samples); \
s->level_in, FFALIGN(nb_samples, sizeof(type))); \
emms_c(); \
\
for (int band = 0; band < ctx->nb_outputs; band++) { \