FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
af_amix.c File Reference

Audio Mix Filter. More...

#include "libavutil/attributes.h"
#include "libavutil/audio_fifo.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/float_dsp.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "audio.h"
#include "avfilter.h"
#include "filters.h"
#include "formats.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  FrameInfo
 
struct  FrameList
 Linked list used to store timestamps and frame sizes of all frames in the FIFO for the first input. More...
 
struct  MixContext
 

Macros

#define INPUT_ON   1
 input is active More...
 
#define INPUT_EOF   2
 input has reached EOF (may still be active) More...
 
#define DURATION_LONGEST   0
 
#define DURATION_SHORTEST   1
 
#define DURATION_FIRST   2
 
#define OFFSET(x)   offsetof(MixContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define F   AV_OPT_FLAG_FILTERING_PARAM
 

Functions

static void frame_list_clear (FrameList *frame_list)
 
static int frame_list_next_frame_size (FrameList *frame_list)
 
static int64_t frame_list_next_pts (FrameList *frame_list)
 
static void frame_list_remove_samples (FrameList *frame_list, int nb_samples)
 
static int frame_list_add_frame (FrameList *frame_list, int nb_samples, int64_t pts)
 
 AVFILTER_DEFINE_CLASS (amix)
 
static void calculate_scales (MixContext *s, int nb_samples)
 Update the scaling factors to apply to each input during mixing. More...
 
static int config_output (AVFilterLink *outlink)
 
static int output_frame (AVFilterLink *outlink)
 Read samples from the input FIFOs, mix, and write to the output link. More...
 
static int request_samples (AVFilterContext *ctx, int min_samples)
 Requests a frame, if needed, from each input link other than the first. More...
 
static int calc_active_inputs (MixContext *s)
 Calculates the number of active inputs and determines EOF based on the duration option. More...
 
static int activate (AVFilterContext *ctx)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 

Variables

static const AVOption amix_options []
 
static const AVFilterPad avfilter_af_amix_outputs []
 
AVFilter ff_af_amix
 

Detailed Description

Audio Mix Filter.

Mixes audio from multiple sources into a single output. The channel layout, sample rate, and sample format will be the same for all inputs and the output.

Definition in file af_amix.c.

Macro Definition Documentation

#define INPUT_ON   1

input is active

Definition at line 48 of file af_amix.c.

Referenced by activate(), calc_active_inputs(), calculate_scales(), config_output(), output_frame(), and request_samples().

#define INPUT_EOF   2

input has reached EOF (may still be active)

Definition at line 49 of file af_amix.c.

Referenced by activate(), output_frame(), and request_samples().

#define DURATION_LONGEST   0

Definition at line 51 of file af_amix.c.

#define DURATION_SHORTEST   1

Definition at line 52 of file af_amix.c.

Referenced by calc_active_inputs().

#define DURATION_FIRST   2

Definition at line 53 of file af_amix.c.

Referenced by calc_active_inputs().

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

Definition at line 180 of file af_amix.c.

#define A   AV_OPT_FLAG_AUDIO_PARAM

Definition at line 181 of file af_amix.c.

Definition at line 182 of file af_amix.c.

Function Documentation

static void frame_list_clear ( FrameList frame_list)
static

Definition at line 77 of file af_amix.c.

Referenced by frame_list_remove_samples(), and uninit().

static int frame_list_next_frame_size ( FrameList frame_list)
static

Definition at line 91 of file af_amix.c.

Referenced by activate(), and output_frame().

static int64_t frame_list_next_pts ( FrameList frame_list)
static

Definition at line 98 of file af_amix.c.

Referenced by output_frame().

static void frame_list_remove_samples ( FrameList frame_list,
int  nb_samples 
)
static

Definition at line 105 of file af_amix.c.

Referenced by output_frame().

static int frame_list_add_frame ( FrameList frame_list,
int  nb_samples,
int64_t  pts 
)
static

Definition at line 132 of file af_amix.c.

