Go to the source code of this file.
◆ INPUT_MAIN
◆ INPUT_CLEANSRC
◆ OFFSET
◆ FLAGS
◆ CALC_DIFF
#define CALC_DIFF |
( |
|
nbits | ) |
|
Value: do { \
for (x = 0; x <
width; x += hblockx) { \
for (xl = x; xl < m; xl++) \
acc +=
abs(((
const uint##nbits##_t *)f1p)[xl] - \
((const uint##nbits##_t *)f2p)[xl]); \
bdiffs[ydest * dm->nxblocks + xdest] +=
acc; \
xdest++; \
} \
} while (0)
◆ PF_NOALPHA
#define PF_NOALPHA |
( |
|
suf | ) |
AV_PIX_FMT_YUV420##suf, AV_PIX_FMT_YUV422##suf, AV_PIX_FMT_YUV444##suf |
◆ PF_ALPHA
#define PF_ALPHA |
( |
|
suf | ) |
AV_PIX_FMT_YUVA420##suf, AV_PIX_FMT_YUVA422##suf, AV_PIX_FMT_YUVA444##suf |
◆ PF
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
decimate |
| ) |
|
◆ calc_diffs()
◆ filter_frame()
◆ activate()
◆ decimate_init()
◆ decimate_uninit()
◆ query_formats()
◆ config_output()
◆ decimate_options
Initial value:= {
{
"blockx",
"set the size of the x-axis blocks used during metric calculations",
OFFSET(blockx),
AV_OPT_TYPE_INT, {.i64 = 32}, 4, 1<<9,
FLAGS },
{
"blocky",
"set the size of the y-axis blocks used during metric calculations",
OFFSET(blocky),
AV_OPT_TYPE_INT, {.i64 = 32}, 4, 1<<9,
FLAGS },
{
"ppsrc",
"mark main input as a pre-processed input and activate clean source input stream",
OFFSET(ppsrc),
AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1,
FLAGS },
}
Definition at line 70 of file vf_decimate.c.
◆ decimate_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 428 of file vf_decimate.c.
◆ ff_vf_decimate
Initial value:= {
.name = "decimate",
.priv_class = &decimate_class,
}
Definition at line 437 of file vf_decimate.c.