FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
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 "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  ShufflePlanesContext
 

Macros

#define OFFSET(x)   offsetof(ShufflePlanesContext, x)
 
#define FLAGS   (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
 

Functions

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 []
 
static const AVFilterPad shuffleplanes_outputs []
 
AVFilter ff_vf_shuffleplanes
 

Macro Definition Documentation

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

Definition at line 127 of file vf_shuffleplanes.c.

Definition at line 128 of file vf_shuffleplanes.c.

Function Documentation

static av_cold int shuffleplanes_config_input ( AVFilterLink inlink)
static

Definition at line 43 of file vf_shuffleplanes.c.

static int shuffleplanes_filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 86 of file vf_shuffleplanes.c.

AVFILTER_DEFINE_CLASS ( shuffleplanes  )

Variable Documentation

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, 4, 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, 4, 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, 4, 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, 4, FLAGS },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
#define FLAGS
const VDPAUPixFmtMap * map

Definition at line 129 of file vf_shuffleplanes.c.

const AVFilterPad shuffleplanes_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = shuffleplanes_config_input,
.filter_frame = shuffleplanes_filter_frame,
.get_video_buffer = ff_null_get_video_buffer,
},
{ NULL },
}
#define NULL
Definition: coverity.c:32
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:39
static int shuffleplanes_filter_frame(AVFilterLink *inlink, AVFrame *frame)
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)

Definition at line 139 of file vf_shuffleplanes.c.

const AVFilterPad shuffleplanes_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL },
}
#define NULL
Definition: coverity.c:32

Definition at line 150 of file vf_shuffleplanes.c.

AVFilter ff_vf_shuffleplanes
Initial value:
= {
.name = "shuffleplanes",
.description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
.priv_size = sizeof(ShufflePlanesContext),
.priv_class = &shuffleplanes_class,
}
#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:125
#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
static const AVFilterPad shuffleplanes_outputs[]
#define flags(name, subs,...)
Definition: cbs_av1.c:596
static const AVFilterPad shuffleplanes_inputs[]

Definition at line 158 of file vf_shuffleplanes.c.