|
FFmpeg
|
#include "libavutil/avstring.h"#include "libavutil/eval.h"#include "libavutil/imgutils.h"#include "libavutil/intreadwrite.h"#include "libavutil/opt.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.
Data Structures | |
| struct | ChromaShiftContext |
Macros | |
| #define | DEFINE_SMEAR(depth, type, div) |
| #define | DEFINE_WRAP(depth, type, div) |
| #define | DEFINE_RGBASMEAR(depth, type, div) |
| #define | DEFINE_RGBAWRAP(depth, type, div) |
| #define | OFFSET(x) offsetof(ChromaShiftContext, x) |
| #define | VFR AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM |
Functions | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | config_input (AVFilterLink *inlink) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
| AVFILTER_DEFINE_CLASS (chromashift) | |
| AVFILTER_DEFINE_CLASS (rgbashift) | |
Variables | |
| static const AVOption | chromashift_options [] |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| AVFilter | ff_vf_chromashift |
| static const AVOption | rgbashift_options [] |
| AVFilter | ff_vf_rgbashift |
| #define DEFINE_SMEAR | ( | depth, | |
| type, | |||
| div | |||
| ) |
Definition at line 92 of file vf_chromashift.c.
| #define DEFINE_WRAP | ( | depth, | |
| type, | |||
| div | |||
| ) |
Definition at line 134 of file vf_chromashift.c.
| #define DEFINE_RGBASMEAR | ( | depth, | |
| type, | |||
| div | |||
| ) |
Definition at line 189 of file vf_chromashift.c.
| #define DEFINE_RGBAWRAP | ( | depth, | |
| type, | |||
| div | |||
| ) |
Definition at line 256 of file vf_chromashift.c.
| #define OFFSET | ( | x | ) | offsetof(ChromaShiftContext, x) |
Definition at line 415 of file vf_chromashift.c.
Definition at line 416 of file vf_chromashift.c.
|
static |
Definition at line 55 of file vf_chromashift.c.
|
static |
Definition at line 345 of file vf_chromashift.c.
|
static |
Definition at line 375 of file vf_chromashift.c.
Referenced by process_command().
|
static |
Definition at line 403 of file vf_chromashift.c.
| AVFILTER_DEFINE_CLASS | ( | chromashift | ) |
| AVFILTER_DEFINE_CLASS | ( | rgbashift | ) |
|
static |
Definition at line 418 of file vf_chromashift.c.
|
static |
Definition at line 429 of file vf_chromashift.c.
|
static |
Definition at line 439 of file vf_chromashift.c.
| AVFilter ff_vf_chromashift |
Definition at line 449 of file vf_chromashift.c.
|
static |
Definition at line 461 of file vf_chromashift.c.
| AVFilter ff_vf_rgbashift |
Definition at line 478 of file vf_chromashift.c.
1.8.17