FFmpeg
Data Structures | Macros | Functions | Variables
vf_mix.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "framesync.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  MixContext
 
struct  ThreadData
 Used for passing data between threads. More...
 

Macros

#define OFFSET(x)   offsetof(MixContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
 
#define TFLAGS   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
 

Functions

static int query_formats (AVFilterContext *ctx)
 
static int parse_weights (AVFilterContext *ctx)
 
static av_cold int init (AVFilterContext *ctx)
 
static int mix_frames (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int process_frame (FFFrameSync *fs)
 
static int config_output (AVFilterLink *outlink)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 
static int activate (AVFilterContext *ctx)
 

Variables

static const AVOption mix_options []
 
static const AVFilterPad outputs []
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 325 of file vf_mix.c.

◆ FLAGS

Definition at line 326 of file vf_mix.c.

◆ TFLAGS

Definition at line 327 of file vf_mix.c.

Function Documentation

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 56 of file vf_mix.c.

◆ parse_weights()

static int parse_weights ( AVFilterContext ctx)
static

Definition at line 65 of file vf_mix.c.

Referenced by init(), and process_command().

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 99 of file vf_mix.c.

◆ mix_frames()

static int mix_frames ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 135 of file vf_mix.c.

Referenced by process_frame().

◆ process_frame()

static int process_frame ( FFFrameSync fs)
static

Definition at line 192 of file vf_mix.c.

Referenced by config_output().

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 228 of file vf_mix.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 292 of file vf_mix.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 307 of file vf_mix.c.

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 319 of file vf_mix.c.

Variable Documentation

◆ mix_options

const AVOption mix_options[]
static
Initial value:
= {
{ "inputs", "set number of inputs", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64=2}, 2, INT16_MAX, .flags = FLAGS },
{ "weights", "set weight for each input", OFFSET(weights_str), AV_OPT_TYPE_STRING, {.str="1 1"}, 0, 0, .flags = TFLAGS },
{ "scale", "set scale", OFFSET(scale), AV_OPT_TYPE_FLOAT, {.dbl=0}, 0, INT16_MAX, .flags = TFLAGS },
{ "duration", "how to determine end of stream", OFFSET(duration), AV_OPT_TYPE_INT, {.i64=0}, 0, 2, .flags = FLAGS, "duration" },
{ "longest", "Duration of longest input", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "duration" },
{ "shortest", "Duration of shortest input", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "duration" },
{ "first", "Duration of first input", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "duration" },
{ NULL },
}

Definition at line 329 of file vf_mix.c.

◆ outputs

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

Definition at line 340 of file vf_mix.c.

TFLAGS
#define TFLAGS
Definition: vf_mix.c:327
FLAGS
#define FLAGS
Definition: vf_mix.c:326
scale
static av_always_inline float scale(float x, float s)
Definition: vf_v360.c:1388
duration
int64_t duration
Definition: movenc.c:64
config_output
static int config_output(AVFilterLink *outlink)
Definition: vf_mix.c:228
NULL
#define NULL
Definition: coverity.c:32
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:227
OFFSET
#define OFFSET(x)
Definition: vf_mix.c:325
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:228
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:233