FFmpeg
|
#include "config.h"
#include "libavcodec/avfft.h"
#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "libavutil/xga_font_data.h"
#include "libavutil/eval.h"
#include "libavutil/pixdesc.h"
#include "libavutil/time.h"
#include "avfilter.h"
#include "internal.h"
#include "lavfutils.h"
#include "lswsutils.h"
#include "avf_showcqt.h"
Go to the source code of this file.
Macros | |
#define | BASEFREQ 20.01523126408007475 |
#define | ENDFREQ 20495.59681441799654 |
#define | TLENGTH "384*tc/(384+tc*f)" |
#define | TLENGTH_MIN 0.001 |
#define | VOLUME_MAX 100.0 |
#define | FONTCOLOR |
#define | CSCHEME "1|0.5|0|0|0.5|1" |
#define | PTS_STEP 10 |
#define | PTS_TOLERANCE 1 |
#define | OFFSET(x) offsetof(ShowCQTContext, x) |
#define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) |
#define | DRAW_BAR_WITH_CHROMA(x) |
#define | DRAW_BAR_WITHOUT_CHROMA(x) |
#define | BLEND_WITH_CHROMA(c) |
#define | BLEND_WITHOUT_CHROMA(c, alpha_inc) |
#define | BLEND_CHROMA2(c) |
#define | BLEND_CHROMA2x2(c) |
#define | UPDATE_TIME(t) |
Variables | |
static const AVOption | showcqt_options [] |
static const AVFilterPad | showcqt_inputs [] |
static const AVFilterPad | showcqt_outputs [] |
AVFilter | ff_avf_showcqt |
#define BASEFREQ 20.01523126408007475 |
Definition at line 45 of file avf_showcqt.c.
Referenced by init_axis_color().
#define ENDFREQ 20495.59681441799654 |
Definition at line 46 of file avf_showcqt.c.
Referenced by init_axis_color().
#define TLENGTH "384*tc/(384+tc*f)" |
Definition at line 47 of file avf_showcqt.c.
#define TLENGTH_MIN 0.001 |
Definition at line 48 of file avf_showcqt.c.
Referenced by init_cqt().
#define VOLUME_MAX 100.0 |
Definition at line 49 of file avf_showcqt.c.
Referenced by init_volume().
#define FONTCOLOR |
Definition at line 50 of file avf_showcqt.c.
#define CSCHEME "1|0.5|0|0|0.5|1" |
Definition at line 53 of file avf_showcqt.c.
#define PTS_STEP 10 |
Definition at line 54 of file avf_showcqt.c.
Referenced by config_output(), filter_frame(), and plot_cqt().
#define PTS_TOLERANCE 1 |
Definition at line 55 of file avf_showcqt.c.
Referenced by filter_frame().
#define OFFSET | ( | x | ) | offsetof(ShowCQTContext, x) |
Definition at line 57 of file avf_showcqt.c.
#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 58 of file avf_showcqt.c.
#define DRAW_BAR_WITH_CHROMA | ( | x | ) |
Definition at line 782 of file avf_showcqt.c.
Referenced by draw_bar_yuv().
#define DRAW_BAR_WITHOUT_CHROMA | ( | x | ) |
Definition at line 797 of file avf_showcqt.c.
Referenced by draw_bar_yuv().
#define BLEND_WITH_CHROMA | ( | c | ) |
Definition at line 888 of file avf_showcqt.c.
Referenced by draw_axis_yuv().
#define BLEND_WITHOUT_CHROMA | ( | c, | |
alpha_inc | |||
) |
Definition at line 908 of file avf_showcqt.c.
Referenced by draw_axis_yuv().
#define BLEND_CHROMA2 | ( | c | ) |
Definition at line 922 of file avf_showcqt.c.
Referenced by draw_axis_yuv().
#define BLEND_CHROMA2x2 | ( | c | ) |
Definition at line 939 of file avf_showcqt.c.
Referenced by draw_axis_yuv().
#define UPDATE_TIME | ( | t | ) |
Referenced by plot_cqt().
AVFILTER_DEFINE_CLASS | ( | showcqt | ) |
|
static |
Definition at line 107 of file avf_showcqt.c.
Referenced by config_output(), and uninit().
|
static |
Definition at line 163 of file avf_showcqt.c.
Referenced by config_output(), and init_axis_color().
|
static |
Definition at line 183 of file avf_showcqt.c.
Referenced by init_cqt(), and init_volume().
|
static |
Definition at line 204 of file avf_showcqt.c.
Referenced by init_volume().
|
static |
Definition at line 212 of file avf_showcqt.c.
Referenced by init_volume().
|
static |
Definition at line 219 of file avf_showcqt.c.
Referenced by init_volume().
|
static |
Definition at line 226 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 268 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 295 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 357 of file avf_showcqt.c.
Referenced by config_output(), init_axis_empty(), and init_axis_from_font().
|
static |
Definition at line 383 of file avf_showcqt.c.
Referenced by init_axis_empty(), init_axis_from_file(), and init_axis_from_font().
|
static |
Definition at line 394 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 401 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 433 of file avf_showcqt.c.
Referenced by init_axis_color().
|
static |
Definition at line 438 of file avf_showcqt.c.
Referenced by init_axis_color().
|
static |
Definition at line 444 of file avf_showcqt.c.
Referenced by init_axis_color().
|
static |
Definition at line 450 of file avf_showcqt.c.
Referenced by init_axis_color().
|
static |
Definition at line 456 of file avf_showcqt.c.
Referenced by init_axis_from_font().
|
static |
Definition at line 503 of file avf_showcqt.c.
Referenced by init_axis_from_font(), and render_fontconfig().
|
static |
Definition at line 587 of file avf_showcqt.c.
Referenced by init_axis_from_font().
Definition at line 651 of file avf_showcqt.c.
Referenced by init_axis_from_font().
|
static |
Definition at line 677 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 718 of file avf_showcqt.c.
Referenced by process_cqt(), rgb_from_cqt(), and yuv_from_cqt().
|
static |
Definition at line 731 of file avf_showcqt.c.
Referenced by process_cqt().
|
static |
Definition at line 741 of file avf_showcqt.c.
Referenced by process_cqt().
|
static |
Definition at line 755 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 808 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 859 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 961 of file avf_showcqt.c.
Referenced by config_output().
Definition at line 1026 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 1050 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 1062 of file avf_showcqt.c.
Referenced by config_output().
|
static |
Definition at line 1081 of file avf_showcqt.c.
Referenced by plot_cqt().
|
static |
Definition at line 1127 of file avf_showcqt.c.
Referenced by filter_frame().
|
static |
Definition at line 1189 of file avf_showcqt.c.
Referenced by init().
|
static |
Definition at line 1224 of file avf_showcqt.c.
Referenced by init().
|
static |
Definition at line 1246 of file avf_showcqt.c.
|
static |
Definition at line 1303 of file avf_showcqt.c.
|
static |
Definition at line 1308 of file avf_showcqt.c.
|
static |
Definition at line 1343 of file avf_showcqt.c.
|
static |
Definition at line 1456 of file avf_showcqt.c.
Referenced by request_frame().
|
static |
Definition at line 1537 of file avf_showcqt.c.
|
static |
Definition at line 60 of file avf_showcqt.c.
|
static |
Definition at line 1548 of file avf_showcqt.c.
|
static |
Definition at line 1557 of file avf_showcqt.c.
AVFilter ff_avf_showcqt |
Definition at line 1567 of file avf_showcqt.c.