|
FFmpeg
|
#include "config_components.h"#include "libavutil/colorspace.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/pixdesc.h"#include "libavutil/imgutils.h"#include "libavutil/intreadwrite.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | HistogramContext |
Macros | |
| #define | OFFSET(x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
| #define | COMMON_OPTIONS |
Functions | |
| AVFILTER_DEFINE_CLASS (histogram) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
Variables | |
| static const AVOption | histogram_options [] |
| static enum AVPixelFormat | levels_in_pix_fmts [] |
| static enum AVPixelFormat | levels_out_yuv8_pix_fmts [] |
| static enum AVPixelFormat | levels_out_yuv9_pix_fmts [] |
| static enum AVPixelFormat | levels_out_yuv10_pix_fmts [] |
| static enum AVPixelFormat | levels_out_yuv12_pix_fmts [] |
| static enum AVPixelFormat | levels_out_rgb8_pix_fmts [] |
| static enum AVPixelFormat | levels_out_rgb9_pix_fmts [] |
| static enum AVPixelFormat | levels_out_rgb10_pix_fmts [] |
| static enum AVPixelFormat | levels_out_rgb12_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 uint8_t | gray_color [4] = { 127, 127, 127, 255 } |
| static const uint8_t | red_yuva_color [4] = { 127, 127, 255, 255 } |
| static const uint8_t | red_gbrp_color [4] = { 255, 0, 0, 255 } |
| static const uint8_t | green_yuva_color [4] = { 255, 127, 127, 255 } |
| static const uint8_t | igreen_yuva_color [4] = { 0, 127, 127, 255 } |
| static const uint8_t | green_gbrp_color [4] = { 0, 255, 0, 255 } |
| static const uint8_t | blue_yuva_color [4] = { 127, 255, 127, 255 } |
| static const uint8_t | blue_gbrp_color [4] = { 0, 0, 255, 255 } |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| #define OFFSET | ( | x | ) |
Definition at line 66 of file vf_histogram.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 67 of file vf_histogram.c.
| #define COMMON_OPTIONS |
Definition at line 69 of file vf_histogram.c.
| AVFILTER_DEFINE_CLASS | ( | histogram | ) |
|
static |
Definition at line 166 of file vf_histogram.c.
|
static |
Definition at line 230 of file vf_histogram.c.
|
static |
Definition at line 371 of file vf_histogram.c.
|
static |
Definition at line 402 of file vf_histogram.c.
|
static |
Definition at line 82 of file vf_histogram.c.
|
static |
Definition at line 107 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 126 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 131 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 136 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 141 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 146 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 151 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 156 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 161 of file vf_histogram.c.
Referenced by query_formats().
|
static |
Definition at line 217 of file vf_histogram.c.
Referenced by config_input(), and config_input().
|
static |
Definition at line 218 of file vf_histogram.c.
Referenced by config_input(), and config_input().
|
static |
Definition at line 219 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 220 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 221 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 222 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 223 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 224 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 225 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 226 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 227 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 228 of file vf_histogram.c.
Referenced by config_input().
|
static |
Definition at line 621 of file vf_histogram.c.
|
static |
Definition at line 630 of file vf_histogram.c.