|
FFmpeg
|
#include "float.h"#include "libavutil/eval.h"#include "libavutil/intreadwrite.h"#include "libavutil/opt.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | DrawGraphContext |
Macros | |
| #define | OFFSET(x) offsetof(DrawGraphContext, x) |
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Enumerations | |
| enum | { VAR_MAX, VAR_MIN, VAR_VAL, VAR_VARS_NB } |
Functions | |
| static av_cold int | init (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static void | clear_image (DrawGraphContext *s, AVFrame *out, AVFilterLink *outlink) |
| static void | draw_dot (int fg, int x, int y, AVFrame *out) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | config_output (AVFilterLink *outlink) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | drawgraph_options [] |
| static const char *const | var_names [] = { "MAX", "MIN", "VAL", NULL } |
| #define OFFSET | ( | x | ) | offsetof(DrawGraphContext, x) |
Definition at line 49 of file f_drawgraph.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 50 of file f_drawgraph.c.
| anonymous enum |
| Enumerator | |
|---|---|
| VAR_MAX | |
| VAR_MIN | |
| VAR_VAL | |
| VAR_VARS_NB | |
Definition at line 79 of file f_drawgraph.c.
|
static |
Definition at line 81 of file f_drawgraph.c.
|
static |
Definition at line 106 of file f_drawgraph.c.
|
static |
Definition at line 122 of file f_drawgraph.c.
Referenced by filter_frame().
Definition at line 132 of file f_drawgraph.c.
Referenced by filter_frame().
|
static |
Definition at line 137 of file f_drawgraph.c.
|
static |
Definition at line 264 of file f_drawgraph.c.
|
static |
Definition at line 275 of file f_drawgraph.c.
|
static |
Definition at line 52 of file f_drawgraph.c.
|
static |
Definition at line 78 of file f_drawgraph.c.
Referenced by init().
1.8.6