FFmpeg
Loading...
Searching...
No Matches
af_compensationdelay.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2001-2010 Krzysztof Foltman, Markus Schmidt, Thor Harald Johansen, Vladimir Sadovnikov and others
3 * Copyright (c) 2015 Paul B Mahol
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 "filters.h"
27
29 const AVClass *class;
33 double dry, wet;
34 int temp;
35
36 unsigned delay;
37 unsigned w_ptr;
38 unsigned buf_size;
41
42#define OFFSET(x) offsetof(CompensationDelayContext, x)
43#define A (AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM)
44
46 { "mm", "set mm distance", OFFSET(distance_mm), AV_OPT_TYPE_INT, {.i64=0}, 0, 10, A },
47 { "cm", "set cm distance", OFFSET(distance_cm), AV_OPT_TYPE_INT, {.i64=0}, 0, 100, A },
48 { "m", "set meter distance", OFFSET(distance_m), AV_OPT_TYPE_INT, {.i64=0}, 0, 100, A },
49 { "dry", "set dry amount", OFFSET(dry), AV_OPT_TYPE_DOUBLE, {.dbl=0}, 0, 1, A },
50 { "wet", "set wet amount", OFFSET(wet), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, A },
51 { "temp", "set temperature °C", OFFSET(temp), AV_OPT_TYPE_INT, {.i64=20}, -50, 50, A },
52 { NULL }
53};
54
55AVFILTER_DEFINE_CLASS(compensationdelay);
56
57// The maximum distance for options
58#define COMP_DELAY_MAX_DISTANCE (100.0 * 100.0 + 100.0 * 1.0 + 1.0)
59// The actual speed of sound in normal conditions
60#define COMP_DELAY_SOUND_SPEED_KM_H(temp) 1.85325 * (643.95 * sqrt(((temp + 273.15) / 273.15)))
61#define COMP_DELAY_SOUND_SPEED_CM_S(temp) (COMP_DELAY_SOUND_SPEED_KM_H(temp) * (1000.0 * 100.0) /* cm/km */ / (60.0 * 60.0) /* s/h */)
62#define COMP_DELAY_SOUND_FRONT_DELAY(temp) (1.0 / COMP_DELAY_SOUND_SPEED_CM_S(temp))
63// The maximum delay may be reached by this filter
64#define COMP_DELAY_MAX_DELAY (COMP_DELAY_MAX_DISTANCE * COMP_DELAY_SOUND_FRONT_DELAY(50))
65
66static int config_input(AVFilterLink *inlink)
67{
68 AVFilterContext *ctx = inlink->dst;
70 unsigned min_size, new_size = 1;
71
72 s->delay = (s->distance_m * 100. + s->distance_cm * 1. + s->distance_mm * .1) *
74 min_size = inlink->sample_rate * COMP_DELAY_MAX_DELAY;
75
76 while (new_size < min_size)
77 new_size <<= 1;
78
79 s->buf_size = new_size;
80 s->delay_frame = ff_get_audio_buffer(inlink, s->buf_size);
81 if (!s->delay_frame)
82 return AVERROR(ENOMEM);
83
84 return 0;
85}
86
87static int filter_frame(AVFilterLink *inlink, AVFrame *in)
88{
89 AVFilterContext *ctx = inlink->dst;
90 AVFilterLink *outlink = ctx->outputs[0];
92 const unsigned b_mask = s->buf_size - 1;
93 const unsigned buf_size = s->buf_size;
94 const unsigned delay = s->delay;
95 const double dry = s->dry;
96 const double wet = s->wet;
97 unsigned r_ptr, w_ptr = 0;
98 AVFrame *out;
99 int n, ch;
100
101 out = ff_get_audio_buffer(outlink, in->nb_samples);
102 if (!out) {
103 av_frame_free(&in);
104 return AVERROR(ENOMEM);
105 }
107
108 for (ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
109 const double *src = (const double *)in->extended_data[ch];
110 double *dst = (double *)out->extended_data[ch];
111 double *buffer = (double *)s->delay_frame->extended_data[ch];
112
113 w_ptr = s->w_ptr;
114 r_ptr = (w_ptr + buf_size - delay) & b_mask;
115
116 for (n = 0; n < in->nb_samples; n++) {
117 const double sample = src[n];
118
119 buffer[w_ptr] = sample;
120 dst[n] = dry * sample + wet * buffer[r_ptr];
121 w_ptr = (w_ptr + 1) & b_mask;
122 r_ptr = (r_ptr + 1) & b_mask;
123 }
124 }
125 s->w_ptr = w_ptr;
126
127 if (ctx->is_disabled) {
129 return ff_filter_frame(outlink, in);
130 }
131
132 av_frame_free(&in);
133 return ff_filter_frame(outlink, out);
134}
135
136static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
137 char *res, int res_len, int flags)
138{
140 AVFilterLink *outlink = ctx->outputs[0];
141 int ret;
142
143 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
144 if (ret < 0)
145 return ret;
146
147 s->delay = (s->distance_m * 100. + s->distance_cm * 1. + s->distance_mm * .1) *
149
150 return 0;
151}
152
154{
156
157 av_frame_free(&s->delay_frame);
158}
159
161 {
162 .name = "default",
163 .type = AVMEDIA_TYPE_AUDIO,
164 .config_props = config_input,
165 .filter_frame = filter_frame,
166 },
167};
168
170 .p.name = "compensationdelay",
171 .p.description = NULL_IF_CONFIG_SMALL("Audio Compensation Delay Line."),
172 .p.priv_class = &compensationdelay_class,
174 .priv_size = sizeof(CompensationDelayContext),
175 .uninit = uninit,
179 .process_command = process_command,
180};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int config_input(AVFilterLink *inlink)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
#define COMP_DELAY_SOUND_FRONT_DELAY(temp)
static const AVOption compensationdelay_options[]
const FFFilter ff_af_compensationdelay
static const AVFilterPad compensationdelay_inputs[]
static int config_input(AVFilterLink *inlink)
#define COMP_DELAY_MAX_DELAY
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
static av_cold void uninit(AVFilterContext *ctx)
#define OFFSET(x)
static FILE * out
static AVFormatContext * ctx
#define A(x)
Definition vpx_arith.h:28
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition audio.c:34
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition audio.c:74
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
Main libavfilter public API header.
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
#define sample
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
Definition opt.h:266
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition avfilter.h:204
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_DBLP
double, planar
Definition samplefmt.h:67
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
Definition filters.h:257
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
AVOptions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int nb_samples
number of audio samples (per channel) described by this frame
Definition frame.h:552
uint8_t ** extended_data
pointers to the data planes/channels.
Definition frame.h:533
AVOption.
Definition opt.h:428
#define src
Definition vp8dsp.c:248
static char buffer[20]
Definition seek.c:32
else temp
Definition vf_mcdeint.c:275