FFmpeg
Data Structures | Macros | Enumerations | Functions | Variables
asrc_anoisesrc.c File Reference
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
#include "libavutil/lfg.h"
#include "libavutil/random_seed.h"

Go to the source code of this file.

Data Structures

struct  ANoiseSrcContext
 

Macros

#define OFFSET(x)   offsetof(ANoiseSrcContext, x)
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Enumerations

enum  NoiseMode {
  NM_WHITE, NM_PINK, NM_BROWN, NM_BLUE,
  NM_VIOLET, NM_NB
}
 

Functions

 AVFILTER_DEFINE_CLASS (anoisesrc)
 
static av_cold int query_formats (AVFilterContext *ctx)
 
static double white_filter (double white, double *buf)
 
static double pink_filter (double white, double *buf)
 
static double blue_filter (double white, double *buf)
 
static double brown_filter (double white, double *buf)
 
static double violet_filter (double white, double *buf)
 
static av_cold int config_props (AVFilterLink *outlink)
 
static int request_frame (AVFilterLink *outlink)
 

Variables

static const AVOption anoisesrc_options []
 
static const AVFilterPad anoisesrc_outputs []
 
AVFilter ff_asrc_anoisesrc
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 53 of file asrc_anoisesrc.c.

◆ FLAGS

Definition at line 54 of file asrc_anoisesrc.c.

Enumeration Type Documentation

◆ NoiseMode

enum NoiseMode
Enumerator
NM_WHITE 
NM_PINK 
NM_BROWN 
NM_BLUE 
NM_VIOLET 
NM_NB 

Definition at line 44 of file asrc_anoisesrc.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( anoisesrc  )

◆ query_formats()

static av_cold int query_formats ( AVFilterContext ctx)
static

Definition at line 80 of file asrc_anoisesrc.c.

◆ white_filter()

static double white_filter ( double  white,
double *  buf 
)
static

Definition at line 114 of file asrc_anoisesrc.c.

Referenced by config_props().

◆ pink_filter()

static double pink_filter ( double  white,
double *  buf 
)
static

Definition at line 119 of file asrc_anoisesrc.c.

Referenced by config_props().

◆ blue_filter()

static double blue_filter ( double  white,
double *  buf 
)
static

Definition at line 135 of file asrc_anoisesrc.c.

Referenced by config_props().

◆ brown_filter()

static double brown_filter ( double  white,
double *  buf 
)
static

Definition at line 151 of file asrc_anoisesrc.c.

Referenced by config_props().

◆ violet_filter()

static double violet_filter ( double  white,
double *  buf 
)
static

Definition at line 160 of file asrc_anoisesrc.c.

Referenced by config_props().

◆ config_props()

static av_cold int config_props ( AVFilterLink outlink)
static

Definition at line 169 of file asrc_anoisesrc.c.

◆ request_frame()

static int request_frame ( AVFilterLink outlink)
static

Definition at line 193 of file asrc_anoisesrc.c.

Variable Documentation

◆ anoisesrc_options

