|
FFmpeg
|
#include "libavutil/opt.h"#include "libavutil/imgutils.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | DespillContext |
Macros | |
| #define | OFFSET(x) offsetof(DespillContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
| static int | do_despill_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter_frame (AVFilterLink *link, AVFrame *frame) |
| static av_cold int | config_output (AVFilterLink *outlink) |
| static av_cold int | query_formats (AVFilterContext *ctx) |
| AVFILTER_DEFINE_CLASS (despill) | |
Variables | |
| static const AVFilterPad | despill_inputs [] |
| static const AVFilterPad | despill_outputs [] |
| static const AVOption | despill_options [] |
| AVFilter | ff_vf_despill |
| #define OFFSET | ( | x | ) | offsetof(DespillContext, x) |
Definition at line 155 of file vf_despill.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 156 of file vf_despill.c.
|
static |
Definition at line 43 of file vf_despill.c.
Referenced by filter_frame().
|
static |
Definition at line 92 of file vf_despill.c.
|
static |
Definition at line 106 of file vf_despill.c.
|
static |
Definition at line 119 of file vf_despill.c.
| AVFILTER_DEFINE_CLASS | ( | despill | ) |
|
static |
Definition at line 137 of file vf_despill.c.
|
static |
Definition at line 146 of file vf_despill.c.
|
static |
Definition at line 158 of file vf_despill.c.
| AVFilter ff_vf_despill |
Definition at line 174 of file vf_despill.c.
1.8.17