diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-11-30 14:50:34 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-11-30 14:53:14 +0100 |
commit | 62a0368fb469277ccd6d9209ebdc39b03196eb59 (patch) | |
tree | 9e62aa617710955939f7b0ed6a035e1e8334e10d /libavfilter/af_acrossover.c | |
parent | ca0900bc6ef1db42881769528f2a3bb69e0bc492 (diff) | |
download | ffmpeg-62a0368fb469277ccd6d9209ebdc39b03196eb59.tar.gz |
avfilter/af_acrossover: remove unneeded emms_c() calls
Diffstat (limited to 'libavfilter/af_acrossover.c')
-rw-r--r-- | libavfilter/af_acrossover.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/af_acrossover.c b/libavfilter/af_acrossover.c index 6150af7933..74b60035d4 100644 --- a/libavfilter/af_acrossover.c +++ b/libavfilter/af_acrossover.c @@ -339,7 +339,6 @@ static int filter_channels_## name(AVFilterContext *ctx, void *arg, int jobnr, i \ s->fdsp->vector_## ff ##mul_scalar((type *)frames[0]->extended_data[ch], src, \ s->level_in, FFALIGN(nb_samples, sizeof(type))); \ - emms_c(); \ \ for (int band = 0; band < ctx->nb_outputs; band++) { \ for (int f = 0; band + 1 < ctx->nb_outputs && f < s->filter_count; f++) { \ @@ -387,7 +386,6 @@ static int filter_channels_## name(AVFilterContext *ctx, void *arg, int jobnr, i type *dst = (type *)frames[band]->extended_data[ch]; \ s->fdsp->vector_## ff ##mul_scalar(dst, dst, -one, \ FFALIGN(nb_samples, sizeof(type))); \ - emms_c(); \ } \ } \ } \ |