const AVOption anoisesrc_options[]
static
Initial value:
= {
{ "sample_rate", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 15, INT_MAX, FLAGS },
{ "r", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 15, INT_MAX, FLAGS },
{ "amplitude", "set amplitude", OFFSET(amplitude), AV_OPT_TYPE_DOUBLE, {.dbl = 1.}, 0., 1., FLAGS },
{ "a", "set amplitude", OFFSET(amplitude), AV_OPT_TYPE_DOUBLE, {.dbl = 1.}, 0., 1., FLAGS },
{ "duration", "set duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, FLAGS },
{ "d", "set duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, FLAGS },
{ "color", "set noise color", OFFSET(color), AV_OPT_TYPE_INT, {.i64 = 0}, 0, NM_NB - 1, FLAGS, "color" },
{ "colour", "set noise color", OFFSET(color), AV_OPT_TYPE_INT, {.i64 = 0}, 0, NM_NB - 1, FLAGS, "color" },
{ "c", "set noise color", OFFSET(color), AV_OPT_TYPE_INT, {.i64 = 0}, 0, NM_NB - 1, FLAGS, "color" },
{ "white", 0, 0, AV_OPT_TYPE_CONST, {.i64 = NM_WHITE}, 0, 0, FLAGS, "color" },
{ "pink", 0, 0, AV_OPT_TYPE_CONST, {.i64 = NM_PINK}, 0, 0, FLAGS, "color" },
{ "brown", 0, 0, AV_OPT_TYPE_CONST, {.i64 = NM_BROWN}, 0, 0, FLAGS, "color" },
{ "blue", 0, 0, AV_OPT_TYPE_CONST, {.i64 = NM_BLUE}, 0, 0, FLAGS, "color" },
{ "violet", 0, 0, AV_OPT_TYPE_CONST, {.i64 = NM_VIOLET}, 0, 0, FLAGS, "color" },
{ "seed", "set random seed", OFFSET(seed), AV_OPT_TYPE_INT64, {.i64 = -1}, -1, UINT_MAX, FLAGS },
{ "s", "set random seed", OFFSET(seed), AV_OPT_TYPE_INT64, {.i64 = -1}, -1, UINT_MAX, FLAGS },
{ "nb_samples", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
{ "n", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
{NULL}
}

Definition at line 56 of file asrc_anoisesrc.c.

◆ anoisesrc_outputs

const AVFilterPad anoisesrc_outputs[]
static
Initial value:
= {
{
.name = "default",
.request_frame = request_frame,
.config_props = config_props,
},
{ NULL }
}

Definition at line 227 of file asrc_anoisesrc.c.

◆ ff_asrc_anoisesrc

AVFilter ff_asrc_anoisesrc
Initial value:
= {
.name = "anoisesrc",
.description = NULL_IF_CONFIG_SMALL("Generate a noise audio signal."),
.query_formats = query_formats,
.priv_size = sizeof(ANoiseSrcContext),
.priv_class = &anoisesrc_class,
}

Definition at line 237 of file asrc_anoisesrc.c.

NM_PINK
@ NM_PINK
Definition: asrc_anoisesrc.c:46
color
Definition: vf_paletteuse.c:588
AV_OPT_TYPE_DURATION
@ AV_OPT_TYPE_DURATION
Definition: opt.h:237
sample_rate
sample_rate
Definition: ffmpeg_filter.c:191
anoisesrc_outputs
static const AVFilterPad anoisesrc_outputs[]
Definition: asrc_anoisesrc.c:227
ANoiseSrcContext
Definition: asrc_anoisesrc.c:28
NM_WHITE
@ NM_WHITE
Definition: asrc_anoisesrc.c:45
duration
int64_t duration
Definition: movenc.c:63
AV_OPT_TYPE_DOUBLE
@ AV_OPT_TYPE_DOUBLE
Definition: opt.h:225
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AV_OPT_TYPE_INT64
@ AV_OPT_TYPE_INT64
Definition: opt.h:224
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
NM_VIOLET
@ NM_VIOLET
Definition: asrc_anoisesrc.c:49
NM_NB
@ NM_NB
Definition: asrc_anoisesrc.c:50
NM_BROWN
@ NM_BROWN
Definition: asrc_anoisesrc.c:47
NULL
#define NULL
Definition: coverity.c:32
query_formats
static av_cold int query_formats(AVFilterContext *ctx)
Definition: asrc_anoisesrc.c:80
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
seed
static unsigned int seed
Definition: videogen.c:78
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:188
config_props
static av_cold int config_props(AVFilterLink *outlink)
Definition: asrc_anoisesrc.c:169
OFFSET
#define OFFSET(x)
Definition: asrc_anoisesrc.c:53
NM_BLUE
@ NM_BLUE
Definition: asrc_anoisesrc.c:48
FLAGS
#define FLAGS
Definition: asrc_anoisesrc.c:54
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: asrc_anoisesrc.c:193
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232