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