FFmpeg
Loading...
Searching...
No Matches
vf_vectorscope.c File Reference
#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
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET ( x)
Value:

Definition at line 86 of file vf_vectorscope.c.

◆ FLAGS

Definition at line 87 of file vf_vectorscope.c.

◆ TFLAGS

Enumeration Type Documentation

◆ GraticuleType

Enumerator
GRAT_NONE 
GRAT_GREEN 
GRAT_COLOR 
GRAT_INVERT 
NB_GRATICULES 

Definition at line 32 of file vf_vectorscope.c.

◆ VectorscopeMode

Enumerator
TINT 
COLOR 
COLOR2 
COLOR3 
COLOR4 
COLOR5 
MODE_NB 

Definition at line 40 of file vf_vectorscope.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( vectorscope )

◆ query_formats()

static int query_formats ( AVFilterContext * ctx)
static

Definition at line 212 of file vf_vectorscope.c.

◆ config_output()

static int config_output ( AVFilterLink * outlink)
static

Definition at line 271 of file vf_vectorscope.c.

◆ envelope_instant16()

static void envelope_instant16 ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 293 of file vf_vectorscope.c.

Referenced by envelope16(), and envelope_peak16().

◆ envelope_peak16()

static void envelope_peak16 ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 314 of file vf_vectorscope.c.

Referenced by envelope16().

◆ envelope_instant()

static void envelope_instant ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 345 of file vf_vectorscope.c.

Referenced by envelope(), and envelope_peak().

◆ envelope_peak()

static void envelope_peak ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 365 of file vf_vectorscope.c.

Referenced by envelope().

◆ envelope16()

static void envelope16 ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 395 of file vf_vectorscope.c.

Referenced by vectorscope16().

◆ envelope()

static void envelope ( VectorscopeContext * s,
AVFrame * out )
static

Definition at line 406 of file vf_vectorscope.c.

Referenced by vectorscope8().

◆ vectorscope16()

static void vectorscope16 ( VectorscopeContext * s,
AVFrame * in,
AVFrame * out,
int pd )
static

Definition at line 417 of file vf_vectorscope.c.

Referenced by config_input().

◆ vectorscope8()

static void vectorscope8 ( VectorscopeContext * s,
AVFrame * in,
AVFrame * out,
int pd )
static

Definition at line 617 of file vf_vectorscope.c.

Referenced by config_input().

◆ draw_dots()

static void draw_dots ( uint8_t * dst,
int L,
int v,
float o )
static

Definition at line 871 of file vf_vectorscope.c.

Referenced by color_graticule(), and green_graticule().

◆ draw_idots()

static void draw_idots ( uint8_t * dst,
int L,
float o )
static

Definition at line 894 of file vf_vectorscope.c.

Referenced by invert_graticule().

◆ draw_dots16()

static void draw_dots16 ( uint16_t * dst,
int L,
int v,
float o )
static

Definition at line 916 of file vf_vectorscope.c.

Referenced by color_graticule16(), green_graticule16(), and invert_graticule16().

◆ draw_idots16()

static void draw_idots16 ( uint16_t * dst,
int L,
int v,
float o )
static

Definition at line 939 of file vf_vectorscope.c.

Referenced by invert_graticule16().

◆ none_graticule()

static void none_graticule ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 961 of file vf_vectorscope.c.

Referenced by config_input().

◆ draw_ihtext()

static void draw_ihtext ( AVFrame * out,
int x,
int y,
float o1,
float o2,
const char * txt,
const uint8_t color[4] )
static

Definition at line 965 of file vf_vectorscope.c.

Referenced by invert_graticule().

◆ draw_ihtext16()

static void draw_ihtext16 ( AVFrame * out,
int x,
int y,
float o1,
float o2,
const char * txt,
const uint16_t color[4] )
static

Definition at line 990 of file vf_vectorscope.c.

Referenced by invert_graticule16().

◆ draw_htext()

static void draw_htext ( AVFrame * out,
int x,
int y,
float o1,
float o2,
const char * txt,
const uint8_t color[4] )
static

Definition at line 1016 of file vf_vectorscope.c.

Referenced by color_graticule(), config_input(), and green_graticule().

◆ draw_htext16()

static void draw_htext16 ( AVFrame * out,
int x,
int y,
float o1,
float o2,
const char * txt,
const uint16_t color[4] )
static

Definition at line 1042 of file vf_vectorscope.c.

Referenced by color_graticule16(), config_input(), and green_graticule16().

◆ color_graticule16()

static void color_graticule16 ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1068 of file vf_vectorscope.c.

Referenced by config_input().

◆ color_graticule()

static void color_graticule ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1136 of file vf_vectorscope.c.

