#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
#include "formats.h"
#include "drawutils.h"
#include "video.h"
Go to the source code of this file.
◆ OFFSET
◆ VF
◆ PadMode
Enumerator |
---|
MODE_ADD | |
MODE_CLONE | |
NB_MODE | |
Definition at line 30 of file vf_tpad.c.
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
tpad |
| ) |
|
◆ needs_drawing()
◆ query_formats()
◆ activate()
◆ config_input()
◆ uninit()
◆ tpad_options
Initial value:= {
{
"start",
"set the number of frames to delay input",
OFFSET(pad_start),
AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX,
VF },
{
"stop",
"set the number of frames to add after input finished",
OFFSET(pad_stop),
AV_OPT_TYPE_INT, {.i64=0}, -1, INT_MAX,
VF },
}
Definition at line 57 of file vf_tpad.c.
◆ tpad_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 230 of file vf_tpad.c.
◆ ff_vf_tpad
Initial value:= {
.name = "tpad",
.priv_class = &tpad_class,
}
Definition at line 238 of file vf_tpad.c.