44 uint8_t *
const *
src, uint8_t **
dst,
48#define OFFSET(x) offsetof(AudioEchoContext, x)
49#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
66 for (p = item_str; *p; p++) {
73static void fill_items(
char *item_str,
int *nb_items,
float *items)
75 char *p, *saveptr =
NULL;
76 int i, new_nb_items = 0;
79 for (
i = 0;
i < *nb_items;
i++) {
83 new_nb_items +=
av_sscanf(tstr,
"%f", &items[new_nb_items]) == 1;
86 *nb_items = new_nb_items;
105 int nb_delays, nb_decays,
i;
107 if (!
s->delays || !
s->decays) {
117 if (!
s->delay || !
s->decay)
123 if (nb_delays != nb_decays) {
124 av_log(
ctx,
AV_LOG_ERROR,
"Number of delays %d differs from number of decays %d.\n", nb_delays, nb_decays);
128 s->nb_echoes = nb_delays;
138 for (
i = 0;
i < nb_delays;
i++) {
139 if (
s->delay[
i] <= 0 ||
s->delay[
i] > 90000) {
143 if (
s->decay[
i] <= 0 ||
s->decay[
i] > 1) {
155#define MOD(a, b) (((a) >= (b)) ? (a) - (b) : (a))
157#define ECHO(name, type, min, max) \
158static void echo_samples_## name ##p(AudioEchoContext *ctx, \
159 uint8_t **delayptrs, \
160 uint8_t * const *src, uint8_t **dst, \
161 int nb_samples, int channels) \
163 const double out_gain = ctx->out_gain; \
164 const double in_gain = ctx->in_gain; \
165 const int nb_echoes = ctx->nb_echoes; \
166 const int max_samples = ctx->max_samples; \
167 int i, j, chan, av_uninit(index); \
169 av_assert1(channels > 0); \
171 for (chan = 0; chan < channels; chan++) { \
172 const type *s = (type *)src[chan]; \
173 type *d = (type *)dst[chan]; \
174 type *dbuf = (type *)delayptrs[chan]; \
176 index = ctx->delay_index; \
177 for (i = 0; i < nb_samples; i++, s++, d++) { \
181 out = in * in_gain; \
182 for (j = 0; j < nb_echoes; j++) { \
183 int ix = index + max_samples - ctx->samples[j]; \
184 ix = MOD(ix, max_samples); \
185 out += dbuf[ix] * ctx->decay[j]; \
189 *d = av_clipd(out, min, max); \
192 index = MOD(index + 1, max_samples); \
195 ctx->delay_index = index; \
198ECHO(dbl,
double, -1.0, 1.0 )
199ECHO(flt,
float, -1.0, 1.0 )
200ECHO(s16, int16_t, INT16_MIN, INT16_MAX)
210 for (
i = 0;
i <
s->nb_echoes;
i++) {
211 s->samples[
i] =
s->delay[
i] * outlink->sample_rate / 1000.0;
212 s->max_samples =
FFMAX(
s->max_samples,
s->samples[
i]);
213 volume +=
s->decay[
i];
216 if (
s->max_samples <= 0) {
217 av_log(ctx, AV_LOG_ERROR,
"Nothing to echo - missing delay samples.\n");
218 return AVERROR(EINVAL);
220 s->fade_out =
s->max_samples;
222 if (volume *
s->in_gain *
s->out_gain > 1.0)
224 "out_gain %f can cause saturation of output\n",
s->out_gain);
226 switch (outlink->format) {
227 case AV_SAMPLE_FMT_DBLP: s->echo_samples = echo_samples_dblp; break;
228 case AV_SAMPLE_FMT_FLTP: s->echo_samples = echo_samples_fltp; break;
229 case AV_SAMPLE_FMT_S16P: s->echo_samples = echo_samples_s16p; break;
230 case AV_SAMPLE_FMT_S32P: s->echo_samples = echo_samples_s32p; break;
239 outlink->ch_layout.nb_channels,
266 if (
frame != out_frame)
276 int nb_samples =
FFMIN(
s->fade_out, 2048);
281 s->fade_out -= nb_samples;
288 s->echo_samples(
s,
s->delayptrs,
frame->extended_data,
frame->extended_data,
320 if (
s->eof &&
s->fade_out <= 0) {
342 .p.priv_class = &aecho_class,
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static const AVOption aecho_options[]
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
static int request_frame(AVFilterLink *outlink)
static const AVFilterPad aecho_outputs[]
#define ECHO(name, type, min, max)
static int activate(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
const FFFilter ff_af_aecho
static void count_items(char *item_str, int *nb_items)
static void fill_items(char *item_str, int *nb_items, float *items)
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
simple assert() macros that are a bit more flexible than ISO C assert().
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Main libavfilter public API header.
int av_sscanf(const char *string, const char *format,...)
#define i(width, name, range_min, range_max)
int(* init)(AVBSFContext *ctx)
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AVERROR_EOF
End of file.
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AV_SAMPLE_FMT_FLTP
float, planar
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
@ AV_SAMPLE_FMT_DBLP
double, planar
int av_samples_set_silence(uint8_t *const *audio_data, int offset, int nb_samples, int nb_channels, enum AVSampleFormat sample_fmt)
Fill an audio buffer with silence.
int av_samples_alloc_array_and_samples(uint8_t ***audio_data, int *linesize, int nb_channels, int nb_samples, enum AVSampleFormat sample_fmt, int align)
Allocate a data pointers array, samples buffer for nb_samples samples, and fill data pointers and lin...
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
#define AV_NOPTS_VALUE
Undefined timestamp value.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_SAMPLEFMTS(...)
#define FF_FILTER_FORWARD_WANTED(outlink, inlink)
Forward the frame_wanted_out flag from an output link to an input link.
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Memory handling functions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
A link between two filters.
AVFilterContext * src
source filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
int sample_rate
samples per second
AVChannelLayout ch_layout
channel layout of current buffer (see libavutil/channel_layout.h)
AVFilterContext * dst
dest filter
A filter pad used for either input or output.
This structure describes decoded (raw) audio or video data.
uint8_t ** extended_data
pointers to the data planes/channels.
Rational number (pair of numerator and denominator).
void(* echo_samples)(struct AudioEchoContext *ctx, uint8_t **delayptrs, uint8_t *const *src, uint8_t **dst, int nb_samples, int channels)
#define av_realloc_f(p, o, n)
static AVFormatContext * ctx