FFmpeg
Data Structures | Macros | Functions | Variables
af_adelay.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  ChanDelay
 
struct  AudioDelayContext
 

Macros

#define OFFSET(x)   offsetof(AudioDelayContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define DELAY(name, type, fill)
 

Functions

 AVFILTER_DEFINE_CLASS (adelay)
 
static int config_input (AVFilterLink *inlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static int activate (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption adelay_options []
 
static const AVFilterPad adelay_inputs []
 
static const AVFilterPad adelay_outputs []
 
const AVFilter ff_af_adelay
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET (   x)    offsetof(AudioDelayContext, x)

Definition at line 53 of file af_adelay.c.

◆ A

Definition at line 54 of file af_adelay.c.

◆ DELAY

#define DELAY (   name,
  type,
  fill 
)
Value:
static void delay_channel_## name ##p(ChanDelay *d, int nb_samples, \
const uint8_t *ssrc, uint8_t *ddst) \
{ \
const type *src = (type *)ssrc; \
type *dst = (type *)ddst; \
type *samples = (type *)d->samples; \
\
while (nb_samples) { \
if (d->delay_index < d->delay) { \
const int len = FFMIN(nb_samples, d->delay - d->delay_index); \
\
memcpy(&samples[d->delay_index], src, len * sizeof(type)); \
memset(dst, fill, len * sizeof(type)); \
d->delay_index += len; \
src += len; \
dst += len; \
nb_samples -= len; \
} else { \
*dst = samples[d->index]; \
samples[d->index] = *src; \
nb_samples--; \
d->index++; \
src++, dst++; \
d->index = d->index >= d->delay ? 0 : d->index; \
} \
} \
}

Definition at line 64 of file af_adelay.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( adelay  )

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 99 of file af_adelay.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 189 of file af_adelay.c.

Referenced by activate().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 224 of file af_adelay.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 295 of file af_adelay.c.

Variable Documentation

◆ adelay_options

const AVOption adelay_options[]
static
Initial value:
= {
{ "delays", "set list of delays for each channel", OFFSET(delays), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
{ "all", "use last available delay for remained channels", OFFSET(all), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, A },
{ NULL }
}

Definition at line 56 of file af_adelay.c.

◆ adelay_inputs

const AVFilterPad adelay_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_input,
},
}

Definition at line 306 of file af_adelay.c.

◆ adelay_outputs

const AVFilterPad adelay_outputs[]
static
Initial value:
= {
{
.name = "default",
},
}

Definition at line 314 of file af_adelay.c.

◆ ff_af_adelay

const AVFilter ff_af_adelay
Initial value:

Definition at line 321 of file af_adelay.c.

AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:69
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
AV_SAMPLE_FMT_S32P
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition: samplefmt.h:68
ChanDelay
Definition: af_adelay.c:30
OFFSET
#define OFFSET(x)
Definition: af_adelay.c:53
AudioDelayContext
Definition: af_adelay.c:37
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
activate
static int activate(AVFilterContext *ctx)
Definition: af_adelay.c:224
config_input
static int config_input(AVFilterLink *inlink)
Definition: af_adelay.c:99
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
NULL
#define NULL
Definition: coverity.c:32
adelay_outputs
static const AVFilterPad adelay_outputs[]
Definition: af_adelay.c:314
A
#define A
Definition: af_adelay.c:54
src
#define src
Definition: vp8dsp.c:255
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_SAMPLE_FMT_U8P
@ AV_SAMPLE_FMT_U8P
unsigned 8 bits, planar
Definition: samplefmt.h:66
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:67
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
len
int len
Definition: vorbis_enc_data.h:426
adelay_inputs
static const AVFilterPad adelay_inputs[]
Definition: af_adelay.c:306
AV_SAMPLE_FMT_DBLP
@ AV_SAMPLE_FMT_DBLP
double, planar
Definition: samplefmt.h:70
samples
Filter the word “frame” indicates either a video frame or a group of audio samples
Definition: filter_design.txt:8
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:241
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
d
d
Definition: ffmpeg_filter.c:153
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_adelay.c:295
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
#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:154
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:228
FILTER_SAMPLEFMTS
#define FILTER_SAMPLEFMTS(...)
Definition: internal.h:179