]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_afir.c
avfilter/af_afir: remove not needed operations
[ffmpeg] / libavfilter / af_afir.c
1 /*
2  * Copyright (c) 2017 Paul B Mahol
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * An arbitrary audio FIR filter
24  */
25
26 #include <float.h>
27
28 #include "libavutil/common.h"
29 #include "libavutil/float_dsp.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/xga_font_data.h"
33 #include "libavcodec/avfft.h"
34
35 #include "audio.h"
36 #include "avfilter.h"
37 #include "filters.h"
38 #include "formats.h"
39 #include "internal.h"
40 #include "af_afir.h"
41
42 static void fcmul_add_c(float *sum, const float *t, const float *c, ptrdiff_t len)
43 {
44     int n;
45
46     for (n = 0; n < len; n++) {
47         const float cre = c[2 * n    ];
48         const float cim = c[2 * n + 1];
49         const float tre = t[2 * n    ];
50         const float tim = t[2 * n + 1];
51
52         sum[2 * n    ] += tre * cre - tim * cim;
53         sum[2 * n + 1] += tre * cim + tim * cre;
54     }
55
56     sum[2 * n] += t[2 * n] * c[2 * n];
57 }
58
59 static int fir_channel(AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
60 {
61     AudioFIRContext *s = ctx->priv;
62     const float *src = (const float *)s->in[0]->extended_data[ch];
63     int index1 = (s->index + 1) % 3;
64     int index2 = (s->index + 2) % 3;
65     float *sum = s->sum[ch];
66     AVFrame *out = arg;
67     float *block;
68     float *dst;
69     int n, i, j;
70
71     memset(sum, 0, sizeof(*sum) * s->fft_length);
72     block = s->block[ch] + s->part_index * s->block_size;
73     memset(block, 0, sizeof(*block) * s->fft_length);
74
75     s->fdsp->vector_fmul_scalar(block, src, s->dry_gain, FFALIGN(s->nb_samples, 4));
76     emms_c();
77
78     av_rdft_calc(s->rdft[ch], block);
79     block[2 * s->part_size] = block[1];
80     block[1] = 0;
81
82     j = s->part_index;
83
84     for (i = 0; i < s->nb_partitions; i++) {
85         const int coffset = i * s->coeff_size;
86         const FFTComplex *coeff = s->coeff[ch * !s->one2many] + coffset;
87
88         block = s->block[ch] + j * s->block_size;
89         s->fcmul_add(sum, block, (const float *)coeff, s->part_size);
90
91         if (j == 0)
92             j = s->nb_partitions;
93         j--;
94     }
95
96     sum[1] = sum[2 * s->part_size];
97     av_rdft_calc(s->irdft[ch], sum);
98
99     dst = (float *)s->buffer->extended_data[ch] + index1 * s->part_size;
100     for (n = 0; n < s->part_size; n++) {
101         dst[n] += sum[n];
102     }
103
104     dst = (float *)s->buffer->extended_data[ch] + index2 * s->part_size;
105
106     memcpy(dst, sum + s->part_size, s->part_size * sizeof(*dst));
107
108     dst = (float *)s->buffer->extended_data[ch] + s->index * s->part_size;
109
110     if (out) {
111         float *ptr = (float *)out->extended_data[ch];
112         s->fdsp->vector_fmul_scalar(ptr, dst, s->wet_gain, FFALIGN(out->nb_samples, 4));
113         emms_c();
114     }
115
116     return 0;
117 }
118
119 static int fir_frame(AudioFIRContext *s, AVFrame *in, AVFilterLink *outlink)
120 {
121     AVFilterContext *ctx = outlink->src;
122     AVFrame *out = NULL;
123
124     s->nb_samples = in->nb_samples;
125
126     out = ff_get_audio_buffer(outlink, s->nb_samples);
127     if (!out) {
128         av_frame_free(&in);
129         return AVERROR(ENOMEM);
130     }
131
132     if (s->pts == AV_NOPTS_VALUE)
133         s->pts = in->pts;
134     s->in[0] = in;
135     ctx->internal->execute(ctx, fir_channel, out, NULL, outlink->channels);
136
137     s->part_index = (s->part_index + 1) % s->nb_partitions;
138
139     out->pts = s->pts;
140     if (s->pts != AV_NOPTS_VALUE)
141         s->pts += av_rescale_q(out->nb_samples, (AVRational){1, outlink->sample_rate}, outlink->time_base);
142
143     s->index++;
144     if (s->index == 3)
145         s->index = 0;
146
147     av_frame_free(&in);
148     s->in[0] = NULL;
149
150     return ff_filter_frame(outlink, out);
151 }
152
153 static void drawtext(AVFrame *pic, int x, int y, const char *txt, uint32_t color)
154 {
155     const uint8_t *font;
156     int font_height;
157     int i;
158
159     font = avpriv_cga_font, font_height = 8;
160
161     for (i = 0; txt[i]; i++) {
162         int char_y, mask;
163
164         uint8_t *p = pic->data[0] + y * pic->linesize[0] + (x + i * 8) * 4;
165         for (char_y = 0; char_y < font_height; char_y++) {
166             for (mask = 0x80; mask; mask >>= 1) {
167                 if (font[txt[i] * font_height + char_y] & mask)
168                     AV_WL32(p, color);
169                 p += 4;
170             }
171             p += pic->linesize[0] - 8 * 4;
172         }
173     }
174 }
175
176 static void draw_line(AVFrame *out, int x0, int y0, int x1, int y1, uint32_t color)
177 {
178     int dx = FFABS(x1-x0);
179     int dy = FFABS(y1-y0), sy = y0 < y1 ? 1 : -1;
180     int err = (dx>dy ? dx : -dy) / 2, e2;
181
182     for (;;) {
183         AV_WL32(out->data[0] + y0 * out->linesize[0] + x0 * 4, color);
184
185         if (x0 == x1 && y0 == y1)
186             break;
187
188         e2 = err;
189
190         if (e2 >-dx) {
191             err -= dy;
192             x0--;
193         }
194
195         if (e2 < dy) {
196             err += dx;
197             y0 += sy;
198         }
199     }
200 }
201
202 static void draw_response(AVFilterContext *ctx, AVFrame *out)
203 {
204     AudioFIRContext *s = ctx->priv;
205     float *mag, *phase, *delay, min = FLT_MAX, max = FLT_MIN;
206     float min_delay = FLT_MAX, max_delay = FLT_MIN;
207     int prev_ymag = -1, prev_yphase = -1, prev_ydelay = -1;
208     char text[32];
209     int channel, i, x;
210
211     memset(out->data[0], 0, s->h * out->linesize[0]);
212
213     phase = av_malloc_array(s->w, sizeof(*phase));
214     mag = av_malloc_array(s->w, sizeof(*mag));
215     delay = av_malloc_array(s->w, sizeof(*delay));
216     if (!mag || !phase || !delay)
217         goto end;
218
219     channel = av_clip(s->ir_channel, 0, s->in[1]->channels - 1);
220     for (i = 0; i < s->w; i++) {
221         const float *src = (const float *)s->in[1]->extended_data[channel];
222         double w = i * M_PI / (s->w - 1);
223         double div, real_num = 0., imag_num = 0., real = 0., imag = 0.;
224
225         for (x = 0; x < s->nb_taps; x++) {
226             real += cos(-x * w) * src[x];
227             imag += sin(-x * w) * src[x];
228             real_num += cos(-x * w) * src[x] * x;
229             imag_num += sin(-x * w) * src[x] * x;
230         }
231
232         mag[i] = hypot(real, imag);
233         phase[i] = atan2(imag, real);
234         div = real * real + imag * imag;
235         delay[i] = (real_num * real + imag_num * imag) / div;
236         min = fminf(min, mag[i]);
237         max = fmaxf(max, mag[i]);
238         min_delay = fminf(min_delay, delay[i]);
239         max_delay = fmaxf(max_delay, delay[i]);
240     }
241
242     for (i = 0; i < s->w; i++) {
243         int ymag = mag[i] / max * (s->h - 1);
244         int ydelay = (delay[i] - min_delay) / (max_delay - min_delay) * (s->h - 1);
245         int yphase = (0.5 * (1. + phase[i] / M_PI)) * (s->h - 1);
246
247         ymag = s->h - 1 - av_clip(ymag, 0, s->h - 1);
248         yphase = s->h - 1 - av_clip(yphase, 0, s->h - 1);
249         ydelay = s->h - 1 - av_clip(ydelay, 0, s->h - 1);
250
251         if (prev_ymag < 0)
252             prev_ymag = ymag;
253         if (prev_yphase < 0)
254             prev_yphase = yphase;
255         if (prev_ydelay < 0)
256             prev_ydelay = ydelay;
257
258         draw_line(out, i,   ymag, FFMAX(i - 1, 0),   prev_ymag, 0xFFFF00FF);
259         draw_line(out, i, yphase, FFMAX(i - 1, 0), prev_yphase, 0xFF00FF00);
260         draw_line(out, i, ydelay, FFMAX(i - 1, 0), prev_ydelay, 0xFF00FFFF);
261
262         prev_ymag   = ymag;
263         prev_yphase = yphase;
264         prev_ydelay = ydelay;
265     }
266
267     if (s->w > 400 && s->h > 100) {
268         drawtext(out, 2, 2, "Max Magnitude:", 0xDDDDDDDD);
269         snprintf(text, sizeof(text), "%.2f", max);
270         drawtext(out, 15 * 8 + 2, 2, text, 0xDDDDDDDD);
271
272         drawtext(out, 2, 12, "Min Magnitude:", 0xDDDDDDDD);
273         snprintf(text, sizeof(text), "%.2f", min);
274         drawtext(out, 15 * 8 + 2, 12, text, 0xDDDDDDDD);
275
276         drawtext(out, 2, 22, "Max Delay:", 0xDDDDDDDD);
277         snprintf(text, sizeof(text), "%.2f", max_delay);
278         drawtext(out, 11 * 8 + 2, 22, text, 0xDDDDDDDD);
279
280         drawtext(out, 2, 32, "Min Delay:", 0xDDDDDDDD);
281         snprintf(text, sizeof(text), "%.2f", min_delay);
282         drawtext(out, 11 * 8 + 2, 32, text, 0xDDDDDDDD);
283     }
284
285 end:
286     av_free(delay);
287     av_free(phase);
288     av_free(mag);
289 }
290
291 static int convert_coeffs(AVFilterContext *ctx)
292 {
293     AudioFIRContext *s = ctx->priv;
294     int ret, i, ch, n, N;
295     float power = 0;
296
297     s->nb_taps = ff_inlink_queued_samples(ctx->inputs[1]);
298     if (s->nb_taps <= 0)
299         return AVERROR(EINVAL);
300
301     for (n = av_log2(s->minp); (1 << n) < s->nb_taps; n++);
302     N = FFMIN(n, av_log2(s->maxp));
303     s->fft_length = (1 << (N + 1)) + 1;
304     s->part_size = 1 << (N - 1);
305     s->block_size = FFALIGN(s->fft_length, 32);
306     s->coeff_size = FFALIGN(s->part_size + 1, 32);
307     s->nb_partitions = (s->nb_taps + s->part_size - 1) / s->part_size;
308
309     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
310         s->sum[ch] = av_calloc(s->fft_length, sizeof(**s->sum));
311         if (!s->sum[ch])
312             return AVERROR(ENOMEM);
313     }
314
315     for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
316         s->coeff[ch] = av_calloc(s->nb_partitions * s->coeff_size, sizeof(**s->coeff));
317         if (!s->coeff[ch])
318             return AVERROR(ENOMEM);
319     }
320
321     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
322         s->block[ch] = av_calloc(s->nb_partitions * s->block_size, sizeof(**s->block));
323         if (!s->block[ch])
324             return AVERROR(ENOMEM);
325     }
326
327     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
328         s->rdft[ch]  = av_rdft_init(N, DFT_R2C);
329         s->irdft[ch] = av_rdft_init(N, IDFT_C2R);
330         if (!s->rdft[ch] || !s->irdft[ch])
331             return AVERROR(ENOMEM);
332     }
333
334     s->buffer = ff_get_audio_buffer(ctx->inputs[0], s->part_size * 3);
335     if (!s->buffer)
336         return AVERROR(ENOMEM);
337
338     ret = ff_inlink_consume_samples(ctx->inputs[1], s->nb_taps, s->nb_taps, &s->in[1]);
339     if (ret < 0)
340         return ret;
341     if (ret == 0)
342         return AVERROR_BUG;
343
344     if (s->response)
345         draw_response(ctx, s->video);
346
347     s->gain = 1;
348
349     switch (s->gtype) {
350     case -1:
351         /* nothing to do */
352         break;
353     case 0:
354         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
355             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
356
357             for (i = 0; i < s->nb_taps; i++)
358                 power += FFABS(time[i]);
359         }
360         s->gain = ctx->inputs[1]->channels / power;
361         break;
362     case 1:
363         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
364             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
365
366             for (i = 0; i < s->nb_taps; i++)
367                 power += time[i];
368         }
369         s->gain = ctx->inputs[1]->channels / power;
370         break;
371     case 2:
372         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
373             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
374
375             for (i = 0; i < s->nb_taps; i++)
376                 power += time[i] * time[i];
377         }
378         s->gain = sqrtf(ch / power);
379         break;
380     default:
381         return AVERROR_BUG;
382     }
383
384     s->gain = FFMIN(s->gain * s->ir_gain, 1.f);
385     av_log(ctx, AV_LOG_DEBUG, "power %f, gain %f\n", power, s->gain);
386     for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
387         float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
388
389         s->fdsp->vector_fmul_scalar(time, time, s->gain, FFALIGN(s->nb_taps, 4));
390     }
391
392     for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
393         float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
394         float *block = s->block[ch];
395         FFTComplex *coeff = s->coeff[ch];
396
397         for (i = FFMAX(1, s->length * s->nb_taps); i < s->nb_taps; i++)
398             time[i] = 0;
399
400         for (i = 0; i < s->nb_partitions; i++) {
401             const float scale = 1.f / s->part_size;
402             const int toffset = i * s->part_size;
403             const int coffset = i * s->coeff_size;
404             const int remaining = s->nb_taps - (i * s->part_size);
405             const int size = remaining >= s->part_size ? s->part_size : remaining;
406
407             memset(block, 0, sizeof(*block) * s->fft_length);
408             memcpy(block, time + toffset, size * sizeof(*block));
409
410             av_rdft_calc(s->rdft[0], block);
411
412             coeff[coffset].re = block[0] * scale;
413             coeff[coffset].im = 0;
414             for (n = 1; n < s->part_size; n++) {
415                 coeff[coffset + n].re = block[2 * n] * scale;
416                 coeff[coffset + n].im = block[2 * n + 1] * scale;
417             }
418             coeff[coffset + s->part_size].re = block[1] * scale;
419             coeff[coffset + s->part_size].im = 0;
420         }
421     }
422
423     av_frame_free(&s->in[1]);
424     av_log(ctx, AV_LOG_DEBUG, "nb_taps: %d\n", s->nb_taps);
425     av_log(ctx, AV_LOG_DEBUG, "nb_partitions: %d\n", s->nb_partitions);
426     av_log(ctx, AV_LOG_DEBUG, "partition size: %d\n", s->part_size);
427     av_log(ctx, AV_LOG_DEBUG, "fft_length: %d\n", s->fft_length);
428
429     s->have_coeffs = 1;
430
431     return 0;
432 }
433
434 static int check_ir(AVFilterLink *link, AVFrame *frame)
435 {
436     AVFilterContext *ctx = link->dst;
437     AudioFIRContext *s = ctx->priv;
438     int nb_taps, max_nb_taps;
439
440     nb_taps = ff_inlink_queued_samples(link);
441     max_nb_taps = s->max_ir_len * ctx->outputs[0]->sample_rate;
442     if (nb_taps > max_nb_taps) {
443         av_log(ctx, AV_LOG_ERROR, "Too big number of coefficients: %d > %d.\n", nb_taps, max_nb_taps);
444         return AVERROR(EINVAL);
445     }
446
447     return 0;
448 }
449
450 static int activate(AVFilterContext *ctx)
451 {
452     AudioFIRContext *s = ctx->priv;
453     AVFilterLink *outlink = ctx->outputs[0];
454     AVFrame *in = NULL;
455     int ret, status;
456     int64_t pts;
457
458     FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
459     if (s->response)
460         FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[1], ctx);
461     if (!s->eof_coeffs) {
462         AVFrame *ir = NULL;
463
464         ret = check_ir(ctx->inputs[1], ir);
465         if (ret < 0)
466             return ret;
467
468         if (ff_outlink_get_status(ctx->inputs[1]) == AVERROR_EOF)
469             s->eof_coeffs = 1;
470
471         if (!s->eof_coeffs) {
472             if (ff_outlink_frame_wanted(ctx->outputs[0]))
473                 ff_inlink_request_frame(ctx->inputs[1]);
474             else if (s->response && ff_outlink_frame_wanted(ctx->outputs[1]))
475                 ff_inlink_request_frame(ctx->inputs[1]);
476             return 0;
477         }
478     }
479
480     if (!s->have_coeffs && s->eof_coeffs) {
481         ret = convert_coeffs(ctx);
482         if (ret < 0)
483             return ret;
484     }
485
486     ret = ff_inlink_consume_samples(ctx->inputs[0], s->part_size, s->part_size, &in);
487     if (ret > 0)
488         ret = fir_frame(s, in, outlink);
489
490     if (ret < 0)
491         return ret;
492
493     if (s->response && s->have_coeffs) {
494         int64_t old_pts = s->video->pts;
495         int64_t new_pts = av_rescale_q(s->pts, ctx->inputs[0]->time_base, ctx->outputs[1]->time_base);
496
497         if (ff_outlink_frame_wanted(ctx->outputs[1]) && old_pts < new_pts) {
498             s->video->pts = new_pts;
499             return ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video));
500         }
501     }
502
503     if (ff_inlink_queued_samples(ctx->inputs[0]) >= s->part_size) {
504         ff_filter_set_ready(ctx, 10);
505         return 0;
506     }
507
508     if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
509         if (status == AVERROR_EOF) {
510             ff_outlink_set_status(ctx->outputs[0], status, pts);
511             if (s->response)
512                 ff_outlink_set_status(ctx->outputs[1], status, pts);
513             return 0;
514         }
515     }
516
517     if (ff_outlink_frame_wanted(ctx->outputs[0]) &&
518         !ff_outlink_get_status(ctx->inputs[0])) {
519         ff_inlink_request_frame(ctx->inputs[0]);
520         return 0;
521     }
522
523     if (s->response &&
524         ff_outlink_frame_wanted(ctx->outputs[1]) &&
525         !ff_outlink_get_status(ctx->inputs[0])) {
526         ff_inlink_request_frame(ctx->inputs[0]);
527         return 0;
528     }
529
530     return FFERROR_NOT_READY;
531 }
532
533 static int query_formats(AVFilterContext *ctx)
534 {
535     AudioFIRContext *s = ctx->priv;
536     AVFilterFormats *formats;
537     AVFilterChannelLayouts *layouts;
538     static const enum AVSampleFormat sample_fmts[] = {
539         AV_SAMPLE_FMT_FLTP,
540         AV_SAMPLE_FMT_NONE
541     };
542     static const enum AVPixelFormat pix_fmts[] = {
543         AV_PIX_FMT_RGB0,
544         AV_PIX_FMT_NONE
545     };
546     int ret;
547
548     if (s->response) {
549         AVFilterLink *videolink = ctx->outputs[1];
550         formats = ff_make_format_list(pix_fmts);
551         if ((ret = ff_formats_ref(formats, &videolink->in_formats)) < 0)
552             return ret;
553     }
554
555     layouts = ff_all_channel_counts();
556     if (!layouts)
557         return AVERROR(ENOMEM);
558
559     if (s->ir_format) {
560         ret = ff_set_common_channel_layouts(ctx, layouts);
561         if (ret < 0)
562             return ret;
563     } else {
564         AVFilterChannelLayouts *mono = NULL;
565
566         ret = ff_add_channel_layout(&mono, AV_CH_LAYOUT_MONO);
567         if (ret)
568             return ret;
569
570         if ((ret = ff_channel_layouts_ref(layouts, &ctx->inputs[0]->out_channel_layouts)) < 0)
571             return ret;
572         if ((ret = ff_channel_layouts_ref(layouts, &ctx->outputs[0]->in_channel_layouts)) < 0)
573             return ret;
574         if ((ret = ff_channel_layouts_ref(mono, &ctx->inputs[1]->out_channel_layouts)) < 0)
575             return ret;
576     }
577
578     formats = ff_make_format_list(sample_fmts);
579     if ((ret = ff_set_common_formats(ctx, formats)) < 0)
580         return ret;
581
582     formats = ff_all_samplerates();
583     return ff_set_common_samplerates(ctx, formats);
584 }
585
586 static int config_output(AVFilterLink *outlink)
587 {
588     AVFilterContext *ctx = outlink->src;
589     AudioFIRContext *s = ctx->priv;
590
591     s->one2many = ctx->inputs[1]->channels == 1;
592     outlink->sample_rate = ctx->inputs[0]->sample_rate;
593     outlink->time_base   = ctx->inputs[0]->time_base;
594     outlink->channel_layout = ctx->inputs[0]->channel_layout;
595     outlink->channels = ctx->inputs[0]->channels;
596
597     s->sum = av_calloc(outlink->channels, sizeof(*s->sum));
598     s->coeff = av_calloc(ctx->inputs[1]->channels, sizeof(*s->coeff));
599     s->block = av_calloc(ctx->inputs[0]->channels, sizeof(*s->block));
600     s->rdft = av_calloc(outlink->channels, sizeof(*s->rdft));
601     s->irdft = av_calloc(outlink->channels, sizeof(*s->irdft));
602     if (!s->sum || !s->coeff || !s->block || !s->rdft || !s->irdft)
603         return AVERROR(ENOMEM);
604
605     s->nb_channels = outlink->channels;
606     s->nb_coef_channels = ctx->inputs[1]->channels;
607     s->pts = AV_NOPTS_VALUE;
608
609     return 0;
610 }
611
612 static av_cold void uninit(AVFilterContext *ctx)
613 {
614     AudioFIRContext *s = ctx->priv;
615     int ch;
616
617     if (s->sum) {
618         for (ch = 0; ch < s->nb_channels; ch++) {
619             av_freep(&s->sum[ch]);
620         }
621     }
622     av_freep(&s->sum);
623
624     if (s->coeff) {
625         for (ch = 0; ch < s->nb_coef_channels; ch++) {
626             av_freep(&s->coeff[ch]);
627         }
628     }
629     av_freep(&s->coeff);
630
631     if (s->block) {
632         for (ch = 0; ch < s->nb_channels; ch++) {
633             av_freep(&s->block[ch]);
634         }
635     }
636     av_freep(&s->block);
637
638     if (s->rdft) {
639         for (ch = 0; ch < s->nb_channels; ch++) {
640             av_rdft_end(s->rdft[ch]);
641         }
642     }
643     av_freep(&s->rdft);
644
645     if (s->irdft) {
646         for (ch = 0; ch < s->nb_channels; ch++) {
647             av_rdft_end(s->irdft[ch]);
648         }
649     }
650     av_freep(&s->irdft);
651
652     av_frame_free(&s->in[1]);
653     av_frame_free(&s->buffer);
654
655     av_freep(&s->fdsp);
656
657     for (int i = 0; i < ctx->nb_outputs; i++)
658         av_freep(&ctx->output_pads[i].name);
659     av_frame_free(&s->video);
660 }
661
662 static int config_video(AVFilterLink *outlink)
663 {
664     AVFilterContext *ctx = outlink->src;
665     AudioFIRContext *s = ctx->priv;
666
667     outlink->sample_aspect_ratio = (AVRational){1,1};
668     outlink->w = s->w;
669     outlink->h = s->h;
670     outlink->frame_rate = s->frame_rate;
671     outlink->time_base = av_inv_q(outlink->frame_rate);
672
673     av_frame_free(&s->video);
674     s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h);
675     if (!s->video)
676         return AVERROR(ENOMEM);
677
678     return 0;
679 }
680
681 static av_cold int init(AVFilterContext *ctx)
682 {
683     AudioFIRContext *s = ctx->priv;
684     AVFilterPad pad, vpad;
685     int ret;
686
687     pad = (AVFilterPad){
688         .name          = av_strdup("default"),
689         .type          = AVMEDIA_TYPE_AUDIO,
690         .config_props  = config_output,
691     };
692
693     if (!pad.name)
694         return AVERROR(ENOMEM);
695
696     if (s->response) {
697         vpad = (AVFilterPad){
698             .name         = av_strdup("filter_response"),
699             .type         = AVMEDIA_TYPE_VIDEO,
700             .config_props = config_video,
701         };
702         if (!vpad.name)
703             return AVERROR(ENOMEM);
704     }
705
706     ret = ff_insert_outpad(ctx, 0, &pad);
707     if (ret < 0) {
708         av_freep(&pad.name);
709         return ret;
710     }
711
712     if (s->response) {
713         ret = ff_insert_outpad(ctx, 1, &vpad);
714         if (ret < 0) {
715             av_freep(&vpad.name);
716             return ret;
717         }
718     }
719
720     s->fcmul_add = fcmul_add_c;
721
722     s->fdsp = avpriv_float_dsp_alloc(0);
723     if (!s->fdsp)
724         return AVERROR(ENOMEM);
725
726     if (ARCH_X86)
727         ff_afir_init_x86(s);
728
729     return 0;
730 }
731
732 static const AVFilterPad afir_inputs[] = {
733     {
734         .name           = "main",
735         .type           = AVMEDIA_TYPE_AUDIO,
736     },{
737         .name           = "ir",
738         .type           = AVMEDIA_TYPE_AUDIO,
739     },
740     { NULL }
741 };
742
743 #define AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
744 #define VF AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
745 #define OFFSET(x) offsetof(AudioFIRContext, x)
746
747 static const AVOption afir_options[] = {
748     { "dry",    "set dry gain",      OFFSET(dry_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
749     { "wet",    "set wet gain",      OFFSET(wet_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
750     { "length", "set IR length",     OFFSET(length),     AV_OPT_TYPE_FLOAT, {.dbl=1},    0,  1, AF },
751     { "gtype",  "set IR auto gain type",OFFSET(gtype),   AV_OPT_TYPE_INT,   {.i64=0},   -1,  2, AF, "gtype" },
752     {  "none",  "without auto gain", 0,                  AV_OPT_TYPE_CONST, {.i64=-1},   0,  0, AF, "gtype" },
753     {  "peak",  "peak gain",         0,                  AV_OPT_TYPE_CONST, {.i64=0},    0,  0, AF, "gtype" },
754     {  "dc",    "DC gain",           0,                  AV_OPT_TYPE_CONST, {.i64=1},    0,  0, AF, "gtype" },
755     {  "gn",    "gain to noise",     0,                  AV_OPT_TYPE_CONST, {.i64=2},    0,  0, AF, "gtype" },
756     { "irgain", "set IR gain",       OFFSET(ir_gain),    AV_OPT_TYPE_FLOAT, {.dbl=1},    0,  1, AF },
757     { "irfmt",  "set IR format",     OFFSET(ir_format),  AV_OPT_TYPE_INT,   {.i64=1},    0,  1, AF, "irfmt" },
758     {  "mono",  "single channel",    0,                  AV_OPT_TYPE_CONST, {.i64=0},    0,  0, AF, "irfmt" },
759     {  "input", "same as input",     0,                  AV_OPT_TYPE_CONST, {.i64=1},    0,  0, AF, "irfmt" },
760     { "maxir",  "set max IR length", OFFSET(max_ir_len), AV_OPT_TYPE_FLOAT, {.dbl=30}, 0.1, 60, AF },
761     { "response", "show IR frequency response", OFFSET(response), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, VF },
762     { "channel", "set IR channel to display frequency response", OFFSET(ir_channel), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, VF },
763     { "size",   "set video size",    OFFSET(w),          AV_OPT_TYPE_IMAGE_SIZE, {.str = "hd720"}, 0, 0, VF },
764     { "rate",   "set video rate",    OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT32_MAX, VF },
765     { "minp",   "set min partition size", OFFSET(minp),  AV_OPT_TYPE_INT,   {.i64=16},    16, 65536, AF },
766     { "maxp",   "set max partition size", OFFSET(maxp),  AV_OPT_TYPE_INT,   {.i64=65536}, 16, 65536, AF },
767     { NULL }
768 };
769
770 AVFILTER_DEFINE_CLASS(afir);
771
772 AVFilter ff_af_afir = {
773     .name          = "afir",
774     .description   = NULL_IF_CONFIG_SMALL("Apply Finite Impulse Response filter with supplied coefficients in 2nd stream."),
775     .priv_size     = sizeof(AudioFIRContext),
776     .priv_class    = &afir_class,
777     .query_formats = query_formats,
778     .init          = init,
779     .activate      = activate,
780     .uninit        = uninit,
781     .inputs        = afir_inputs,
782     .flags         = AVFILTER_FLAG_DYNAMIC_OUTPUTS |
783                      AVFILTER_FLAG_SLICE_THREADS,
784 };