]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_asubboost.c
avformat/rtsp: check return value of ffurl_read_complete
[ffmpeg] / libavfilter / af_asubboost.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "libavutil/channel_layout.h"
20 #include "libavutil/ffmath.h"
21 #include "libavutil/opt.h"
22 #include "avfilter.h"
23 #include "audio.h"
24 #include "formats.h"
25
26 typedef struct ASubBoostContext {
27     const AVClass *class;
28
29     double dry_gain;
30     double wet_gain;
31     double feedback;
32     double decay;
33     double delay;
34     double cutoff;
35     double slope;
36
37     double a0, a1, a2;
38     double b0, b1, b2;
39
40     int write_pos;
41     int buffer_samples;
42
43     AVFrame *w;
44     AVFrame *buffer;
45 } ASubBoostContext;
46
47 static int query_formats(AVFilterContext *ctx)
48 {
49     AVFilterFormats *formats = NULL;
50     AVFilterChannelLayouts *layouts = NULL;
51     static const enum AVSampleFormat sample_fmts[] = {
52         AV_SAMPLE_FMT_DBLP,
53         AV_SAMPLE_FMT_NONE
54     };
55     int ret;
56
57     formats = ff_make_format_list(sample_fmts);
58     if (!formats)
59         return AVERROR(ENOMEM);
60     ret = ff_set_common_formats(ctx, formats);
61     if (ret < 0)
62         return ret;
63
64     layouts = ff_all_channel_counts();
65     if (!layouts)
66         return AVERROR(ENOMEM);
67
68     ret = ff_set_common_channel_layouts(ctx, layouts);
69     if (ret < 0)
70         return ret;
71
72     formats = ff_all_samplerates();
73     return ff_set_common_samplerates(ctx, formats);
74 }
75
76 static int get_coeffs(AVFilterContext *ctx)
77 {
78     ASubBoostContext *s = ctx->priv;
79     AVFilterLink *inlink = ctx->inputs[0];
80     double w0 = 2 * M_PI * s->cutoff / inlink->sample_rate;
81     double alpha = sin(w0) / 2 * sqrt(2. * (1. / s->slope - 1.) + 2.);
82
83     s->a0 =  1 + alpha;
84     s->a1 = -2 * cos(w0);
85     s->a2 =  1 - alpha;
86     s->b0 = (1 - cos(w0)) / 2;
87     s->b1 =  1 - cos(w0);
88     s->b2 = (1 - cos(w0)) / 2;
89
90     s->a1 /= s->a0;
91     s->a2 /= s->a0;
92     s->b0 /= s->a0;
93     s->b1 /= s->a0;
94     s->b2 /= s->a0;
95
96     s->buffer_samples = inlink->sample_rate * s->delay / 1000;
97
98     return 0;
99 }
100
101 static int config_input(AVFilterLink *inlink)
102 {
103     AVFilterContext *ctx = inlink->dst;
104     ASubBoostContext *s = ctx->priv;
105
106     s->buffer = ff_get_audio_buffer(inlink, inlink->sample_rate / 10);
107     s->w = ff_get_audio_buffer(inlink, 2);
108     if (!s->buffer || !s->w)
109         return AVERROR(ENOMEM);
110
111     return get_coeffs(ctx);
112 }
113
114 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
115 {
116     AVFilterContext *ctx = inlink->dst;
117     AVFilterLink *outlink = ctx->outputs[0];
118     ASubBoostContext *s = ctx->priv;
119     const double wet = s->wet_gain, dry = s->dry_gain, feedback = s->feedback, decay = s->decay;
120     const double b0 = s->b0;
121     const double b1 = s->b1;
122     const double b2 = s->b2;
123     const double a1 = -s->a1;
124     const double a2 = -s->a2;
125     int write_pos;
126     AVFrame *out;
127
128     if (av_frame_is_writable(in)) {
129         out = in;
130     } else {
131         out = ff_get_audio_buffer(outlink, in->nb_samples);
132         if (!out) {
133             av_frame_free(&in);
134             return AVERROR(ENOMEM);
135         }
136         av_frame_copy_props(out, in);
137     }
138
139     for (int ch = 0; ch < in->channels; ch++) {
140         const double *src = (const double *)in->extended_data[ch];
141         double *dst = (double *)out->extended_data[ch];
142         double *buffer = (double *)s->buffer->extended_data[ch];
143         double *w = (double *)s->w->extended_data[ch];
144
145         write_pos = s->write_pos;
146         for (int n = 0; n < in->nb_samples; n++) {
147             double out_sample;
148
149             out_sample = src[n] * b0 + w[0];
150             w[0] = b1 * src[n] + w[1] + a1 * out_sample;
151             w[1] = b2 * src[n] + a2 * out_sample;
152
153             buffer[write_pos] = buffer[write_pos] * decay + out_sample * feedback;
154             dst[n] = src[n] * dry + buffer[write_pos] * wet;
155
156             if (++write_pos >= s->buffer_samples)
157                 write_pos = 0;
158         }
159     }
160
161     s->write_pos = write_pos;
162
163     if (out != in)
164         av_frame_free(&in);
165     return ff_filter_frame(outlink, out);
166 }
167
168 static av_cold void uninit(AVFilterContext *ctx)
169 {
170     ASubBoostContext *s = ctx->priv;
171
172     av_frame_free(&s->buffer);
173     av_frame_free(&s->w);
174 }
175
176 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
177                            char *res, int res_len, int flags)
178 {
179     int ret;
180
181     ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
182     if (ret < 0)
183         return ret;
184
185     return get_coeffs(ctx);
186 }
187
188 #define OFFSET(x) offsetof(ASubBoostContext, x)
189 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
190
191 static const AVOption asubboost_options[] = {
192     { "dry",      "set dry gain", OFFSET(dry_gain), AV_OPT_TYPE_DOUBLE, {.dbl=0.5},      0,   1, FLAGS },
193     { "wet",      "set wet gain", OFFSET(wet_gain), AV_OPT_TYPE_DOUBLE, {.dbl=0.8},      0,   1, FLAGS },
194     { "decay",    "set decay",    OFFSET(decay),    AV_OPT_TYPE_DOUBLE, {.dbl=0.7},      0,   1, FLAGS },
195     { "feedback", "set feedback", OFFSET(feedback), AV_OPT_TYPE_DOUBLE, {.dbl=0.5},      0,   1, FLAGS },
196     { "cutoff",   "set cutoff",   OFFSET(cutoff),   AV_OPT_TYPE_DOUBLE, {.dbl=100},     50, 900, FLAGS },
197     { "slope",    "set slope",    OFFSET(slope),    AV_OPT_TYPE_DOUBLE, {.dbl=0.5}, 0.0001,   1, FLAGS },
198     { "delay",    "set delay",    OFFSET(delay),    AV_OPT_TYPE_DOUBLE, {.dbl=20},       1, 100, FLAGS },
199     { NULL }
200 };
201
202 AVFILTER_DEFINE_CLASS(asubboost);
203
204 static const AVFilterPad inputs[] = {
205     {
206         .name         = "default",
207         .type         = AVMEDIA_TYPE_AUDIO,
208         .filter_frame = filter_frame,
209         .config_props = config_input,
210     },
211     { NULL }
212 };
213
214 static const AVFilterPad outputs[] = {
215     {
216         .name = "default",
217         .type = AVMEDIA_TYPE_AUDIO,
218     },
219     { NULL }
220 };
221
222 AVFilter ff_af_asubboost = {
223     .name           = "asubboost",
224     .description    = NULL_IF_CONFIG_SMALL("Boost subwoofer frequencies."),
225     .query_formats  = query_formats,
226     .priv_size      = sizeof(ASubBoostContext),
227     .priv_class     = &asubboost_class,
228     .uninit         = uninit,
229     .inputs         = inputs,
230     .outputs        = outputs,
231     .process_command = process_command,
232 };