Go to the source code of this file.
|
| enum | DataMode {
MAGNITUDE
, PHASE
, DELAY
, NB_DATA
,
D_MAGNITUDE
, D_PHASE
, NB_DMODES
} |
| |
| enum | DisplayMode {
SINGLE
, SEPARATE
, NB_DMODES
, LINE
,
BAR
, DOT
, NB_MODES
, COMBINED
,
SEPARATE
, NB_MODES
} |
| |
| enum | ChannelMode { COMBINED
, SEPARATE
, NB_CMODES
} |
| |
| enum | FrequencyScale {
FS_LINEAR
, FS_LOG
, FS_RLOG
, NB_FSCALES
,
F_LINEAR
, F_LOG
, NB_FSCALES
} |
| |
| enum | AmplitudeScale {
ALINEAR
, ALOG
, NB_ASCALES
, AS_LINEAR
,
AS_SQRT
, AS_CBRT
, AS_LOG
, NB_ASCALES
} |
| |
|
| | AVFILTER_DEFINE_CLASS (showfreqs) |
| |
| static int | query_formats (AVFilterContext *ctx) |
| |
| static av_cold int | init (AVFilterContext *ctx) |
| |
| static int | config_output (AVFilterLink *outlink) |
| |
| static void | draw_dot (AVFrame *out, int x, int y, uint8_t fg[4]) |
| |
| static int | get_sx (ShowFreqsContext *s, int f) |
| |
| static float | get_bsize (ShowFreqsContext *s, int f) |
| |
| static void | plot_freq (ShowFreqsContext *s, int ch, double a, int f, uint8_t fg[4], int *prev_y, AVFrame *out, AVFilterLink *outlink) |
| |
| static int | plot_freqs (AVFilterLink *inlink, AVFrame *in) |
| |
| static int | filter_frame (AVFilterLink *inlink) |
| |
| static int | activate (AVFilterContext *ctx) |
| |
| static av_cold void | uninit (AVFilterContext *ctx) |
| |
◆ OFFSET
◆ FLAGS
◆ RE
| #define RE |
( |
|
x, |
|
|
|
ch |
|
) |
| s->fft_data[ch][x].re |
◆ IM
| #define IM |
( |
|
x, |
|
|
|
ch |
|
) |
| s->fft_data[ch][x].im |
| #define M |
( |
|
a, |
|
|
|
b |
|
) |
| (sqrt((a) * (a) + (b) * (b))) |
| #define P |
( |
|
a, |
|
|
|
b |
|
) |
| (atan2((b), (a))) |
◆ DataMode
| Enumerator |
|---|
| MAGNITUDE | |
| PHASE | |
| DELAY | |
| NB_DATA | |
| D_MAGNITUDE | |
| D_PHASE | |
| NB_DMODES | |
Definition at line 39 of file avf_showfreqs.c.
◆ DisplayMode
| Enumerator |
|---|
| SINGLE | |
| SEPARATE | |
| NB_DMODES | |
| LINE | |
| BAR | |
| DOT | |
| NB_MODES | |
| COMBINED | |
| SEPARATE | |
| NB_MODES | |
Definition at line 40 of file avf_showfreqs.c.
◆ ChannelMode
◆ FrequencyScale
| Enumerator |
|---|
| FS_LINEAR | |
| FS_LOG | |
| FS_RLOG | |
| NB_FSCALES | |
| F_LINEAR | |
| F_LOG | |
| NB_FSCALES | |
Definition at line 42 of file avf_showfreqs.c.
◆ AmplitudeScale
| Enumerator |
|---|
| ALINEAR | |
| ALOG | |
| NB_ASCALES | |
| AS_LINEAR | |
| AS_SQRT | |
| AS_CBRT | |
| AS_LOG | |
| NB_ASCALES | |
Definition at line 43 of file avf_showfreqs.c.
◆ AVFILTER_DEFINE_CLASS()
| AVFILTER_DEFINE_CLASS |
( |
showfreqs |
| ) |
|
◆ query_formats()
◆ init()
◆ config_output()
◆ draw_dot()
◆ get_sx()
◆ get_bsize()
◆ plot_freq()
◆ plot_freqs()
◆ filter_frame()
◆ activate()
◆ uninit()
◆ showfreqs_options
◆ showfreqs_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 542 of file avf_showfreqs.c.
◆ showfreqs_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVFilterLink *outlink)
Definition at line 550 of file avf_showfreqs.c.
◆ ff_avf_showfreqs
Initial value:= {
.name = "showfreqs",
.priv_class = &showfreqs_class,
}
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static const AVFilterPad showfreqs_outputs[]
static const AVFilterPad showfreqs_inputs[]
static int query_formats(AVFilterContext *ctx)
static int activate(AVFilterContext *ctx)
static av_cold int init(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition at line 559 of file avf_showfreqs.c.