]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_afir.c
avfilter/af_afir: switch to activate
[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
284     s->nb_taps = av_audio_fifo_size(s->fifo);
285     if (s->nb_taps <= 0)
286         return AVERROR(EINVAL);
287
288     for (n = 4; (1 << n) < s->nb_taps; n++);
289     N = FFMIN(n, 16);
290     s->ir_length = 1 << n;
291     s->fft_length = (1 << (N + 1)) + 1;
292     s->part_size = 1 << (N - 1);
293     s->block_size = FFALIGN(s->fft_length, 32);
294     s->coeff_size = FFALIGN(s->part_size + 1, 32);
295     s->nb_partitions = (s->nb_taps + s->part_size - 1) / s->part_size;
296     s->nb_coeffs = s->ir_length + s->nb_partitions;
297
298     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
299         s->sum[ch] = av_calloc(s->fft_length, sizeof(**s->sum));
300         if (!s->sum[ch])
301             return AVERROR(ENOMEM);
302     }
303
304     for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
305         s->coeff[ch] = av_calloc(s->nb_partitions * s->coeff_size, sizeof(**s->coeff));
306         if (!s->coeff[ch])
307             return AVERROR(ENOMEM);
308     }
309
310     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
311         s->block[ch] = av_calloc(s->nb_partitions * s->block_size, sizeof(**s->block));
312         if (!s->block[ch])
313             return AVERROR(ENOMEM);
314     }
315
316     for (ch = 0; ch < ctx->inputs[0]->channels; ch++) {
317         s->rdft[ch]  = av_rdft_init(N, DFT_R2C);
318         s->irdft[ch] = av_rdft_init(N, IDFT_C2R);
319         if (!s->rdft[ch] || !s->irdft[ch])
320             return AVERROR(ENOMEM);
321     }
322
323     s->in[1] = ff_get_audio_buffer(ctx->inputs[1], s->nb_taps);
324     if (!s->in[1])
325         return AVERROR(ENOMEM);
326
327     s->buffer = ff_get_audio_buffer(ctx->inputs[0], s->part_size * 3);
328     if (!s->buffer)
329         return AVERROR(ENOMEM);
330
331     av_audio_fifo_read(s->fifo, (void **)s->in[1]->extended_data, s->nb_taps);
332
333     if (s->response)
334         draw_response(ctx, s->video);
335
336     if (s->again) {
337         float power = 0;
338
339         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
340             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
341
342             for (i = 0; i < s->nb_taps; i++)
343                 power += FFABS(time[i]);
344         }
345
346         s->gain = sqrtf(1.f / (ctx->inputs[1]->channels * power)) / (sqrtf(ctx->inputs[1]->channels));
347         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
348             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
349
350             s->fdsp->vector_fmul_scalar(time, time, s->gain, FFALIGN(s->nb_taps, 4));
351         }
352     }
353
354     for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
355         float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
356         float *block = s->block[ch];
357         FFTComplex *coeff = s->coeff[ch];
358
359         for (i = FFMAX(1, s->length * s->nb_taps); i < s->nb_taps; i++)
360             time[i] = 0;
361
362         for (i = 0; i < s->nb_partitions; i++) {
363             const float scale = 1.f / s->part_size;
364             const int toffset = i * s->part_size;
365             const int coffset = i * s->coeff_size;
366             const int boffset = s->part_size;
367             const int remaining = s->nb_taps - (i * s->part_size);
368             const int size = remaining >= s->part_size ? s->part_size : remaining;
369
370             memset(block, 0, sizeof(*block) * s->fft_length);
371             memcpy(block + boffset, time + toffset, size * sizeof(*block));
372
373             av_rdft_calc(s->rdft[0], block);
374
375             coeff[coffset].re = block[0] * scale;
376             coeff[coffset].im = 0;
377             for (n = 1; n < s->part_size; n++) {
378                 coeff[coffset + n].re = block[2 * n] * scale;
379                 coeff[coffset + n].im = block[2 * n + 1] * scale;
380             }
381             coeff[coffset + s->part_size].re = block[1] * scale;
382             coeff[coffset + s->part_size].im = 0;
383         }
384     }
385
386     av_frame_free(&s->in[1]);
387     av_log(ctx, AV_LOG_DEBUG, "nb_taps: %d\n", s->nb_taps);
388     av_log(ctx, AV_LOG_DEBUG, "nb_partitions: %d\n", s->nb_partitions);
389     av_log(ctx, AV_LOG_DEBUG, "partition size: %d\n", s->part_size);
390     av_log(ctx, AV_LOG_DEBUG, "ir_length: %d\n", s->ir_length);
391
392     s->have_coeffs = 1;
393
394     return 0;
395 }
396
397 static int read_ir(AVFilterLink *link, AVFrame *frame)
398 {
399     AVFilterContext *ctx = link->dst;
400     AudioFIRContext *s = ctx->priv;
401     int nb_taps, max_nb_taps, ret;
402
403     ret = av_audio_fifo_write(s->fifo, (void **)frame->extended_data,
404                              frame->nb_samples);
405     av_frame_free(&frame);
406     if (ret < 0)
407         return ret;
408
409     nb_taps = av_audio_fifo_size(s->fifo);
410     max_nb_taps = s->max_ir_len * ctx->outputs[0]->sample_rate;
411     if (nb_taps > max_nb_taps) {
412         av_log(ctx, AV_LOG_ERROR, "Too big number of coefficients: %d > %d.\n", nb_taps, max_nb_taps);
413         return AVERROR(EINVAL);
414     }
415
416     return 0;
417 }
418
419 static int activate(AVFilterContext *ctx)
420 {
421     AudioFIRContext *s = ctx->priv;
422     AVFilterLink *outlink = ctx->outputs[0];
423     AVFrame *in = NULL;
424     int ret, status;
425     int64_t pts;
426
427     FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
428     if (s->response)
429         FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[1], ctx);
430     if (!s->eof_coeffs) {
431         AVFrame *ir = NULL;
432
433         if ((ret = ff_inlink_consume_frame(ctx->inputs[1], &ir)) > 0) {
434             ret = read_ir(ctx->inputs[1], ir);
435             if (ret < 0)
436                 return ret;
437         }
438         if (ret < 0)
439             return ret;
440
441         if (ff_inlink_acknowledge_status(ctx->inputs[1], &status, &pts)) {
442             if (status == AVERROR_EOF) {
443                 s->eof_coeffs = 1;
444             }
445         }
446
447         if (!s->eof_coeffs) {
448             if (ff_outlink_frame_wanted(ctx->outputs[0]))
449                 ff_inlink_request_frame(ctx->inputs[1]);
450             return 0;
451         }
452     }
453
454     if (!s->have_coeffs && s->eof_coeffs) {
455         ret = convert_coeffs(ctx);
456         if (ret < 0)
457             return ret;
458     }
459
460     if (s->need_padding) {
461         in = ff_get_audio_buffer(outlink, s->part_size);
462         if (!in)
463             return AVERROR(ENOMEM);
464         s->need_padding = 0;
465         ret = 1;
466     } else {
467         ret = ff_inlink_consume_samples(ctx->inputs[0], s->part_size, s->part_size, &in);
468     }
469
470     if (ret > 0) {
471         ret = fir_frame(s, in, outlink);
472         if (ret < 0)
473             return ret;
474     }
475
476     if (ret < 0)
477         return ret;
478
479     if (s->response && s->have_coeffs) {
480         if (ff_outlink_frame_wanted(ctx->outputs[1])) {
481             s->video->pts = s->pts;
482             ret = ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video));
483             if (ret < 0)
484                 return ret;
485         }
486     }
487
488     if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
489         if (status == AVERROR_EOF) {
490             ff_outlink_set_status(ctx->outputs[0], status, pts);
491             if (s->response)
492                 ff_outlink_set_status(ctx->outputs[1], status, pts);
493             return 0;
494         }
495     }
496
497     if (ff_outlink_frame_wanted(ctx->outputs[0])) {
498         ff_inlink_request_frame(ctx->inputs[0]);
499         return 0;
500     }
501
502     if (s->response && ff_outlink_frame_wanted(ctx->outputs[1])) {
503         ff_inlink_request_frame(ctx->inputs[0]);
504         return 0;
505     }
506
507     return 0;
508 }
509
510 static int query_formats(AVFilterContext *ctx)
511 {
512     AudioFIRContext *s = ctx->priv;
513     AVFilterFormats *formats;
514     AVFilterChannelLayouts *layouts;
515     static const enum AVSampleFormat sample_fmts[] = {
516         AV_SAMPLE_FMT_FLTP,
517         AV_SAMPLE_FMT_NONE
518     };
519     static const enum AVPixelFormat pix_fmts[] = {
520         AV_PIX_FMT_RGB0,
521         AV_PIX_FMT_NONE
522     };
523     int ret, i;
524
525     if (s->response) {
526         AVFilterLink *videolink = ctx->outputs[1];
527         formats = ff_make_format_list(pix_fmts);
528         if ((ret = ff_formats_ref(formats, &videolink->in_formats)) < 0)
529             return ret;
530     }
531
532     layouts = ff_all_channel_counts();
533     if ((ret = ff_channel_layouts_ref(layouts, &ctx->outputs[0]->in_channel_layouts)) < 0)
534         return ret;
535
536     for (i = 0; i < 2; i++) {
537         layouts = ff_all_channel_counts();
538         if ((ret = ff_channel_layouts_ref(layouts, &ctx->inputs[i]->out_channel_layouts)) < 0)
539             return ret;
540     }
541
542     formats = ff_make_format_list(sample_fmts);
543     if ((ret = ff_set_common_formats(ctx, formats)) < 0)
544         return ret;
545
546     formats = ff_all_samplerates();
547     return ff_set_common_samplerates(ctx, formats);
548 }
549
550 static int config_output(AVFilterLink *outlink)
551 {
552     AVFilterContext *ctx = outlink->src;
553     AudioFIRContext *s = ctx->priv;
554
555     if (ctx->inputs[0]->channels != ctx->inputs[1]->channels &&
556         ctx->inputs[1]->channels != 1) {
557         av_log(ctx, AV_LOG_ERROR,
558                "Second input must have same number of channels as first input or "
559                "exactly 1 channel.\n");
560         return AVERROR(EINVAL);
561     }
562
563     s->one2many = ctx->inputs[1]->channels == 1;
564     outlink->sample_rate = ctx->inputs[0]->sample_rate;
565     outlink->time_base   = ctx->inputs[0]->time_base;
566     outlink->channel_layout = ctx->inputs[0]->channel_layout;
567     outlink->channels = ctx->inputs[0]->channels;
568
569     s->fifo = av_audio_fifo_alloc(ctx->inputs[1]->format, ctx->inputs[1]->channels, 1024);
570     if (!s->fifo)
571         return AVERROR(ENOMEM);
572
573     s->sum = av_calloc(outlink->channels, sizeof(*s->sum));
574     s->coeff = av_calloc(ctx->inputs[1]->channels, sizeof(*s->coeff));
575     s->block = av_calloc(ctx->inputs[0]->channels, sizeof(*s->block));
576     s->rdft = av_calloc(outlink->channels, sizeof(*s->rdft));
577     s->irdft = av_calloc(outlink->channels, sizeof(*s->irdft));
578     if (!s->sum || !s->coeff || !s->block || !s->rdft || !s->irdft)
579         return AVERROR(ENOMEM);
580
581     s->nb_channels = outlink->channels;
582     s->nb_coef_channels = ctx->inputs[1]->channels;
583     s->want_skip = 1;
584     s->need_padding = 1;
585     s->pts = AV_NOPTS_VALUE;
586
587     return 0;
588 }
589
590 static av_cold void uninit(AVFilterContext *ctx)
591 {
592     AudioFIRContext *s = ctx->priv;
593     int ch;
594
595     if (s->sum) {
596         for (ch = 0; ch < s->nb_channels; ch++) {
597             av_freep(&s->sum[ch]);
598         }
599     }
600     av_freep(&s->sum);
601
602     if (s->coeff) {
603         for (ch = 0; ch < s->nb_coef_channels; ch++) {
604             av_freep(&s->coeff[ch]);
605         }
606     }
607     av_freep(&s->coeff);
608
609     if (s->block) {
610         for (ch = 0; ch < s->nb_channels; ch++) {
611             av_freep(&s->block[ch]);
612         }
613     }
614     av_freep(&s->block);
615
616     if (s->rdft) {
617         for (ch = 0; ch < s->nb_channels; ch++) {
618             av_rdft_end(s->rdft[ch]);
619         }
620     }
621     av_freep(&s->rdft);
622
623     if (s->irdft) {
624         for (ch = 0; ch < s->nb_channels; ch++) {
625             av_rdft_end(s->irdft[ch]);
626         }
627     }
628     av_freep(&s->irdft);
629
630     av_frame_free(&s->in[1]);
631     av_frame_free(&s->buffer);
632
633     av_audio_fifo_free(s->fifo);
634
635     av_freep(&s->fdsp);
636
637     for (int i = 0; i < ctx->nb_outputs; i++)
638         av_freep(&ctx->output_pads[i].name);
639     av_frame_free(&s->video);
640 }
641
642 static int config_video(AVFilterLink *outlink)
643 {
644     AVFilterContext *ctx = outlink->src;
645     AudioFIRContext *s = ctx->priv;
646
647     outlink->sample_aspect_ratio = (AVRational){1,1};
648     outlink->w = s->w;
649     outlink->h = s->h;
650
651     av_frame_free(&s->video);
652     s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h);
653     if (!s->video)
654         return AVERROR(ENOMEM);
655
656     return 0;
657 }
658
659 static av_cold int init(AVFilterContext *ctx)
660 {
661     AudioFIRContext *s = ctx->priv;
662     AVFilterPad pad, vpad;
663     int ret;
664
665     pad = (AVFilterPad){
666         .name          = av_strdup("default"),
667         .type          = AVMEDIA_TYPE_AUDIO,
668         .config_props  = config_output,
669     };
670
671     if (!pad.name)
672         return AVERROR(ENOMEM);
673
674     if (s->response) {
675         vpad = (AVFilterPad){
676             .name         = av_strdup("filter_response"),
677             .type         = AVMEDIA_TYPE_VIDEO,
678             .config_props = config_video,
679         };
680         if (!vpad.name)
681             return AVERROR(ENOMEM);
682     }
683
684     ret = ff_insert_outpad(ctx, 0, &pad);
685     if (ret < 0) {
686         av_freep(&pad.name);
687         return ret;
688     }
689
690     if (s->response) {
691         ret = ff_insert_outpad(ctx, 1, &vpad);
692         if (ret < 0) {
693             av_freep(&vpad.name);
694             return ret;
695         }
696     }
697
698     s->fcmul_add = fcmul_add_c;
699
700     s->fdsp = avpriv_float_dsp_alloc(0);
701     if (!s->fdsp)
702         return AVERROR(ENOMEM);
703
704     if (ARCH_X86)
705         ff_afir_init_x86(s);
706
707     return 0;
708 }
709
710 static const AVFilterPad afir_inputs[] = {
711     {
712         .name           = "main",
713         .type           = AVMEDIA_TYPE_AUDIO,
714     },{
715         .name           = "ir",
716         .type           = AVMEDIA_TYPE_AUDIO,
717     },
718     { NULL }
719 };
720
721 #define AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
722 #define VF AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
723 #define OFFSET(x) offsetof(AudioFIRContext, x)
724
725 static const AVOption afir_options[] = {
726     { "dry",    "set dry gain",      OFFSET(dry_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
727     { "wet",    "set wet gain",      OFFSET(wet_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
728     { "length", "set IR length",     OFFSET(length),     AV_OPT_TYPE_FLOAT, {.dbl=1},    0,  1, AF },
729     { "again",  "enable auto gain",  OFFSET(again),      AV_OPT_TYPE_BOOL,  {.i64=1},    0,  1, AF },
730     { "maxir",  "set max IR length", OFFSET(max_ir_len), AV_OPT_TYPE_FLOAT, {.dbl=30}, 0.1, 60, AF },
731     { "response", "show IR frequency response", OFFSET(response), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, VF },
732     { "channel", "set IR channel to display frequency response", OFFSET(ir_channel), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, VF },
733     { "size",   "set video size",    OFFSET(w),          AV_OPT_TYPE_IMAGE_SIZE, {.str = "hd720"}, 0, 0, VF },
734     { NULL }
735 };
736
737 AVFILTER_DEFINE_CLASS(afir);
738
739 AVFilter ff_af_afir = {
740     .name          = "afir",
741     .description   = NULL_IF_CONFIG_SMALL("Apply Finite Impulse Response filter with supplied coefficients in 2nd stream."),
742     .priv_size     = sizeof(AudioFIRContext),
743     .priv_class    = &afir_class,
744     .query_formats = query_formats,
745     .init          = init,
746     .activate      = activate,
747     .uninit        = uninit,
748     .inputs        = afir_inputs,
749     .flags         = AVFILTER_FLAG_DYNAMIC_OUTPUTS |
750                      AVFILTER_FLAG_SLICE_THREADS,
751 };