|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/intreadwrite.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "libavutil/xga_font_data.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | VectorscopeContext |
Macros | |
| #define | OFFSET(x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
| #define | TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
Enumerations | |
| enum | GraticuleType { GRAT_NONE , GRAT_GREEN , GRAT_COLOR , GRAT_INVERT , NB_GRATICULES } |
| enum | VectorscopeMode { TINT , COLOR , COLOR2 , COLOR3 , COLOR4 , COLOR5 , MODE_NB } |
Functions | |
| AVFILTER_DEFINE_CLASS (vectorscope) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_output (AVFilterLink *outlink) |
| static void | envelope_instant16 (VectorscopeContext *s, AVFrame *out) |
| static void | envelope_peak16 (VectorscopeContext *s, AVFrame *out) |
| static void | envelope_instant (VectorscopeContext *s, AVFrame *out) |
| static void | envelope_peak (VectorscopeContext *s, AVFrame *out) |
| static void | envelope16 (VectorscopeContext *s, AVFrame *out) |
| static void | envelope (VectorscopeContext *s, AVFrame *out) |
| static void | vectorscope16 (VectorscopeContext *s, AVFrame *in, AVFrame *out, int pd) |
| static void | vectorscope8 (VectorscopeContext *s, AVFrame *in, AVFrame *out, int pd) |
| static void | draw_dots (uint8_t *dst, int L, int v, float o) |
| static void | draw_idots (uint8_t *dst, int L, float o) |
| static void | draw_dots16 (uint16_t *dst, int L, int v, float o) |
| static void | draw_idots16 (uint16_t *dst, int L, int v, float o) |
| static void | none_graticule (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | draw_ihtext (AVFrame *out, int x, int y, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | draw_ihtext16 (AVFrame *out, int x, int y, float o1, float o2, const char *txt, const uint16_t color[4]) |
| static void | draw_htext (AVFrame *out, int x, int y, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | draw_htext16 (AVFrame *out, int x, int y, float o1, float o2, const char *txt, const uint16_t color[4]) |
| static void | color_graticule16 (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | color_graticule (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | green_graticule16 (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | green_graticule (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | invert_graticule16 (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static void | invert_graticule (VectorscopeContext *s, AVFrame *out, int X, int Y, int D, int P) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | config_input (AVFilterLink *inlink) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | vectorscope_options [] |
| static enum AVPixelFormat | out_yuv8_pix_fmts [] |
| static enum AVPixelFormat | out_yuv9_pix_fmts [] |
| static enum AVPixelFormat | out_yuv10_pix_fmts [] |
| static enum AVPixelFormat | out_yuv12_pix_fmts [] |
| static enum AVPixelFormat | out_rgb8_pix_fmts [] |
| static enum AVPixelFormat | out_rgb9_pix_fmts [] |
| static enum AVPixelFormat | out_rgb10_pix_fmts [] |
| static enum AVPixelFormat | out_rgb12_pix_fmts [] |
| static enum AVPixelFormat | in1_pix_fmts [] |
| static enum AVPixelFormat | in2_pix_fmts [] |
| static const char * | positions_name [] |
| static const uint16_t | positions [][14][3] |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| const FFFilter | ff_vf_vectorscope |
| #define OFFSET | ( | x | ) |
Definition at line 86 of file vf_vectorscope.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 87 of file vf_vectorscope.c.
Definition at line 88 of file vf_vectorscope.c.
| enum GraticuleType |
| Enumerator | |
|---|---|
| GRAT_NONE | |
| GRAT_GREEN | |
| GRAT_COLOR | |
| GRAT_INVERT | |
| NB_GRATICULES | |
Definition at line 32 of file vf_vectorscope.c.
| enum VectorscopeMode |
| Enumerator | |
|---|---|
| TINT | |
| COLOR | |
| COLOR2 | |
| COLOR3 | |
| COLOR4 | |
| COLOR5 | |
| MODE_NB | |
Definition at line 40 of file vf_vectorscope.c.
| AVFILTER_DEFINE_CLASS | ( | vectorscope | ) |
|
static |
Definition at line 212 of file vf_vectorscope.c.
|
static |
Definition at line 271 of file vf_vectorscope.c.
|
static |
Definition at line 293 of file vf_vectorscope.c.
Referenced by envelope16(), and envelope_peak16().
|
static |
Definition at line 314 of file vf_vectorscope.c.
Referenced by envelope16().
|
static |
Definition at line 345 of file vf_vectorscope.c.
Referenced by envelope(), and envelope_peak().
|
static |
Definition at line 365 of file vf_vectorscope.c.
Referenced by envelope().
|
static |
Definition at line 395 of file vf_vectorscope.c.
Referenced by vectorscope16().
|
static |
Definition at line 406 of file vf_vectorscope.c.
Referenced by vectorscope8().
|
static |
Definition at line 417 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 617 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 871 of file vf_vectorscope.c.
Referenced by color_graticule(), and green_graticule().
|
static |
Definition at line 894 of file vf_vectorscope.c.
Referenced by invert_graticule().
|
static |
Definition at line 916 of file vf_vectorscope.c.
Referenced by color_graticule16(), green_graticule16(), and invert_graticule16().
|
static |
Definition at line 939 of file vf_vectorscope.c.
Referenced by invert_graticule16().
|
static |
Definition at line 961 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 965 of file vf_vectorscope.c.
Referenced by invert_graticule().
|
static |
Definition at line 990 of file vf_vectorscope.c.
Referenced by invert_graticule16().
|
static |
Definition at line 1016 of file vf_vectorscope.c.
Referenced by color_graticule(), config_input(), and green_graticule().
|
static |
Definition at line 1042 of file vf_vectorscope.c.
Referenced by color_graticule16(), config_input(), and green_graticule16().
|
static |
Definition at line 1068 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1136 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1202 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1262 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1320 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1379 of file vf_vectorscope.c.
Referenced by config_input().
|
static |
Definition at line 1437 of file vf_vectorscope.c.
|
static |
Definition at line 1488 of file vf_vectorscope.c.
|
static |
Definition at line 1566 of file vf_vectorscope.c.
|
static |
Definition at line 90 of file vf_vectorscope.c.
|
static |
Definition at line 143 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 183 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 194 of file vf_vectorscope.c.
Referenced by query_formats().
|
static |
Definition at line 813 of file vf_vectorscope.c.
Referenced by color_graticule(), color_graticule16(), green_graticule(), green_graticule16(), invert_graticule(), and invert_graticule16().
|
static |
Definition at line 817 of file vf_vectorscope.c.
Referenced by color_graticule(), color_graticule16(), decode_10bit_pulse(), ff_print_formatted_eval_expr(), func_eval_expr_formatted(), green_graticule(), green_graticule16(), invert_graticule(), and invert_graticule16().
|
static |
Definition at line 1574 of file vf_vectorscope.c.
|
static |
Definition at line 1583 of file vf_vectorscope.c.
| const FFFilter ff_vf_vectorscope |
Definition at line 1591 of file vf_vectorscope.c.