]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_afir.c
avfilter/af_afir: remove again option, merge it with gtype
[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 + s->part_size, 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     int ret;
124
125     s->nb_samples = in->nb_samples;
126
127     if (!s->want_skip) {
128         out = ff_get_audio_buffer(outlink, s->nb_samples);
129         if (!out)
130             return AVERROR(ENOMEM);
131     }
132
133     if (s->pts == AV_NOPTS_VALUE)
134         s->pts = in->pts;
135     s->in[0] = in;
136     ctx->internal->execute(ctx, fir_channel, out, NULL, outlink->channels);
137
138     s->part_index = (s->part_index + 1) % s->nb_partitions;
139
140     if (!s->want_skip) {
141         out->pts = s->pts;
142         if (s->pts != AV_NOPTS_VALUE)
143             s->pts += av_rescale_q(out->nb_samples, (AVRational){1, outlink->sample_rate}, outlink->time_base);
144     }
145
146     s->index++;
147     if (s->index == 3)
148         s->index = 0;
149
150     av_frame_free(&in);
151
152     if (s->want_skip == 1) {
153         s->want_skip = 0;
154         ret = 0;
155     } else {
156         ret = ff_filter_frame(outlink, out);
157     }
158
159     return ret;
160 }
161
162 static void drawtext(AVFrame *pic, int x, int y, const char *txt, uint32_t color)
163 {
164     const uint8_t *font;
165     int font_height;
166     int i;
167
168     font = avpriv_cga_font, font_height = 8;
169
170     for (i = 0; txt[i]; i++) {
171         int char_y, mask;
172
173         uint8_t *p = pic->data[0] + y * pic->linesize[0] + (x + i * 8) * 4;
174         for (char_y = 0; char_y < font_height; char_y++) {
175             for (mask = 0x80; mask; mask >>= 1) {
176                 if (font[txt[i] * font_height + char_y] & mask)
177                     AV_WL32(p, color);
178                 p += 4;
179             }
180             p += pic->linesize[0] - 8 * 4;
181         }
182     }
183 }
184
185 static void draw_line(AVFrame *out, int x0, int y0, int x1, int y1, uint32_t color)
186 {
187     int dx = FFABS(x1-x0);
188     int dy = FFABS(y1-y0), sy = y0 < y1 ? 1 : -1;
189     int err = (dx>dy ? dx : -dy) / 2, e2;
190
191     for (;;) {
192         AV_WL32(out->data[0] + y0 * out->linesize[0] + x0 * 4, color);
193
194         if (x0 == x1 && y0 == y1)
195             break;
196
197         e2 = err;
198
199         if (e2 >-dx) {
200             err -= dy;
201             x0--;
202         }
203
204         if (e2 < dy) {
205             err += dx;
206             y0 += sy;
207         }
208     }
209 }
210
211 static void draw_response(AVFilterContext *ctx, AVFrame *out)
212 {
213     AudioFIRContext *s = ctx->priv;
214     float *mag, *phase, min = FLT_MAX, max = FLT_MIN;
215     int prev_ymag = -1, prev_yphase = -1;
216     char text[32];
217     int channel, i, x;
218
219     memset(out->data[0], 0, s->h * out->linesize[0]);
220
221     phase = av_malloc_array(s->w, sizeof(*phase));
222     mag = av_malloc_array(s->w, sizeof(*mag));
223     if (!mag || !phase)
224         goto end;
225
226     channel = av_clip(s->ir_channel, 0, s->in[1]->channels - 1);
227     for (i = 0; i < s->w; i++) {
228         const float *src = (const float *)s->in[1]->extended_data[channel];
229         double w = i * M_PI / (s->w - 1);
230         double real = 0.;
231         double imag = 0.;
232
233         for (x = 0; x < s->nb_taps; x++) {
234             real += cos(-x * w) * src[x];
235             imag += sin(-x * w) * src[x];
236         }
237
238         mag[i] = hypot(real, imag);
239         phase[i] = atan2(imag, real);
240         min = fminf(min, mag[i]);
241         max = fmaxf(max, mag[i]);
242     }
243
244     for (i = 0; i < s->w; i++) {
245         int ymag = mag[i] / max * (s->h - 1);
246         int yphase = (0.5 * (1. + phase[i] / M_PI)) * (s->h - 1);
247
248         ymag = s->h - 1 - av_clip(ymag, 0, s->h - 1);
249         yphase = s->h - 1 - av_clip(yphase, 0, s->h - 1);
250
251         if (prev_ymag < 0)
252             prev_ymag = ymag;
253         if (prev_yphase < 0)
254             prev_yphase = yphase;
255
256         draw_line(out, i,   ymag, FFMAX(i - 1, 0),   prev_ymag, 0xFFFF00FF);
257         draw_line(out, i, yphase, FFMAX(i - 1, 0), prev_yphase, 0xFF00FF00);
258
259         prev_ymag   = ymag;
260         prev_yphase = yphase;
261     }
262
263     if (s->w > 400 && s->h > 100) {
264         drawtext(out, 2, 2, "Max Magnitude:", 0xDDDDDDDD);
265         snprintf(text, sizeof(text), "%.2f", max);
266         drawtext(out, 15 * 8 + 2, 2, text, 0xDDDDDDDD);
267
268         drawtext(out, 2, 12, "Min Magnitude:", 0xDDDDDDDD);
269         snprintf(text, sizeof(text), "%.2f", min);
270         drawtext(out, 15 * 8 + 2, 12, text, 0xDDDDDDDD);
271     }
272
273 end:
274     av_free(phase);
275     av_free(mag);
276 }
277
278 static int convert_coeffs(AVFilterContext *ctx)
279 {
280     AudioFIRContext *s = ctx->priv;
281     int ret, i, ch, n, N;
282     float power = 0;
283
284     s->nb_taps = ff_inlink_queued_samples(ctx->inputs[1]);
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->buffer = ff_get_audio_buffer(ctx->inputs[0], s->part_size * 3);
324     if (!s->buffer)
325         return AVERROR(ENOMEM);
326
327     ret = ff_inlink_consume_samples(ctx->inputs[1], s->nb_taps, s->nb_taps, &s->in[1]);
328     if (ret < 0)
329         return ret;
330     if (ret == 0)
331         return AVERROR_BUG;
332
333     if (s->response)
334         draw_response(ctx, s->video);
335
336     s->gain = 1;
337
338     switch (s->gtype) {
339     case -1:
340         /* nothinkg to do */
341         break;
342     case 0:
343         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
344             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
345
346             for (i = 0; i < s->nb_taps; i++)
347                 power += FFABS(time[i]);
348         }
349         s->gain = ctx->inputs[1]->channels / power;
350         break;
351     case 1:
352         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
353             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
354
355             for (i = 0; i < s->nb_taps; i++)
356                 power += time[i];
357         }
358         s->gain = ctx->inputs[1]->channels / power;
359         break;
360     case 2:
361         for (ch = 0; ch < ctx->inputs[1]->channels; ch++) {
362             float *time = (float *)s->in[1]->extended_data[!s->one2many * ch];
363
364             for (i = 0; i < s->nb_taps; i++)
365                 power += time[i] * time[i];
366         }
367         s->gain = sqrtf(ch / power);
368         break;
369     default:
370         return AVERROR_BUG;
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 check_ir(AVFilterLink *link, AVFrame *frame)
425 {
426     AVFilterContext *ctx = link->dst;
427     AudioFIRContext *s = ctx->priv;
428     int nb_taps, max_nb_taps;
429
430     nb_taps = ff_inlink_queued_samples(link);
431     max_nb_taps = s->max_ir_len * ctx->outputs[0]->sample_rate;
432     if (nb_taps > max_nb_taps) {
433         av_log(ctx, AV_LOG_ERROR, "Too big number of coefficients: %d > %d.\n", nb_taps, max_nb_taps);
434         return AVERROR(EINVAL);
435     }
436
437     return 0;
438 }
439
440 static int activate(AVFilterContext *ctx)
441 {
442     AudioFIRContext *s = ctx->priv;
443     AVFilterLink *outlink = ctx->outputs[0];
444     AVFrame *in = NULL;
445     int ret, status;
446     int64_t pts;
447
448     FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
449     if (s->response)
450         FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[1], ctx);
451     if (!s->eof_coeffs) {
452         AVFrame *ir = NULL;
453
454         ret = check_ir(ctx->inputs[1], ir);
455         if (ret < 0)
456             return ret;
457
458         if (ff_outlink_get_status(ctx->inputs[1]) == AVERROR_EOF)
459             s->eof_coeffs = 1;
460
461         if (!s->eof_coeffs) {
462             if (ff_outlink_frame_wanted(ctx->outputs[0]))
463                 ff_inlink_request_frame(ctx->inputs[1]);
464             return 0;
465         }
466     }
467
468     if (!s->have_coeffs && s->eof_coeffs) {
469         ret = convert_coeffs(ctx);
470         if (ret < 0)
471             return ret;
472     }
473
474     if (s->need_padding) {
475         in = ff_get_audio_buffer(outlink, s->part_size);
476         if (!in)
477             return AVERROR(ENOMEM);
478         s->need_padding = 0;
479         ret = 1;
480     } else {
481         ret = ff_inlink_consume_samples(ctx->inputs[0], s->part_size, s->part_size, &in);
482     }
483
484     if (ret > 0) {
485         ret = fir_frame(s, in, outlink);
486         if (ret < 0)
487             return ret;
488     }
489
490     if (ret < 0)
491         return ret;
492
493     if (s->response && s->have_coeffs) {
494         if (ff_outlink_frame_wanted(ctx->outputs[1])) {
495             s->video->pts = s->pts;
496             ret = ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video));
497             if (ret < 0)
498                 return ret;
499         }
500     }
501
502     if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
503         if (status == AVERROR_EOF) {
504             ff_outlink_set_status(ctx->outputs[0], status, pts);
505             if (s->response)
506                 ff_outlink_set_status(ctx->outputs[1], status, pts);
507             return 0;
508         }
509     }
510
511     if (ff_outlink_frame_wanted(ctx->outputs[0])) {
512         ff_inlink_request_frame(ctx->inputs[0]);
513         return 0;
514     }
515
516     if (s->response && ff_outlink_frame_wanted(ctx->outputs[1])) {
517         ff_inlink_request_frame(ctx->inputs[0]);
518         return 0;
519     }
520
521     return 0;
522 }
523
524 static int query_formats(AVFilterContext *ctx)
525 {
526     AudioFIRContext *s = ctx->priv;
527     AVFilterFormats *formats;
528     AVFilterChannelLayouts *layouts;
529     static const enum AVSampleFormat sample_fmts[] = {
530         AV_SAMPLE_FMT_FLTP,
531         AV_SAMPLE_FMT_NONE
532     };
533     static const enum AVPixelFormat pix_fmts[] = {
534         AV_PIX_FMT_RGB0,
535         AV_PIX_FMT_NONE
536     };
537     int ret;
538
539     if (s->response) {
540         AVFilterLink *videolink = ctx->outputs[1];
541         formats = ff_make_format_list(pix_fmts);
542         if ((ret = ff_formats_ref(formats, &videolink->in_formats)) < 0)
543             return ret;
544     }
545
546     layouts = ff_all_channel_counts();
547     if (!layouts)
548         return AVERROR(ENOMEM);
549
550     if (s->ir_format) {
551         ret = ff_set_common_channel_layouts(ctx, layouts);
552         if (ret < 0)
553             return ret;
554     } else {
555         AVFilterChannelLayouts *mono = NULL;
556
557         ret = ff_add_channel_layout(&mono, AV_CH_LAYOUT_MONO);
558         if (ret)
559             return ret;
560
561         if ((ret = ff_channel_layouts_ref(layouts, &ctx->inputs[0]->out_channel_layouts)) < 0)
562             return ret;
563         if ((ret = ff_channel_layouts_ref(layouts, &ctx->outputs[0]->in_channel_layouts)) < 0)
564             return ret;
565         if ((ret = ff_channel_layouts_ref(mono, &ctx->inputs[1]->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     s->one2many = ctx->inputs[1]->channels == 1;
583     outlink->sample_rate = ctx->inputs[0]->sample_rate;
584     outlink->time_base   = ctx->inputs[0]->time_base;
585     outlink->channel_layout = ctx->inputs[0]->channel_layout;
586     outlink->channels = ctx->inputs[0]->channels;
587
588     s->sum = av_calloc(outlink->channels, sizeof(*s->sum));
589     s->coeff = av_calloc(ctx->inputs[1]->channels, sizeof(*s->coeff));
590     s->block = av_calloc(ctx->inputs[0]->channels, sizeof(*s->block));
591     s->rdft = av_calloc(outlink->channels, sizeof(*s->rdft));
592     s->irdft = av_calloc(outlink->channels, sizeof(*s->irdft));
593     if (!s->sum || !s->coeff || !s->block || !s->rdft || !s->irdft)
594         return AVERROR(ENOMEM);
595
596     s->nb_channels = outlink->channels;
597     s->nb_coef_channels = ctx->inputs[1]->channels;
598     s->want_skip = 1;
599     s->need_padding = 1;
600     s->pts = AV_NOPTS_VALUE;
601
602     return 0;
603 }
604
605 static av_cold void uninit(AVFilterContext *ctx)
606 {
607     AudioFIRContext *s = ctx->priv;
608     int ch;
609
610     if (s->sum) {
611         for (ch = 0; ch < s->nb_channels; ch++) {
612             av_freep(&s->sum[ch]);
613         }
614     }
615     av_freep(&s->sum);
616
617     if (s->coeff) {
618         for (ch = 0; ch < s->nb_coef_channels; ch++) {
619             av_freep(&s->coeff[ch]);
620         }
621     }
622     av_freep(&s->coeff);
623
624     if (s->block) {
625         for (ch = 0; ch < s->nb_channels; ch++) {
626             av_freep(&s->block[ch]);
627         }
628     }
629     av_freep(&s->block);
630
631     if (s->rdft) {
632         for (ch = 0; ch < s->nb_channels; ch++) {
633             av_rdft_end(s->rdft[ch]);
634         }
635     }
636     av_freep(&s->rdft);
637
638     if (s->irdft) {
639         for (ch = 0; ch < s->nb_channels; ch++) {
640             av_rdft_end(s->irdft[ch]);
641         }
642     }
643     av_freep(&s->irdft);
644
645     av_frame_free(&s->in[1]);
646     av_frame_free(&s->buffer);
647
648     av_freep(&s->fdsp);
649
650     for (int i = 0; i < ctx->nb_outputs; i++)
651         av_freep(&ctx->output_pads[i].name);
652     av_frame_free(&s->video);
653 }
654
655 static int config_video(AVFilterLink *outlink)
656 {
657     AVFilterContext *ctx = outlink->src;
658     AudioFIRContext *s = ctx->priv;
659
660     outlink->sample_aspect_ratio = (AVRational){1,1};
661     outlink->w = s->w;
662     outlink->h = s->h;
663
664     av_frame_free(&s->video);
665     s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h);
666     if (!s->video)
667         return AVERROR(ENOMEM);
668
669     return 0;
670 }
671
672 static av_cold int init(AVFilterContext *ctx)
673 {
674     AudioFIRContext *s = ctx->priv;
675     AVFilterPad pad, vpad;
676     int ret;
677
678     pad = (AVFilterPad){
679         .name          = av_strdup("default"),
680         .type          = AVMEDIA_TYPE_AUDIO,
681         .config_props  = config_output,
682     };
683
684     if (!pad.name)
685         return AVERROR(ENOMEM);
686
687     if (s->response) {
688         vpad = (AVFilterPad){
689             .name         = av_strdup("filter_response"),
690             .type         = AVMEDIA_TYPE_VIDEO,
691             .config_props = config_video,
692         };
693         if (!vpad.name)
694             return AVERROR(ENOMEM);
695     }
696
697     ret = ff_insert_outpad(ctx, 0, &pad);
698     if (ret < 0) {
699         av_freep(&pad.name);
700         return ret;
701     }
702
703     if (s->response) {
704         ret = ff_insert_outpad(ctx, 1, &vpad);
705         if (ret < 0) {
706             av_freep(&vpad.name);
707             return ret;
708         }
709     }
710
711     s->fcmul_add = fcmul_add_c;
712
713     s->fdsp = avpriv_float_dsp_alloc(0);
714     if (!s->fdsp)
715         return AVERROR(ENOMEM);
716
717     if (ARCH_X86)
718         ff_afir_init_x86(s);
719
720     return 0;
721 }
722
723 static const AVFilterPad afir_inputs[] = {
724     {
725         .name           = "main",
726         .type           = AVMEDIA_TYPE_AUDIO,
727     },{
728         .name           = "ir",
729         .type           = AVMEDIA_TYPE_AUDIO,
730     },
731     { NULL }
732 };
733
734 #define AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
735 #define VF AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
736 #define OFFSET(x) offsetof(AudioFIRContext, x)
737
738 static const AVOption afir_options[] = {
739     { "dry",    "set dry gain",      OFFSET(dry_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
740     { "wet",    "set wet gain",      OFFSET(wet_gain),   AV_OPT_TYPE_FLOAT, {.dbl=1},    0, 10, AF },
741     { "length", "set IR length",     OFFSET(length),     AV_OPT_TYPE_FLOAT, {.dbl=1},    0,  1, AF },
742     { "gtype",  "set IR auto gain type",OFFSET(gtype),   AV_OPT_TYPE_INT,   {.i64=0},   -1,  2, AF, "gtype" },
743     {  "none",  "without auto gain", 0,                  AV_OPT_TYPE_CONST, {.i64=-1},   0,  0, AF, "gtype" },
744     {  "peak",  "peak gain",         0,                  AV_OPT_TYPE_CONST, {.i64=0},    0,  0, AF, "gtype" },
745     {  "dc",    "DC gain",           0,                  AV_OPT_TYPE_CONST, {.i64=1},    0,  0, AF, "gtype" },
746     {  "gn",    "gain to noise",     0,                  AV_OPT_TYPE_CONST, {.i64=2},    0,  0, AF, "gtype" },
747     { "irgain", "set IR gain",       OFFSET(ir_gain),    AV_OPT_TYPE_FLOAT, {.dbl=1},    0,  1, AF },
748     { "irfmt",  "set IR format",     OFFSET(ir_format),  AV_OPT_TYPE_INT,   {.i64=1},    0,  1, AF, "irfmt" },
749     {  "mono",  "single channel",    0,                  AV_OPT_TYPE_CONST, {.i64=0},    0,  0, AF, "irfmt" },
750     {  "input", "same as input",     0,                  AV_OPT_TYPE_CONST, {.i64=1},    0,  0, AF, "irfmt" },
751     { "maxir",  "set max IR length", OFFSET(max_ir_len), AV_OPT_TYPE_FLOAT, {.dbl=30}, 0.1, 60, AF },
752     { "response", "show IR frequency response", OFFSET(response), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, VF },
753     { "channel", "set IR channel to display frequency response", OFFSET(ir_channel), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, VF },
754     { "size",   "set video size",    OFFSET(w),          AV_OPT_TYPE_IMAGE_SIZE, {.str = "hd720"}, 0, 0, VF },
755     { NULL }
756 };
757
758 AVFILTER_DEFINE_CLASS(afir);
759
760 AVFilter ff_af_afir = {
761     .name          = "afir",
762     .description   = NULL_IF_CONFIG_SMALL("Apply Finite Impulse Response filter with supplied coefficients in 2nd stream."),
763     .priv_size     = sizeof(AudioFIRContext),
764     .priv_class    = &afir_class,
765     .query_formats = query_formats,
766     .init          = init,
767     .activate      = activate,
768     .uninit        = uninit,
769     .inputs        = afir_inputs,
770     .flags         = AVFILTER_FLAG_DYNAMIC_OUTPUTS |
771                      AVFILTER_FLAG_SLICE_THREADS,
772 };