FFmpeg
Data Structures | Macros | Functions | Variables
af_apad.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "libavutil/avassert.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  APadContext
 

Macros

#define OFFSET(x)   offsetof(APadContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (apad)
 
static av_cold int init (AVFilterContext *ctx)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static int push_frame (AVFilterLink *outlink)
 
static int activate (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 

Variables

static const AVOption apad_options []
 
static const AVFilterPad apad_outputs []
 
const AVFilter ff_af_apad
 

Detailed Description

audio pad filter.

Based on af_aresample.c

Definition in file af_apad.c.

Macro Definition Documentation

◆ OFFSET

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

Definition at line 50 of file af_apad.c.

◆ A

Definition at line 51 of file af_apad.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( apad  )

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 64 of file af_apad.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 77 of file af_apad.c.

Referenced by activate().

◆ push_frame()

static int push_frame ( AVFilterLink outlink)
static

Definition at line 92 of file af_apad.c.

Referenced by activate().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 135 of file af_apad.c.

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 174 of file af_apad.c.

Variable Documentation

◆ apad_options

const AVOption apad_options[]
static
Initial value:
= {
{ "packet_size", "set silence packet size", OFFSET(packet_size), AV_OPT_TYPE_INT, { .i64 = 4096 }, 0, INT_MAX, A },
{ "pad_len", "set number of samples of silence to add", OFFSET(pad_len), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, A },
{ "whole_len", "set minimum target number of samples in the audio stream", OFFSET(whole_len), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, A },
{ "pad_dur", "set duration of silence to add", OFFSET(pad_dur), AV_OPT_TYPE_DURATION, { .i64 = -1 }, -1, INT64_MAX, A },
{ "whole_dur", "set minimum target duration in the audio stream", OFFSET(whole_dur), AV_OPT_TYPE_DURATION, { .i64 = -1 }, -1, INT64_MAX, A },
{ NULL }
}

Definition at line 53 of file af_apad.c.

◆ apad_outputs

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

Definition at line 190 of file af_apad.c.

◆ ff_af_apad

const AVFilter ff_af_apad
Initial value:
= {
.name = "apad",
.description = NULL_IF_CONFIG_SMALL("Pad audio with silence."),
.init = init,
.activate = activate,
.priv_size = sizeof(APadContext),
.priv_class = &apad_class,
}

Definition at line 198 of file af_apad.c.

config_output
static int config_output(AVFilterLink *outlink)
Definition: af_apad.c:174
AV_OPT_TYPE_DURATION
@ AV_OPT_TYPE_DURATION
Definition: opt.h:249
OFFSET
#define OFFSET(x)
Definition: af_apad.c:50
init
static av_cold int init(AVFilterContext *ctx)
Definition: af_apad.c:64
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AV_OPT_TYPE_INT64
@ AV_OPT_TYPE_INT64
Definition: opt.h:236
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
NULL
#define NULL
Definition: coverity.c:32
ff_audio_default_filterpad
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition: audio.c:33
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
APadContext
Definition: af_apad.c:38
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
apad_outputs
static const AVFilterPad apad_outputs[]
Definition: af_apad.c:190
activate
static int activate(AVFilterContext *ctx)
Definition: af_apad.c:135
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:155
A
#define A
Definition: af_apad.c:51