|
FFmpeg
|
#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "drawutils.h"#include "filters.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | VibranceContext |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | R 0 |
| #define | G 1 |
| #define | B 2 |
| #define | A 3 |
| #define | OFFSET(x) |
| #define | VF AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
Functions | |
| static float | lerpf (float v0, float v1, float f) |
| static int | vibrance_slice8 (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
| static int | vibrance_slice16 (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
| static int | vibrance_slice8p (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
| static int | vibrance_slice16p (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter_frame (AVFilterLink *link, AVFrame *in) |
| static av_cold int | config_input (AVFilterLink *inlink) |
| AVFILTER_DEFINE_CLASS (vibrance) | |
Variables | |
| static enum AVPixelFormat | pixel_fmts [] |
| static const AVFilterPad | vibrance_inputs [] |
| static const AVOption | vibrance_options [] |
| const FFFilter | ff_vf_vibrance |
| #define R 0 |
Definition at line 28 of file vf_vibrance.c.
| #define G 1 |
Definition at line 29 of file vf_vibrance.c.
| #define B 2 |
Definition at line 30 of file vf_vibrance.c.
| #define A 3 |
Definition at line 31 of file vf_vibrance.c.
| #define OFFSET | ( | x | ) |
Definition at line 418 of file vf_vibrance.c.
Definition at line 419 of file vf_vibrance.c.
Definition at line 49 of file vf_vibrance.c.
Referenced by vibrance_slice16(), vibrance_slice16p(), vibrance_slice8(), and vibrance_slice8p().
|
static |
Definition at line 58 of file vf_vibrance.c.
Referenced by config_input().
|
static |
Definition at line 133 of file vf_vibrance.c.
Referenced by config_input().
|
static |
Definition at line 210 of file vf_vibrance.c.
Referenced by config_input().
|
static |
Definition at line 274 of file vf_vibrance.c.
Referenced by config_input().
|
static |
Definition at line 339 of file vf_vibrance.c.
|
static |
Definition at line 385 of file vf_vibrance.c.
| AVFILTER_DEFINE_CLASS | ( | vibrance | ) |
|
static |
Definition at line 370 of file vf_vibrance.c.
|
static |
Definition at line 409 of file vf_vibrance.c.
|
static |
Definition at line 421 of file vf_vibrance.c.
| const FFFilter ff_vf_vibrance |
Definition at line 435 of file vf_vibrance.c.