|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | VectorscopeContext |
Macros | |
| #define | OFFSET(x) offsetof(VectorscopeContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Enumerations | |
| enum | VectorscopeMode { GRAY, COLOR, COLOR2, COLOR3, COLOR4, MODE_NB } |
Functions | |
| AVFILTER_DEFINE_CLASS (vectorscope) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static void | envelope_instant (VectorscopeContext *s, AVFrame *out) |
| static void | envelope_peak (VectorscopeContext *s, AVFrame *out) |
| static void | envelope (VectorscopeContext *s, AVFrame *out) |
| static void | vectorscope (VectorscopeContext *s, AVFrame *in, AVFrame *out, int pd) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
Variables | |
| static const AVOption | vectorscope_options [] |
| static enum AVPixelFormat | out_yuv_pix_fmts [] |
| static enum AVPixelFormat | out_rgb_pix_fmts [] |
| static enum AVPixelFormat | in1_pix_fmts [] |
| static enum AVPixelFormat | in2_pix_fmts [] |
| static const uint8_t | black_yuva_color [4] = { 0, 127, 127, 0 } |
| static const uint8_t | black_gbrp_color [4] = { 0, 0, 0, 0 } |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| AVFilter | ff_vf_vectorscope |
| #define OFFSET | ( | x | ) | offsetof(VectorscopeContext, x) |
Definition at line 54 of file vf_vectorscope.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 55 of file vf_vectorscope.c.
| enum VectorscopeMode |
| Enumerator | |
|---|---|
| GRAY | |
| COLOR | |
| COLOR2 | |
| COLOR3 | |
| COLOR4 | |
| MODE_NB | |
Definition at line 30 of file vf_vectorscope.c.
| AVFILTER_DEFINE_CLASS | ( | vectorscope | ) |
|
static |
Definition at line 106 of file vf_vectorscope.c.
|
static |
Definition at line 150 of file vf_vectorscope.c.
|
static |
Definition at line 187 of file vf_vectorscope.c.
|
static |
Definition at line 199 of file vf_vectorscope.c.
Referenced by envelope(), and envelope_peak().
|
static |
Definition at line 219 of file vf_vectorscope.c.
Referenced by envelope().
|
static |
Definition at line 249 of file vf_vectorscope.c.
Referenced by vectorscope().
|
static |
Definition at line 260 of file vf_vectorscope.c.
Referenced by avfilter_register_all(), and filter_frame().
|
static |
Definition at line 408 of file vf_vectorscope.c.
|
static |
Definition at line 57 of file vf_vectorscope.c.
|
static |
Definition at line 80 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 85 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 90 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 96 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 147 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 148 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 436 of file vf_vectorscope.c.
|
static |
Definition at line 446 of file vf_vectorscope.c.
| AVFilter ff_vf_vectorscope |
Definition at line 455 of file vf_vectorscope.c.
1.8.6