af_stereowiden.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 *cur;
  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 = s->delay * inlink->sample_rate / 1000;
  64. s->length *= 2;
  65. s->buffer = av_calloc(s->length, sizeof(*s->buffer));
  66. if (!s->buffer)
  67. return AVERROR(ENOMEM);
  68. s->cur = s->buffer;
  69. return 0;
  70. }
  71. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  72. {
  73. AVFilterContext *ctx = inlink->dst;
  74. AVFilterLink *outlink = ctx->outputs[0];
  75. StereoWidenContext *s = ctx->priv;
  76. const float *src = (const float *)in->data[0];
  77. const float drymix = s->drymix;
  78. const float crossfeed = s->crossfeed;
  79. const float feedback = s->feedback;
  80. AVFrame *out;
  81. float *dst;
  82. int n;
  83. if (av_frame_is_writable(in)) {
  84. out = in;
  85. } else {
  86. out = ff_get_audio_buffer(outlink, in->nb_samples);
  87. if (!out) {
  88. av_frame_free(&in);
  89. return AVERROR(ENOMEM);
  90. }
  91. av_frame_copy_props(out, in);
  92. }
  93. dst = (float *)out->data[0];
  94. for (n = 0; n < in->nb_samples; n++, src += 2, dst += 2, s->cur += 2) {
  95. const float left = src[0], right = src[1];
  96. if (s->cur == s->buffer + s->length)
  97. s->cur = s->buffer;
  98. if (ctx->is_disabled) {
  99. dst[0] = left;
  100. dst[1] = right;
  101. } else {
  102. dst[0] = drymix * left - crossfeed * right - feedback * s->cur[1];
  103. dst[1] = drymix * right - crossfeed * left - feedback * s->cur[0];
  104. }
  105. s->cur[0] = left;
  106. s->cur[1] = right;
  107. }
  108. if (out != in)
  109. av_frame_free(&in);
  110. return ff_filter_frame(outlink, out);
  111. }
  112. static av_cold void uninit(AVFilterContext *ctx)
  113. {
  114. StereoWidenContext *s = ctx->priv;
  115. av_freep(&s->buffer);
  116. }
  117. static const AVFilterPad inputs[] = {
  118. {
  119. .name = "default",
  120. .type = AVMEDIA_TYPE_AUDIO,
  121. .filter_frame = filter_frame,
  122. .config_props = config_input,
  123. },
  124. { NULL }
  125. };
  126. static const AVFilterPad outputs[] = {
  127. {
  128. .name = "default",
  129. .type = AVMEDIA_TYPE_AUDIO,
  130. },
  131. { NULL }
  132. };
  133. AVFilter ff_af_stereowiden = {
  134. .name = "stereowiden",
  135. .description = NULL_IF_CONFIG_SMALL("Apply stereo widening effect."),
  136. .query_formats = query_formats,
  137. .priv_size = sizeof(StereoWidenContext),
  138. .priv_class = &stereowiden_class,
  139. .uninit = uninit,
  140. .inputs = inputs,
  141. .outputs = outputs,
  142. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
  143. };