#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.
Variables |
static const AVOption | histogram_options [] |
static enum AVPixelFormat | color_pix_fmts [] |
static enum AVPixelFormat | levels_pix_fmts [] |
static const uint8_t | black_yuva_color [4] = { 0, 127, 127, 255 } |
static const uint8_t | black_gbrp_color [4] = { 0, 0, 0, 255 } |
static const uint8_t | white_yuva_color [4] = { 255, 127, 127, 255 } |
static const uint8_t | white_gbrp_color [4] = { 255, 255, 255, 255 } |
static const AVFilterPad | inputs [] |
static const AVFilterPad | outputs [] |
AVFilter | avfilter_vf_histogram |
Macro Definition Documentation
Typedef Documentation
Enumeration Type Documentation
- Enumerator:
MODE_LEVELS |
|
MODE_WAVEFORM |
|
MODE_COLOR |
|
MODE_COLOR2 |
|
MODE_NB |
|
Definition at line 30 of file vf_histogram.c.
Function Documentation
AVFILTER_DEFINE_CLASS |
( |
histogram |
| ) |
|
Variable Documentation
Initial value: {
.name = "histogram",
.priv_class = &histogram_class,
}
Definition at line 337 of file vf_histogram.c.
const uint8_t black_gbrp_color[4] = { 0, 0, 0, 255 } |
|
static |
const uint8_t black_yuva_color[4] = { 0, 127, 127, 255 } |
|
static |
Initial value: {
{
.name = "default",
},
}
Definition at line 317 of file vf_histogram.c.
Initial value: {
{
.name = "default",
},
}
Definition at line 328 of file vf_histogram.c.
const uint8_t white_gbrp_color[4] = { 255, 255, 255, 255 } |
|
static |
const uint8_t white_yuva_color[4] = { 255, 127, 127, 255 } |
|
static |