af_stereowiden.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * Copyright (C) 2012 VLC authors and VideoLAN
  3. * Author : Sukrit Sangwan < sukritsangwan at gmail dot com >
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/channel_layout.h"
  22. #include "libavutil/opt.h"
  23. #include "avfilter.h"
  24. #include "audio.h"
  25. #include "formats.h"
  26. typedef struct StereoWidenContext {
  27. const AVClass *class;
  28. float delay;
  29. float feedback;
  30. float crossfeed;
  31. float drymix;
  32. float *buffer;
  33. float *write;
  34. int length;
  35. } StereoWidenContext;
  36. #define OFFSET(x) offsetof(StereoWidenContext, x)
  37. #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  38. static const AVOption stereowiden_options[] = {
  39. { "delay", "set delay time", OFFSET(delay), AV_OPT_TYPE_FLOAT, {.dbl=20}, 1, 100, A },
  40. { "feedback", "set feedback gain", OFFSET(feedback), AV_OPT_TYPE_FLOAT, {.dbl=.3}, 0, 0.9, A },
  41. { "crossfeed", "set cross feed", OFFSET(crossfeed), AV_OPT_TYPE_FLOAT, {.dbl=.3}, 0, 0.8, A },
  42. { "drymix", "set dry-mix", OFFSET(drymix), AV_OPT_TYPE_FLOAT, {.dbl=.8}, 0, 1.0, A },
  43. { NULL }
  44. };
  45. AVFILTER_DEFINE_CLASS(stereowiden);
  46. static int query_formats(AVFilterContext *ctx)
  47. {
  48. AVFilterFormats *formats = NULL;
  49. AVFilterChannelLayouts *layout = NULL;
  50. int ret;
  51. if ((ret = ff_add_format (&formats, AV_SAMPLE_FMT_FLT )) < 0 ||
  52. (ret = ff_set_common_formats (ctx , formats )) < 0 ||
  53. (ret = ff_add_channel_layout (&layout , AV_CH_LAYOUT_STEREO)) < 0 ||
  54. (ret = ff_set_common_channel_layouts (ctx , layout )) < 0)
  55. return ret;
  56. formats = ff_all_samplerates();
  57. return ff_set_common_samplerates(ctx, formats);
  58. }
  59. static int config_input(AVFilterLink *inlink)
  60. {
  61. AVFilterContext *ctx = inlink->dst;
  62. StereoWidenContext *s = ctx->priv;
  63. s->length = 2 * s->delay * inlink->sample_rate / 1000;
  64. s->buffer = av_calloc(s->length, sizeof(*s->buffer));
  65. if (!s->buffer)
  66. return AVERROR(ENOMEM);
  67. s->write = s->buffer;
  68. return 0;
  69. }
  70. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  71. {
  72. AVFilterContext *ctx = inlink->dst;
  73. AVFilterLink *outlink = ctx->outputs[0];
  74. StereoWidenContext *s = ctx->priv;
  75. const float *src = (const float *)in->data[0];
  76. const float drymix = s->drymix;
  77. const float crossfeed = s->crossfeed;
  78. const float feedback = s->feedback;
  79. AVFrame *out;
  80. float *dst;
  81. int n;
  82. if (av_frame_is_writable(in)) {
  83. out = in;
  84. } else {
  85. out = ff_get_audio_buffer(inlink, in->nb_samples);
  86. if (!out) {
  87. av_frame_free(&in);
  88. return AVERROR(ENOMEM);
  89. }
  90. av_frame_copy_props(out, in);
  91. }
  92. dst = (float *)out->data[0];
  93. for (n = 0; n < in->nb_samples; n++, src += 2, dst += 2) {
  94. const float left = src[0], right = src[1];
  95. float *read = s->write + 2;
  96. if (read > s->buffer + s->length)
  97. read = s->buffer;
  98. dst[0] = drymix * left - crossfeed * right - feedback * read[1];
  99. dst[1] = drymix * right - crossfeed * left - feedback * read[0];
  100. s->write[0] = left;
  101. s->write[1] = right;
  102. if (s->write == s->buffer + s->length)
  103. s->write = s->buffer;
  104. else
  105. s->write += 2;
  106. }
  107. if (out != in)
  108. av_frame_free(&in);
  109. return ff_filter_frame(outlink, out);
  110. }
  111. static av_cold void uninit(AVFilterContext *ctx)
  112. {
  113. StereoWidenContext *s = ctx->priv;
  114. av_freep(&s->buffer);
  115. }
  116. static const AVFilterPad inputs[] = {
  117. {
  118. .name = "default",
  119. .type = AVMEDIA_TYPE_AUDIO,
  120. .filter_frame = filter_frame,
  121. .config_props = config_input,
  122. },
  123. { NULL }
  124. };
  125. static const AVFilterPad outputs[] = {
  126. {
  127. .name = "default",
  128. .type = AVMEDIA_TYPE_AUDIO,
  129. },
  130. { NULL }
  131. };
  132. AVFilter ff_af_stereowiden = {
  133. .name = "stereowiden",
  134. .description = NULL_IF_CONFIG_SMALL("Apply stereo widening effect."),
  135. .query_formats = query_formats,
  136. .priv_size = sizeof(StereoWidenContext),
  137. .priv_class = &stereowiden_class,
  138. .uninit = uninit,
  139. .inputs = inputs,
  140. .outputs = outputs,
  141. };