Go to the source code of this file.
|
| enum | DataMode { MAGNITUDE
, PHASE
, DELAY
, NB_DATA
} |
| |
| enum | DisplayMode { LINE
, BAR
, DOT
, NB_MODES
} |
| |
| enum | ChannelMode { COMBINED
, SEPARATE
, NB_CMODES
} |
| |
| enum | FrequencyScale { FS_LINEAR
, FS_LOG
, FS_RLOG
, NB_FSCALES
} |
| |
| enum | AmplitudeScale {
AS_LINEAR
, AS_SQRT
, AS_CBRT
, AS_LOG
,
NB_ASCALES
} |
| |
|
| | AVFILTER_DEFINE_CLASS (showfreqs) |
| |
| static int | query_formats (const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out) |
| |
| 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, int64_t pts) |
| |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| |
| static int | activate (AVFilterContext *ctx) |
| |
| static av_cold void | uninit (AVFilterContext *ctx) |
| |
◆ OFFSET
◆ FLAGS
◆ RE
◆ IM
◆ DataMode
| Enumerator |
|---|
| MAGNITUDE | |
| PHASE | |
| DELAY | |
| NB_DATA | |
Definition at line 39 of file avf_showfreqs.c.
◆ DisplayMode
◆ ChannelMode
◆ FrequencyScale
| Enumerator |
|---|
| FS_LINEAR | |
| FS_LOG | |
| FS_RLOG | |
| NB_FSCALES | |
Definition at line 42 of file avf_showfreqs.c.
◆ AmplitudeScale
| Enumerator |
|---|
| 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()
◆ config_output()
◆ draw_dot()
| static void draw_dot |
( |
AVFrame * | out, |
|
|
int | x, |
|
|
int | y, |
|
|
uint8_t | fg[4] ) |
|
inlinestatic |
◆ get_sx()
◆ get_bsize()
◆ plot_freq()
◆ plot_freqs()
◆ filter_frame()
◆ activate()
◆ uninit()
◆ showfreqs_options
◆ showfreqs_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVBitStreamFilterLink *outlink)
Definition at line 544 of file avf_showfreqs.c.
◆ ff_avf_showfreqs
Initial value:= {
.p.name = "showfreqs",
.p.priv_class = &showfreqs_class,
}
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
static const AVFilterPad showfreqs_outputs[]
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_QUERY_FUNC2(func)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition at line 552 of file avf_showfreqs.c.