]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_dcshift.c
Merge commit '8e32b1f0963d01d4f5d4803eb721f162e0d58d9a'
[ffmpeg] / libavfilter / af_dcshift.c
1 /*
2  * Copyright (c) 2000 Chris Ausbrooks <weed@bucket.pp.ualr.edu>
3  * Copyright (c) 2000 Fabien COELHO <fabien@coelho.net>
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/opt.h"
23 #include "libavutil/samplefmt.h"
24 #include "avfilter.h"
25 #include "audio.h"
26 #include "internal.h"
27
28 typedef struct DCShiftContext {
29     const AVClass *class;
30     double dcshift;
31     double limiterthreshhold;
32     double limitergain;
33 } DCShiftContext;
34
35 #define OFFSET(x) offsetof(DCShiftContext, x)
36 #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
37
38 static const AVOption dcshift_options[] = {
39     { "shift",       "set DC shift",     OFFSET(dcshift),       AV_OPT_TYPE_DOUBLE, {.dbl=0}, -1, 1, A },
40     { "limitergain", "set limiter gain", OFFSET(limitergain), AV_OPT_TYPE_DOUBLE, {.dbl=0}, 0, 1, A },
41     { NULL }
42 };
43
44 AVFILTER_DEFINE_CLASS(dcshift);
45
46 static av_cold int init(AVFilterContext *ctx)
47 {
48     DCShiftContext *s = ctx->priv;
49
50     s->limiterthreshhold = INT32_MAX * (1.0 - (fabs(s->dcshift) - s->limitergain));
51
52     return 0;
53 }
54
55 static int query_formats(AVFilterContext *ctx)
56 {
57     AVFilterChannelLayouts *layouts;
58     AVFilterFormats *formats;
59     static const enum AVSampleFormat sample_fmts[] = {
60         AV_SAMPLE_FMT_S32P, AV_SAMPLE_FMT_NONE
61     };
62
63     layouts = ff_all_channel_layouts();
64     if (!layouts)
65         return AVERROR(ENOMEM);
66     ff_set_common_channel_layouts(ctx, layouts);
67
68     formats = ff_make_format_list(sample_fmts);
69     if (!formats)
70         return AVERROR(ENOMEM);
71     ff_set_common_formats(ctx, formats);
72
73     formats = ff_all_samplerates();
74     if (!formats)
75         return AVERROR(ENOMEM);
76     ff_set_common_samplerates(ctx, formats);
77
78     return 0;
79 }
80
81 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
82 {
83     AVFilterContext *ctx = inlink->dst;
84     AVFilterLink *outlink = ctx->outputs[0];
85     AVFrame *out = ff_get_audio_buffer(inlink, in->nb_samples);
86     DCShiftContext *s = ctx->priv;
87     int i, j;
88     double dcshift = s->dcshift;
89
90     if (!out) {
91         av_frame_free(&in);
92         return AVERROR(ENOMEM);
93     }
94     av_frame_copy_props(out, in);
95
96     if (s->limitergain > 0) {
97         for (i = 0; i < inlink->channels; i++) {
98             const int32_t *src = (int32_t *)in->extended_data[i];
99             int32_t *dst = (int32_t *)out->extended_data[i];
100
101             for (j = 0; j < in->nb_samples; j++) {
102                 double d;
103
104                 d = src[j];
105
106                 if (d > s->limiterthreshhold && dcshift > 0) {
107                     d = (d - s->limiterthreshhold) * s->limitergain /
108                              (INT32_MAX - s->limiterthreshhold) +
109                              s->limiterthreshhold + dcshift;
110                 } else if (d < -s->limiterthreshhold && dcshift < 0) {
111                     d = (d + s->limiterthreshhold) * s->limitergain /
112                              (INT32_MAX - s->limiterthreshhold) -
113                              s->limiterthreshhold + dcshift;
114                 } else {
115                     d = dcshift * INT32_MAX + d;
116                 }
117
118                 dst[j] = av_clipl_int32(d);
119             }
120         }
121     } else {
122         for (i = 0; i < inlink->channels; i++) {
123             const int32_t *src = (int32_t *)in->extended_data[i];
124             int32_t *dst = (int32_t *)out->extended_data[i];
125
126             for (j = 0; j < in->nb_samples; j++) {
127                 double d = dcshift * (INT32_MAX + 1.) + src[j];
128
129                 dst[j] = av_clipl_int32(d);
130             }
131         }
132     }
133
134     av_frame_free(&in);
135     return ff_filter_frame(outlink, out);
136 }
137 static const AVFilterPad dcshift_inputs[] = {
138     {
139         .name         = "default",
140         .type         = AVMEDIA_TYPE_AUDIO,
141         .filter_frame = filter_frame,
142     },
143     { NULL }
144 };
145
146 static const AVFilterPad dcshift_outputs[] = {
147     {
148         .name = "default",
149         .type = AVMEDIA_TYPE_AUDIO,
150     },
151     { NULL }
152 };
153
154 AVFilter ff_af_dcshift = {
155     .name           = "dcshift",
156     .description    = NULL_IF_CONFIG_SMALL("Apply a DC shift to the audio."),
157     .query_formats  = query_formats,
158     .priv_size      = sizeof(DCShiftContext),
159     .priv_class     = &dcshift_class,
160     .init           = init,
161     .inputs         = dcshift_inputs,
162     .outputs        = dcshift_outputs,
163     .flags          = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
164 };