|
FFmpeg
|
#include "libavutil/channel_layout.h"#include "libavutil/eval.h"#include "libavutil/intreadwrite.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/xga_font_data.h"#include "avfilter.h"#include "formats.h"#include "audio.h"#include "video.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | ShowVolumeContext |
Macros | |
| #define | OFFSET(x) offsetof(ShowVolumeContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Enumerations | |
| enum | { VAR_VOLUME, VAR_CHANNEL, VAR_VARS_NB } |
Functions | |
| AVFILTER_DEFINE_CLASS (showvolume) | |
| static av_cold int | init (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static void | drawtext (AVFrame *pic, int x, int y, const char *txt) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *insamples) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | showvolume_options [] |
| static const char *const | var_names [] = { "VOLUME", "CHANNEL", NULL } |
| static const AVFilterPad | showvolume_inputs [] |
| static const AVFilterPad | showvolume_outputs [] |
| AVFilter | ff_avf_showvolume |
| #define OFFSET | ( | x | ) | offsetof(ShowVolumeContext, x) |
Definition at line 45 of file avf_showvolume.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 46 of file avf_showvolume.c.
| anonymous enum |
| Enumerator | |
|---|---|
| VAR_VOLUME | |
| VAR_CHANNEL | |
| VAR_VARS_NB | |
Definition at line 63 of file avf_showvolume.c.
| AVFILTER_DEFINE_CLASS | ( | showvolume | ) |
|
static |
Definition at line 65 of file avf_showvolume.c.
|
static |
Definition at line 80 of file avf_showvolume.c.
|
static |
Definition at line 112 of file avf_showvolume.c.
|
static |
Definition at line 126 of file avf_showvolume.c.
Definition at line 139 of file avf_showvolume.c.
Referenced by avfilter_register_all(), and filter_frame().
|
static |
Definition at line 162 of file avf_showvolume.c.
|
static |
Definition at line 224 of file avf_showvolume.c.
|
static |
Definition at line 48 of file avf_showvolume.c.
|
static |
Definition at line 62 of file avf_showvolume.c.
Referenced by init().
|
static |
Definition at line 232 of file avf_showvolume.c.
|
static |
Definition at line 242 of file avf_showvolume.c.
| AVFilter ff_avf_showvolume |
Definition at line 251 of file avf_showvolume.c.
1.8.6