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

Go to the source code of this file.

Data Structures

struct  StreamSelectContext
 

Macros

#define OFFSET(x)   offsetof(StreamSelectContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
 
#define astreamselect_options   streamselect_options
 

Functions

 AVFILTER_DEFINE_CLASS (streamselect)
 
static int process_frame (FFFrameSync *fs)
 
static int activate (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 
static int parse_definition (AVFilterContext *ctx, int nb_pads, int is_input, int is_audio)
 
static int parse_mapping (AVFilterContext *ctx, const char *map)
 
static int process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
 AVFILTER_DEFINE_CLASS (astreamselect)
 

Variables

static const AVOption streamselect_options []
 
AVFilter ff_vf_streamselect
 
AVFilter ff_af_astreamselect
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 41 of file f_streamselect.c.

◆ FLAGS

Definition at line 42 of file f_streamselect.c.

◆ astreamselect_options

#define astreamselect_options   streamselect_options

Definition at line 332 of file f_streamselect.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS() [1/2]

AVFILTER_DEFINE_CLASS ( streamselect  )

◆ process_frame()

static int process_frame ( FFFrameSync fs)
static

Definition at line 51 of file f_streamselect.c.

Referenced by config_output().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 87 of file f_streamselect.c.

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 93 of file f_streamselect.c.

Referenced by parse_definition().

◆ parse_definition()

static int parse_definition ( AVFilterContext ctx,
int  nb_pads,
int  is_input,
int  is_audio 
)
static

Definition at line 148 of file f_streamselect.c.

Referenced by init().

◆ parse_mapping()

static int parse_mapping ( AVFilterContext ctx,
const char *  map 
)
static

Definition at line 180 of file f_streamselect.c.

Referenced by init(), and process_command().

◆ 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 239 of file f_streamselect.c.

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 252 of file f_streamselect.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 285 of file f_streamselect.c.

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 295 of file f_streamselect.c.

◆ AVFILTER_DEFINE_CLASS() [2/2]

AVFILTER_DEFINE_CLASS ( astreamselect  )

Variable Documentation

◆ streamselect_options

const AVOption streamselect_options[]
static
Initial value:
= {
{ "inputs", "number of input streams", OFFSET(nb_inputs), AV_OPT_TYPE_INT, {.i64=2}, 2, INT_MAX, .flags=FLAGS },
{ "map", "input indexes to remap to outputs", OFFSET(map_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags=FLAGS },
{ NULL }
}

Definition at line 43 of file f_streamselect.c.

◆ ff_vf_streamselect

AVFilter ff_vf_streamselect
Initial value:
= {
.name = "streamselect",
.description = NULL_IF_CONFIG_SMALL("Select video streams"),
.init = init,
.query_formats = query_formats,
.process_command = process_command,
.uninit = uninit,
.activate = activate,
.priv_size = sizeof(StreamSelectContext),
.priv_class = &streamselect_class,
}

Definition at line 319 of file f_streamselect.c.

◆ ff_af_astreamselect

AVFilter ff_af_astreamselect
Initial value:
= {
.name = "astreamselect",
.description = NULL_IF_CONFIG_SMALL("Select audio streams"),
.init = init,
.query_formats = query_formats,
.process_command = process_command,
.uninit = uninit,
.activate = activate,
.priv_size = sizeof(StreamSelectContext),
.priv_class = &astreamselect_class,
}

Definition at line 335 of file f_streamselect.c.

AVFILTER_FLAG_DYNAMIC_INPUTS
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: f_streamselect.c:295
activate
static int activate(AVFilterContext *ctx)
Definition: f_streamselect.c:87
NULL
#define NULL
Definition: coverity.c:32
StreamSelectContext
Definition: f_streamselect.c:29
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: f_streamselect.c:239
AVFILTER_FLAG_DYNAMIC_OUTPUTS
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
Definition: avfilter.h:111
init
static av_cold int init(AVFilterContext *ctx)
Definition: f_streamselect.c:252
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:188
FLAGS
#define FLAGS
Definition: f_streamselect.c:42
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
OFFSET
#define OFFSET(x)
Definition: f_streamselect.c:41
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: f_streamselect.c:285
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227