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.

171 lines
5.1KB

  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. #define AT AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
  39. static const AVOption stereowiden_options[] = {
  40. { "delay", "set delay time", OFFSET(delay), AV_OPT_TYPE_FLOAT, {.dbl=20}, 1, 100, A },
  41. { "feedback", "set feedback gain", OFFSET(feedback), AV_OPT_TYPE_FLOAT, {.dbl=.3}, 0, 0.9, AT },
  42. { "crossfeed", "set cross feed", OFFSET(crossfeed), AV_OPT_TYPE_FLOAT, {.dbl=.3}, 0, 0.8, AT },
  43. { "drymix", "set dry-mix", OFFSET(drymix), AV_OPT_TYPE_FLOAT, {.dbl=.8}, 0, 1.0, AT },
  44. { NULL }
  45. };
  46. AVFILTER_DEFINE_CLASS(stereowiden);
  47. static int query_formats(AVFilterContext *ctx)
  48. {
  49. AVFilterFormats *formats = NULL;
  50. AVFilterChannelLayouts *layout = NULL;
  51. int ret;
  52. if ((ret = ff_add_format (&formats, AV_SAMPLE_FMT_FLT )) < 0 ||
  53. (ret = ff_set_common_formats (ctx , formats )) < 0 ||
  54. (ret = ff_add_channel_layout (&layout , AV_CH_LAYOUT_STEREO)) < 0 ||
  55. (ret = ff_set_common_channel_layouts (ctx , layout )) < 0)
  56. return ret;
  57. formats = ff_all_samplerates();
  58. return ff_set_common_samplerates(ctx, formats);
  59. }
  60. static int config_input(AVFilterLink *inlink)
  61. {
  62. AVFilterContext *ctx = inlink->dst;
  63. StereoWidenContext *s = ctx->priv;
  64. s->length = s->delay * inlink->sample_rate / 1000;
  65. s->length *= 2;
  66. s->buffer = av_calloc(s->length, sizeof(*s->buffer));
  67. if (!s->buffer)
  68. return AVERROR(ENOMEM);
  69. s->cur = s->buffer;
  70. return 0;
  71. }
  72. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  73. {
  74. AVFilterContext *ctx = inlink->dst;
  75. AVFilterLink *outlink = ctx->outputs[0];
  76. StereoWidenContext *s = ctx->priv;
  77. const float *src = (const float *)in->data[0];
  78. const float drymix = s->drymix;
  79. const float crossfeed = s->crossfeed;
  80. const float feedback = s->feedback;
  81. AVFrame *out;
  82. float *dst;
  83. int n;
  84. if (av_frame_is_writable(in)) {
  85. out = in;
  86. } else {
  87. out = ff_get_audio_buffer(outlink, in->nb_samples);
  88. if (!out) {
  89. av_frame_free(&in);
  90. return AVERROR(ENOMEM);
  91. }
  92. av_frame_copy_props(out, in);
  93. }
  94. dst = (float *)out->data[0];
  95. for (n = 0; n < in->nb_samples; n++, src += 2, dst += 2, s->cur += 2) {
  96. const float left = src[0], right = src[1];
  97. if (s->cur == s->buffer + s->length)
  98. s->cur = s->buffer;
  99. if (ctx->is_disabled) {
  100. dst[0] = left;
  101. dst[1] = right;
  102. } else {
  103. dst[0] = drymix * left - crossfeed * right - feedback * s->cur[1];
  104. dst[1] = drymix * right - crossfeed * left - feedback * s->cur[0];
  105. }
  106. s->cur[0] = left;
  107. s->cur[1] = right;
  108. }
  109. if (out != in)
  110. av_frame_free(&in);
  111. return ff_filter_frame(outlink, out);
  112. }
  113. static av_cold void uninit(AVFilterContext *ctx)
  114. {
  115. StereoWidenContext *s = ctx->priv;
  116. av_freep(&s->buffer);
  117. }
  118. static const AVFilterPad inputs[] = {
  119. {
  120. .name = "default",
  121. .type = AVMEDIA_TYPE_AUDIO,
  122. .filter_frame = filter_frame,
  123. .config_props = config_input,
  124. },
  125. { NULL }
  126. };
  127. static const AVFilterPad outputs[] = {
  128. {
  129. .name = "default",
  130. .type = AVMEDIA_TYPE_AUDIO,
  131. },
  132. { NULL }
  133. };
  134. AVFilter ff_af_stereowiden = {
  135. .name = "stereowiden",
  136. .description = NULL_IF_CONFIG_SMALL("Apply stereo widening effect."),
  137. .query_formats = query_formats,
  138. .priv_size = sizeof(StereoWidenContext),
  139. .priv_class = &stereowiden_class,
  140. .uninit = uninit,
  141. .inputs = inputs,
  142. .outputs = outputs,
  143. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
  144. .process_command = ff_filter_process_command,
  145. };