Go to the source code of this file.
|
static uint8_t | do_chromakey_pixel (ChromakeyContext *ctx, uint8_t u[9], uint8_t v[9]) |
|
static uint16_t | do_chromakey_pixel16 (ChromakeyContext *ctx, uint16_t u[9], uint16_t v[9]) |
|
static av_always_inline void | get_pixel_uv (AVFrame *frame, int hsub_log2, int vsub_log2, int x, int y, uint8_t *u, uint8_t *v) |
|
static av_always_inline void | get_pixel16_uv (AVFrame *frame, int hsub_log2, int vsub_log2, int x, int y, uint16_t *u, uint16_t *v) |
|
static int | do_chromakey_slice (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
|
static int | do_chromakey16_slice (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
|
static int | do_chromahold_slice (AVFilterContext *avctx, void *arg, int jobnr, int nb_jobs) |
|
static int | do_chromahold16_slice (AVFilterContext *avctx, 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 *avctx) |
|
static av_cold 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 (chromakey) |
|
| AVFILTER_DEFINE_CLASS (chromahold) |
|
◆ FIXNUM
#define FIXNUM |
( |
|
x | ) |
lrint((x) * (1 << 10)) |
◆ RGB_TO_U
◆ RGB_TO_V
◆ OFFSET
◆ FLAGS
◆ do_chromakey_pixel()
◆ do_chromakey_pixel16()
static uint16_t do_chromakey_pixel16 |
( |
ChromakeyContext * |
ctx, |
|
|
uint16_t |
u[9], |
|
|
uint16_t |
v[9] |
|
) |
| |
|
static |
◆ get_pixel_uv()
◆ get_pixel16_uv()
◆ do_chromakey_slice()
◆ do_chromakey16_slice()
◆ do_chromahold_slice()
◆ do_chromahold16_slice()
◆ filter_frame()
◆ config_output()
◆ query_formats()
◆ config_input()
◆ process_command()
static int process_command |
( |
AVFilterContext * |
ctx, |
|
|
const char * |
cmd, |
|
|
const char * |
args, |
|
|
char * |
res, |
|
|
int |
res_len, |
|
|
int |
flags |
|
) |
| |
|
static |
◆ AVFILTER_DEFINE_CLASS() [1/2]
AVFILTER_DEFINE_CLASS |
( |
chromakey |
| ) |
|
◆ AVFILTER_DEFINE_CLASS() [2/2]
AVFILTER_DEFINE_CLASS |
( |
chromahold |
| ) |
|
◆ chromakey_inputs
Initial value:= {
{
.name = "default",
.needs_writable = 1,
},
}
Definition at line 368 of file vf_chromakey.c.
◆ chromakey_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 379 of file vf_chromakey.c.
◆ chromakey_options
◆ ff_vf_chromakey
Initial value:= {
.name = "chromakey",
.description =
NULL_IF_CONFIG_SMALL(
"Turns a certain color into transparency. Operates on YUV colors."),
.priv_class = &chromakey_class,
}
Definition at line 401 of file vf_chromakey.c.
◆ chromahold_options
◆ chromahold_inputs
Initial value:= {
{
.name = "default",
.needs_writable = 1,
},
}
Definition at line 421 of file vf_chromakey.c.
◆ chromahold_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 432 of file vf_chromakey.c.
◆ ff_vf_chromahold
Initial value:= {
.name = "chromahold",
.priv_class = &chromahold_class,
}
Definition at line 443 of file vf_chromakey.c.
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)