Referenced by config_input().

◆ green_graticule16()

static void green_graticule16 ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1202 of file vf_vectorscope.c.

Referenced by config_input().

◆ green_graticule()

static void green_graticule ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1262 of file vf_vectorscope.c.

Referenced by config_input().

◆ invert_graticule16()

static void invert_graticule16 ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1320 of file vf_vectorscope.c.

Referenced by config_input().

◆ invert_graticule()

static void invert_graticule ( VectorscopeContext * s,
AVFrame * out,
int X,
int Y,
int D,
int P )
static

Definition at line 1379 of file vf_vectorscope.c.

Referenced by config_input().

◆ filter_frame()

static int filter_frame ( AVFilterLink * inlink,
AVFrame * in )
static

Definition at line 1437 of file vf_vectorscope.c.

◆ config_input()

static int config_input ( AVFilterLink * inlink)
static

Definition at line 1488 of file vf_vectorscope.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext * ctx)
static

Definition at line 1566 of file vf_vectorscope.c.

Variable Documentation

◆ vectorscope_options

const AVOption vectorscope_options[]
static

Definition at line 90 of file vf_vectorscope.c.

◆ out_yuv8_pix_fmts

enum AVPixelFormat out_yuv8_pix_fmts[]
static
Initial value:
= {
}
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174

Definition at line 143 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_yuv9_pix_fmts

enum AVPixelFormat out_yuv9_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUVA444P9
Definition pixfmt.h:595

Definition at line 148 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_yuv10_pix_fmts

enum AVPixelFormat out_yuv10_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548

Definition at line 153 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_yuv12_pix_fmts

enum AVPixelFormat out_yuv12_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUVA444P12
Definition pixfmt.h:600

Definition at line 158 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_rgb8_pix_fmts

enum AVPixelFormat out_rgb8_pix_fmts[]
static
Initial value:
= {
}
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165

Definition at line 163 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_rgb9_pix_fmts

enum AVPixelFormat out_rgb9_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563

Definition at line 168 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_rgb10_pix_fmts

enum AVPixelFormat out_rgb10_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_GBRAP10
Definition pixfmt.h:568

Definition at line 173 of file vf_vectorscope.c.

Referenced by query_formats().

◆ out_rgb12_pix_fmts

enum AVPixelFormat out_rgb12_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_GBRAP12
Definition pixfmt.h:569
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565

Definition at line 178 of file vf_vectorscope.c.

Referenced by query_formats().

◆ in1_pix_fmts

enum AVPixelFormat in1_pix_fmts[]
static

◆ in2_pix_fmts

enum AVPixelFormat in2_pix_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_YUV440P12
Definition pixfmt.h:551
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUVA420P10
Definition pixfmt.h:596
#define AV_PIX_FMT_YUVA422P9
Definition pixfmt.h:594
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_YUVA420P9
Definition pixfmt.h:593
#define AV_PIX_FMT_YUVA422P10
Definition pixfmt.h:597
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition pixfmt.h:106
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition pixfmt.h:108
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition pixfmt.h:283
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition pixfmt.h:86
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition pixfmt.h:173
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition pixfmt.h:85
#define AV_PIX_FMT_YUVA422P12
Definition pixfmt.h:599

Definition at line 194 of file vf_vectorscope.c.

Referenced by query_formats().

◆ positions_name

const char* positions_name[]
static
Initial value:
= {
"R", "B", "Cy", "Yl", "G", "Mg",
}

Definition at line 813 of file vf_vectorscope.c.

Referenced by color_graticule(), color_graticule16(), green_graticule(), green_graticule16(), invert_graticule(), and invert_graticule16().

◆ positions

◆ inputs

const AVFilterPad inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
.config_props = config_input,
},
}
static int config_input(AVFilterLink *inlink)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200

Definition at line 1574 of file vf_vectorscope.c.

◆ outputs

const AVFilterPad outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_output,
},
}
static int config_output(AVBitStreamFilterLink *outlink)

Definition at line 1583 of file vf_vectorscope.c.

◆ ff_vf_vectorscope

const FFFilter ff_vf_vectorscope
Initial value:
= {
.p.name = "vectorscope",
.p.description = NULL_IF_CONFIG_SMALL("Video vectorscope."),
.p.priv_class = &vectorscope_class,
.priv_size = sizeof(VectorscopeContext),
.process_command = ff_filter_process_command,
}
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
static const AVFilterPad inputs[]
Definition af_aap.c:299
static const AVFilterPad outputs[]
Definition af_aap.c:310
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_QUERY_FUNC(func)
Definition filters.h:238
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88

Definition at line 1591 of file vf_vectorscope.c.