Referenced by activate().

AVFILTER_DEFINE_CLASS ( amix  )
static void calculate_scales ( MixContext s,
int  nb_samples 
)
static

Update the scaling factors to apply to each input during mixing.

This balances the full volume range between active inputs and handles volume transitions when EOF is encountered on an input but mixing continues with the remaining inputs.

Definition at line 208 of file af_amix.c.

Referenced by config_output(), and output_frame().

static int config_output ( AVFilterLink outlink)
static

Definition at line 235 of file af_amix.c.

static int output_frame ( AVFilterLink outlink)
static

Read samples from the input FIFOs, mix, and write to the output link.

Definition at line 288 of file af_amix.c.

Referenced by activate(), and request_samples().

static int request_samples ( AVFilterContext ctx,
int  min_samples 
)
static

Requests a frame, if needed, from each input link other than the first.

Definition at line 382 of file af_amix.c.

Referenced by activate().

static int calc_active_inputs ( MixContext s)
static

Calculates the number of active inputs and determines EOF based on the duration option.

Returns
0 if mixing should continue, or AVERROR_EOF if mixing should stop.

Definition at line 406 of file af_amix.c.

Referenced by activate().

static int activate ( AVFilterContext ctx)
static

Definition at line 421 of file af_amix.c.

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 506 of file af_amix.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 554 of file af_amix.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 576 of file af_amix.c.

Variable Documentation

const AVOption amix_options[]
static
Initial value:
= {
{ "inputs", "Number of inputs.",
OFFSET(nb_inputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, 1024, A|F },
{ "duration", "How to determine the end-of-stream.",
OFFSET(duration_mode), AV_OPT_TYPE_INT, { .i64 = DURATION_LONGEST }, 0, 2, A|F, "duration" },
{ "longest", "Duration of longest input.", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_LONGEST }, 0, 0, A|F, "duration" },
{ "shortest", "Duration of shortest input.", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_SHORTEST }, 0, 0, A|F, "duration" },
{ "first", "Duration of first input.", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_FIRST }, 0, 0, A|F, "duration" },
{ "dropout_transition", "Transition time, in seconds, for volume "
"renormalization when an input stream ends.",
OFFSET(dropout_transition), AV_OPT_TYPE_FLOAT, { .dbl = 2.0 }, 0, INT_MAX, A|F },
{ "weights", "Set weight for each input.",
OFFSET(weights_str), AV_OPT_TYPE_STRING, {.str="1 1"}, 0, 0, A|F },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define DURATION_LONGEST
Definition: af_amix.c:51
#define A
Definition: af_amix.c:181
#define OFFSET(x)
Definition: af_amix.c:180
#define DURATION_SHORTEST
Definition: af_amix.c:52
#define F
Definition: af_amix.c:182
#define DURATION_FIRST
Definition: af_amix.c:53

Definition at line 183 of file af_amix.c.

const AVFilterPad avfilter_af_amix_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_output,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int config_output(AVFilterLink *outlink)
Definition: af_amix.c:235

Definition at line 604 of file af_amix.c.

AVFilter ff_af_amix
Initial value:
= {
.name = "amix",
.description = NULL_IF_CONFIG_SMALL("Audio mixing."),
.priv_size = sizeof(MixContext),
.priv_class = &amix_class,
.init = init,
}
#define NULL
Definition: coverity.c:32
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_amix.c:554
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
static int activate(AVFilterContext *ctx)
Definition: af_amix.c:421
static const AVFilterPad avfilter_af_amix_outputs[]
Definition: af_amix.c:604
static int query_formats(AVFilterContext *ctx)
Definition: af_amix.c:576
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static const AVFilterPad inputs[]
Definition: af_acontrast.c:193
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
#define flags(name, subs,...)
Definition: cbs_av1.c:596
static av_cold int init(AVFilterContext *ctx)
Definition: af_amix.c:506

Definition at line 613 of file af_amix.c.