FFmpeg
Loading...
Searching...
No Matches
vf_shuffleplanes.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixfmt.h"
#include "avfilter.h"
#include "filters.h"
#include "formats.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  ShufflePlanesContext
 

Macros

#define OFFSET(x)
 
#define FLAGS   (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
 

Functions

static int query_formats (const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
 
static av_cold int shuffleplanes_config_input (AVFilterLink *inlink)
 
static int shuffleplanes_filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
 AVFILTER_DEFINE_CLASS (shuffleplanes)
 

Variables

static const AVOption shuffleplanes_options []
 
static const AVFilterPad shuffleplanes_inputs []
 
const FFFilter ff_vf_shuffleplanes
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET ( x)
Value:

Definition at line 138 of file vf_shuffleplanes.c.

◆ FLAGS

Definition at line 139 of file vf_shuffleplanes.c.

Function Documentation

◆ query_formats()

static int query_formats ( const AVFilterContext * ctx,
AVFilterFormatsConfig ** cfg_in,
AVFilterFormatsConfig ** cfg_out )
static

Definition at line 44 of file vf_shuffleplanes.c.

◆ shuffleplanes_config_input()

static av_cold int shuffleplanes_config_input ( AVFilterLink * inlink)
static

Definition at line 78 of file vf_shuffleplanes.c.

◆ shuffleplanes_filter_frame()

static int shuffleplanes_filter_frame ( AVFilterLink * inlink,
AVFrame * frame )
static

Definition at line 97 of file vf_shuffleplanes.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( shuffleplanes )

Variable Documentation

◆ shuffleplanes_options

const AVOption shuffleplanes_options[]
static
Initial value:
= {
{ "map0", "Index of the input plane to be used as the first output plane ", OFFSET(map[0]), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 3, FLAGS },
{ "map1", "Index of the input plane to be used as the second output plane ", OFFSET(map[1]), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 3, FLAGS },
{ "map2", "Index of the input plane to be used as the third output plane ", OFFSET(map[2]), AV_OPT_TYPE_INT, { .i64 = 2 }, 0, 3, FLAGS },
{ "map3", "Index of the input plane to be used as the fourth output plane ", OFFSET(map[3]), AV_OPT_TYPE_INT, { .i64 = 3 }, 0, 3, FLAGS },
{ NULL },
}
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
#define OFFSET(x)
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
const VDPAUPixFmtMap * map

Definition at line 140 of file vf_shuffleplanes.c.

◆ shuffleplanes_inputs

const AVFilterPad shuffleplanes_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = shuffleplanes_config_input,
.filter_frame = shuffleplanes_filter_frame,
},
}
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
static int shuffleplanes_filter_frame(AVFilterLink *inlink, AVFrame *frame)
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)

Definition at line 150 of file vf_shuffleplanes.c.

◆ ff_vf_shuffleplanes

const FFFilter ff_vf_shuffleplanes
Initial value:
= {
.p.name = "shuffleplanes",
.p.description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
.p.priv_class = &shuffleplanes_class,
.priv_size = sizeof(ShufflePlanesContext),
}
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static const AVFilterPad shuffleplanes_inputs[]
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37

Definition at line 159 of file vf_shuffleplanes.c.