FFmpeg
Data Structures | Macros | Functions | Variables
af_rubberband.c File Reference
#include <rubberband/rubberband-c.h>
#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "filters.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  RubberBandContext
 

Macros

#define OFFSET(x)   offsetof(RubberBandContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define AT   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (rubberband)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static int config_input (AVFilterLink *inlink)
 
static int activate (AVFilterContext *ctx)
 
static int process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 

Variables

static const AVOption rubberband_options []
 
static const AVFilterPad rubberband_inputs []
 
const AVFilter ff_af_rubberband
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 45 of file af_rubberband.c.

◆ A

Definition at line 46 of file af_rubberband.c.

◆ AT

Definition at line 47 of file af_rubberband.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( rubberband  )

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 85 of file af_rubberband.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 93 of file af_rubberband.c.

Referenced by activate().

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 130 of file af_rubberband.c.

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 150 of file af_rubberband.c.

◆ process_command()

static int process_command ( AVFilterContext ctx,
const char *  cmd,
const char *  args,
char *  res,
int  res_len,
int  flags 
)
static

Definition at line 184 of file af_rubberband.c.

Variable Documentation

◆ rubberband_options

const AVOption rubberband_options[]
static

Definition at line 49 of file af_rubberband.c.

◆ rubberband_inputs

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

Definition at line 201 of file af_rubberband.c.

◆ ff_af_rubberband

const AVFilter ff_af_rubberband
Initial value:
= {
.name = "rubberband",
.description = NULL_IF_CONFIG_SMALL("Apply time-stretching and pitch-shifting."),
.priv_size = sizeof(RubberBandContext),
.priv_class = &rubberband_class,
.process_command = process_command,
}

Definition at line 209 of file af_rubberband.c.

AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:66
FILTER_SINGLE_SAMPLEFMT
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
Definition: internal.h:175
config_input
static int config_input(AVFilterLink *inlink)
Definition: af_rubberband.c:130
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: af_rubberband.c:184
RubberBandContext
Definition: af_rubberband.c:30
rubberband_inputs
static const AVFilterPad rubberband_inputs[]
Definition: af_rubberband.c:201
activate
static int activate(AVFilterContext *ctx)
Definition: af_rubberband.c:150
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
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
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_rubberband.c:85
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183