#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.
◆ OFFSET
◆ FLAGS
◆ do_lumakey_slice8()
◆ do_lumakey_slice16()
◆ config_input()
◆ filter_frame()
◆ query_formats()
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
lumakey |
| ) |
|
◆ lumakey_inputs
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *link, AVFrame *frame)
static int config_input(AVFilterLink *inlink)
Definition at line 162 of file vf_lumakey.c.
◆ lumakey_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 172 of file vf_lumakey.c.
◆ lumakey_options
Initial value:= {
{
"tolerance",
"set the tolerance value",
OFFSET(tolerance),
AV_OPT_TYPE_INT, {.i64=1}, 0, UINT16_MAX, FLAGS },
{
"softness",
"set the softness value",
OFFSET(softness),
AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
}
Definition at line 183 of file vf_lumakey.c.
◆ ff_vf_lumakey
Initial value:= {
.name = "lumakey",
.priv_class = &lumakey_class,
}
static const AVFilterPad lumakey_outputs[]
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static const AVFilterPad lumakey_inputs[]
static av_cold int query_formats(AVFilterContext *ctx)
Definition at line 192 of file vf_lumakey.c.