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