FFmpeg
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

◆ OFFSET

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

Definition at line 127 of file vf_shuffleplanes.c.

◆ FLAGS

Definition at line 128 of file vf_shuffleplanes.c.

Function Documentation

◆ shuffleplanes_config_input()

static av_cold int shuffleplanes_config_input ( AVFilterLink inlink)
static

Definition at line 43 of file vf_shuffleplanes.c.

◆ shuffleplanes_filter_frame()

static int shuffleplanes_filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 86 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, 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 },
}

Definition at line 129 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,
.get_video_buffer = ff_null_get_video_buffer,
},
{ NULL },
}

Definition at line 139 of file vf_shuffleplanes.c.

◆ shuffleplanes_outputs

const AVFilterPad shuffleplanes_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL },
}

Definition at line 150 of file vf_shuffleplanes.c.

◆ ff_vf_shuffleplanes

AVFilter ff_vf_shuffleplanes
Initial value:
= {
.name = "shuffleplanes",
.description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
.priv_size = sizeof(ShufflePlanesContext),
.priv_class = &shuffleplanes_class,
}

Definition at line 158 of file vf_shuffleplanes.c.

ShufflePlanesContext
Definition: vf_shuffleplanes.c:30
shuffleplanes_config_input
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)
Definition: vf_shuffleplanes.c:43
shuffleplanes_outputs
static const AVFilterPad shuffleplanes_outputs[]
Definition: vf_shuffleplanes.c:150
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
NULL
#define NULL
Definition: coverity.c:32
OFFSET
#define OFFSET(x)
Definition: vf_shuffleplanes.c:127
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
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
ff_null_get_video_buffer
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:39
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#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
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
shuffleplanes_inputs
static const AVFilterPad shuffleplanes_inputs[]
Definition: vf_shuffleplanes.c:139
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
map
const VDPAUPixFmtMap * map
Definition: hwcontext_vdpau.c:85
shuffleplanes_filter_frame
static int shuffleplanes_filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_shuffleplanes.c:86
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
FLAGS
#define FLAGS
Definition: vf_shuffleplanes.c:128