You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

784 lines
23KB

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