FFmpeg
|
#include <float.h>
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | SineContext |
Macros | |
#define | CONTEXT SineContext |
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | OPT_GENERIC(name, field, def, min, max, descr, type, deffield,...) |
#define | OPT_INT(name, field, def, min, max, descr,...) OPT_GENERIC(name, field, def, min, max, descr, INT, i64, __VA_ARGS__) |
#define | OPT_DBL(name, field, def, min, max, descr,...) OPT_GENERIC(name, field, def, min, max, descr, DOUBLE, dbl, __VA_ARGS__) |
#define | OPT_DUR(name, field, def, min, max, descr,...) OPT_GENERIC(name, field, def, min, max, descr, DURATION, str, __VA_ARGS__) |
#define | OPT_STR(name, field, def, min, max, descr,...) OPT_GENERIC(name, field, def, min, max, descr, STRING, str, __VA_ARGS__) |
#define | LOG_PERIOD 15 |
#define | AMPLITUDE 4095 |
#define | AMPLITUDE_SHIFT 3 |
Enumerations | |
enum | { VAR_N, VAR_PTS, VAR_T, VAR_TB, VAR_VARS_NB } |
Functions | |
AVFILTER_DEFINE_CLASS (sine) | |
static void | make_sin_table (int16_t *sin) |
static av_cold int | init (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
static av_cold int | query_formats (AVFilterContext *ctx) |
static av_cold int | config_props (AVFilterLink *outlink) |
static int | request_frame (AVFilterLink *outlink) |
Variables | |
static const AVOption | sine_options [] |
static const char *const | var_names [] |
static const AVFilterPad | sine_outputs [] |
AVFilter | ff_asrc_sine |
#define CONTEXT SineContext |
Definition at line 50 of file asrc_sine.c.
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 51 of file asrc_sine.c.
Definition at line 53 of file asrc_sine.c.
#define OPT_INT | ( | name, | |
field, | |||
def, | |||
min, | |||
max, | |||
descr, | |||
... | |||
) | OPT_GENERIC(name, field, def, min, max, descr, INT, i64, __VA_ARGS__) |
Definition at line 57 of file asrc_sine.c.
#define OPT_DBL | ( | name, | |
field, | |||
def, | |||
min, | |||
max, | |||
descr, | |||
... | |||
) | OPT_GENERIC(name, field, def, min, max, descr, DOUBLE, dbl, __VA_ARGS__) |
Definition at line 60 of file asrc_sine.c.
#define OPT_DUR | ( | name, | |
field, | |||
def, | |||
min, | |||
max, | |||
descr, | |||
... | |||
) | OPT_GENERIC(name, field, def, min, max, descr, DURATION, str, __VA_ARGS__) |
Definition at line 63 of file asrc_sine.c.
#define OPT_STR | ( | name, | |
field, | |||
def, | |||
min, | |||
max, | |||
descr, | |||
... | |||
) | OPT_GENERIC(name, field, def, min, max, descr, STRING, str, __VA_ARGS__) |
Definition at line 66 of file asrc_sine.c.
#define LOG_PERIOD 15 |
Definition at line 84 of file asrc_sine.c.
Referenced by init(), make_sin_table(), and request_frame().
#define AMPLITUDE 4095 |
Definition at line 85 of file asrc_sine.c.
Referenced by make_sin_table().
#define AMPLITUDE_SHIFT 3 |
Definition at line 86 of file asrc_sine.c.
Referenced by make_sin_table().
anonymous enum |
Enumerator | |
---|---|
VAR_N | |
VAR_PTS | |
VAR_T | |
VAR_TB | |
VAR_VARS_NB |
Definition at line 136 of file asrc_sine.c.
AVFILTER_DEFINE_CLASS | ( | sine | ) |
|
static |
Definition at line 88 of file asrc_sine.c.
Referenced by init().
|
static |
Definition at line 144 of file asrc_sine.c.
|
static |
Definition at line 170 of file asrc_sine.c.
|
static |
Definition at line 179 of file asrc_sine.c.
|
static |
Definition at line 210 of file asrc_sine.c.
|
static |
Definition at line 217 of file asrc_sine.c.
|
static |
Definition at line 69 of file asrc_sine.c.
|
static |
Definition at line 128 of file asrc_sine.c.
Referenced by init().
|
static |
Definition at line 262 of file asrc_sine.c.
AVFilter ff_asrc_sine |
Definition at line 272 of file asrc_sine.c.