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