FFmpeg
Data Structures | Macros | Enumerations | Functions | Variables
vf_tpad.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
#include "internal.h"
#include "formats.h"
#include "drawutils.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  TPadContext
 

Macros

#define OFFSET(x)   offsetof(TPadContext, x)
 
#define VF   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Enumerations

enum  PadMode { MODE_ADD = 0, MODE_CLONE, NB_MODE }
 

Functions

 AVFILTER_DEFINE_CLASS (tpad)
 
static int needs_drawing (const TPadContext *s)
 
static int query_formats (AVFilterContext *ctx)
 
static int activate (AVFilterContext *ctx)
 
static int config_input (AVFilterLink *inlink)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption tpad_options []
 
static const AVFilterPad tpad_inputs []
 
const AVFilter ff_vf_tpad
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET (   x)    offsetof(TPadContext, x)

Definition at line 55 of file vf_tpad.c.

◆ VF

Definition at line 56 of file vf_tpad.c.

Enumeration Type Documentation

◆ PadMode

enum PadMode
Enumerator
MODE_ADD 
MODE_CLONE 
NB_MODE 

Definition at line 31 of file vf_tpad.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( tpad  )

◆ needs_drawing()

static int needs_drawing ( const TPadContext s)
static

Definition at line 73 of file vf_tpad.c.

Referenced by config_input(), and query_formats().

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 80 of file vf_tpad.c.

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 89 of file vf_tpad.c.

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 200 of file vf_tpad.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 218 of file vf_tpad.c.

Variable Documentation

◆ tpad_options

const AVOption tpad_options[]
static
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 },
{ "start_mode", "set the mode of added frames to start", OFFSET(start_mode), AV_OPT_TYPE_INT, {.i64=MODE_ADD}, 0, NB_MODE-1, VF, .unit = "mode" },
{ "add", "add solid-color frames", 0, AV_OPT_TYPE_CONST, {.i64=MODE_ADD}, 0, 0, VF, .unit = "mode" },
{ "clone", "clone first/last frame", 0, AV_OPT_TYPE_CONST, {.i64=MODE_CLONE}, 0, 0, VF, .unit = "mode" },
{ "stop_mode", "set the mode of added frames to end", OFFSET(stop_mode), AV_OPT_TYPE_INT, {.i64=MODE_ADD}, 0, NB_MODE-1, VF, .unit = "mode" },
{ "start_duration", "set the duration to delay input", OFFSET(start_duration), AV_OPT_TYPE_DURATION, {.i64=0}, 0, INT64_MAX, VF },
{ "stop_duration", "set the duration to pad input", OFFSET(stop_duration), AV_OPT_TYPE_DURATION, {.i64=0}, 0, INT64_MAX, VF },
{ "color", "set the color of the added frames", OFFSET(rgba_color), AV_OPT_TYPE_COLOR, {.str="black"}, 0, 0, VF },
{ NULL }
}

Definition at line 58 of file vf_tpad.c.

◆ tpad_inputs

const AVFilterPad tpad_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_input,
},
}

Definition at line 225 of file vf_tpad.c.

◆ ff_vf_tpad

const AVFilter ff_vf_tpad
Initial value:
= {
.name = "tpad",
.description = NULL_IF_CONFIG_SMALL("Temporarily pad video frames."),
.priv_size = sizeof(TPadContext),
.priv_class = &tpad_class,
}

Definition at line 233 of file vf_tpad.c.

activate
static int activate(AVFilterContext *ctx)
Definition: vf_tpad.c:89
MODE_ADD
@ MODE_ADD
Definition: vf_tpad.c:32
FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:159
AV_OPT_TYPE_DURATION
@ AV_OPT_TYPE_DURATION
Definition: opt.h:249
TPadContext
Definition: vf_tpad.c:37
ff_video_default_filterpad
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition: video.c:37
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
NULL
#define NULL
Definition: coverity.c:32
NB_MODE
@ NB_MODE
Definition: vf_tpad.c:34
tpad_inputs
static const AVFilterPad tpad_inputs[]
Definition: vf_tpad.c:225
AV_OPT_TYPE_COLOR
@ AV_OPT_TYPE_COLOR
Definition: opt.h:250
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_tpad.c:218
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_tpad.c:200
OFFSET
#define OFFSET(x)
Definition: vf_tpad.c:55
MODE_CLONE
@ MODE_CLONE
Definition: vf_tpad.c:33
VF
#define VF
Definition: vf_tpad.c:56
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_tpad.c:80
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244