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.

200 lines
7.5KB

  1. /*
  2. * Copyright (c) 2018 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 License
  8. * 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
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  18. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/opt.h"
  21. #include "audio.h"
  22. #include "avfilter.h"
  23. #include "internal.h"
  24. #include "window_func.h"
  25. typedef struct HilbertContext {
  26. const AVClass *class;
  27. int sample_rate;
  28. int nb_taps;
  29. int nb_samples;
  30. int win_func;
  31. float *taps;
  32. int64_t pts;
  33. } HilbertContext;
  34. #define OFFSET(x) offsetof(HilbertContext, x)
  35. #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  36. static const AVOption hilbert_options[] = {
  37. { "sample_rate", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64=44100}, 1, INT_MAX, FLAGS },
  38. { "r", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64=44100}, 1, INT_MAX, FLAGS },
  39. { "taps", "set number of taps", OFFSET(nb_taps), AV_OPT_TYPE_INT, {.i64=22051}, 11, UINT16_MAX, FLAGS },
  40. { "t", "set number of taps", OFFSET(nb_taps), AV_OPT_TYPE_INT, {.i64=22051}, 11, UINT16_MAX, FLAGS },
  41. { "nb_samples", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
  42. { "n", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
  43. { "win_func", "set window function", OFFSET(win_func), AV_OPT_TYPE_INT, {.i64=WFUNC_BLACKMAN}, 0, NB_WFUNC-1, FLAGS, "win_func" },
  44. { "w", "set window function", OFFSET(win_func), AV_OPT_TYPE_INT, {.i64=WFUNC_BLACKMAN}, 0, NB_WFUNC-1, FLAGS, "win_func" },
  45. { "rect", "Rectangular", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_RECT}, 0, 0, FLAGS, "win_func" },
  46. { "bartlett", "Bartlett", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BARTLETT}, 0, 0, FLAGS, "win_func" },
  47. { "hanning", "Hanning", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_HANNING}, 0, 0, FLAGS, "win_func" },
  48. { "hamming", "Hamming", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_HAMMING}, 0, 0, FLAGS, "win_func" },
  49. { "blackman", "Blackman", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BLACKMAN}, 0, 0, FLAGS, "win_func" },
  50. { "welch", "Welch", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_WELCH}, 0, 0, FLAGS, "win_func" },
  51. { "flattop", "Flat-top", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_FLATTOP}, 0, 0, FLAGS, "win_func" },
  52. { "bharris", "Blackman-Harris", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BHARRIS}, 0, 0, FLAGS, "win_func" },
  53. { "bnuttall", "Blackman-Nuttall", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BNUTTALL}, 0, 0, FLAGS, "win_func" },
  54. { "bhann", "Bartlett-Hann", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BHANN}, 0, 0, FLAGS, "win_func" },
  55. { "sine", "Sine", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_SINE}, 0, 0, FLAGS, "win_func" },
  56. { "nuttall", "Nuttall", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_NUTTALL}, 0, 0, FLAGS, "win_func" },
  57. { "lanczos", "Lanczos", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_LANCZOS}, 0, 0, FLAGS, "win_func" },
  58. { "gauss", "Gauss", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_GAUSS}, 0, 0, FLAGS, "win_func" },
  59. { "tukey", "Tukey", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_TUKEY}, 0, 0, FLAGS, "win_func" },
  60. { "dolph", "Dolph-Chebyshev", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_DOLPH}, 0, 0, FLAGS, "win_func" },
  61. { "cauchy", "Cauchy", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_CAUCHY}, 0, 0, FLAGS, "win_func" },
  62. { "parzen", "Parzen", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_PARZEN}, 0, 0, FLAGS, "win_func" },
  63. { "poisson", "Poisson", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_POISSON}, 0, 0, FLAGS, "win_func" },
  64. {NULL}
  65. };
  66. AVFILTER_DEFINE_CLASS(hilbert);
  67. static av_cold int init(AVFilterContext *ctx)
  68. {
  69. HilbertContext *s = ctx->priv;
  70. if (!(s->nb_taps & 1)) {
  71. av_log(s, AV_LOG_ERROR, "Number of taps %d must be odd length.\n", s->nb_taps);
  72. return AVERROR(EINVAL);
  73. }
  74. return 0;
  75. }
  76. static av_cold void uninit(AVFilterContext *ctx)
  77. {
  78. HilbertContext *s = ctx->priv;
  79. av_freep(&s->taps);
  80. }
  81. static av_cold int query_formats(AVFilterContext *ctx)
  82. {
  83. HilbertContext *s = ctx->priv;
  84. static const int64_t chlayouts[] = { AV_CH_LAYOUT_MONO, -1 };
  85. int sample_rates[] = { s->sample_rate, -1 };
  86. static const enum AVSampleFormat sample_fmts[] = {
  87. AV_SAMPLE_FMT_FLT,
  88. AV_SAMPLE_FMT_NONE
  89. };
  90. AVFilterFormats *formats;
  91. AVFilterChannelLayouts *layouts;
  92. int ret;
  93. formats = ff_make_format_list(sample_fmts);
  94. if (!formats)
  95. return AVERROR(ENOMEM);
  96. ret = ff_set_common_formats (ctx, formats);
  97. if (ret < 0)
  98. return ret;
  99. layouts = avfilter_make_format64_list(chlayouts);
  100. if (!layouts)
  101. return AVERROR(ENOMEM);
  102. ret = ff_set_common_channel_layouts(ctx, layouts);
  103. if (ret < 0)
  104. return ret;
  105. formats = ff_make_format_list(sample_rates);
  106. if (!formats)
  107. return AVERROR(ENOMEM);
  108. return ff_set_common_samplerates(ctx, formats);
  109. }
  110. static av_cold int config_props(AVFilterLink *outlink)
  111. {
  112. AVFilterContext *ctx = outlink->src;
  113. HilbertContext *s = ctx->priv;
  114. float overlap;
  115. int i;
  116. s->taps = av_malloc_array(s->nb_taps, sizeof(*s->taps));
  117. if (!s->taps)
  118. return AVERROR(ENOMEM);
  119. generate_window_func(s->taps, s->nb_taps, s->win_func, &overlap);
  120. for (i = 0; i < s->nb_taps; i++) {
  121. int k = -(s->nb_taps / 2) + i;
  122. if (k & 1) {
  123. float pk = M_PI * k;
  124. s->taps[i] *= (1.f - cosf(pk)) / pk;
  125. } else {
  126. s->taps[i] = 0.f;
  127. }
  128. }
  129. s->pts = 0;
  130. return 0;
  131. }
  132. static int request_frame(AVFilterLink *outlink)
  133. {
  134. AVFilterContext *ctx = outlink->src;
  135. HilbertContext *s = ctx->priv;
  136. AVFrame *frame;
  137. int nb_samples;
  138. nb_samples = FFMIN(s->nb_samples, s->nb_taps - s->pts);
  139. if (!nb_samples)
  140. return AVERROR_EOF;
  141. if (!(frame = ff_get_audio_buffer(outlink, nb_samples)))
  142. return AVERROR(ENOMEM);
  143. memcpy(frame->data[0], s->taps + s->pts, nb_samples * sizeof(float));
  144. frame->pts = s->pts;
  145. s->pts += nb_samples;
  146. return ff_filter_frame(outlink, frame);
  147. }
  148. static const AVFilterPad hilbert_outputs[] = {
  149. {
  150. .name = "default",
  151. .type = AVMEDIA_TYPE_AUDIO,
  152. .request_frame = request_frame,
  153. .config_props = config_props,
  154. },
  155. { NULL }
  156. };
  157. AVFilter ff_asrc_hilbert = {
  158. .name = "hilbert",
  159. .description = NULL_IF_CONFIG_SMALL("Generate a Hilbert transform FIR coefficients."),
  160. .query_formats = query_formats,
  161. .init = init,
  162. .uninit = uninit,
  163. .priv_size = sizeof(HilbertContext),
  164. .inputs = NULL,
  165. .outputs = hilbert_outputs,
  166. .priv_class = &hilbert_class,
  167. };