FFmpeg
Data Structures | Macros | Functions | Variables
vf_shuffleframes.c File Reference
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  ShuffleFramesContext
 

Macros

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

Functions

static av_cold int init (AVFilterContext *ctx)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static av_cold void uninit (AVFilterContext *ctx)
 
 AVFILTER_DEFINE_CLASS (shuffleframes)
 

Variables

static const AVOption shuffleframes_options []
 
static const AVFilterPad shuffleframes_inputs []
 
static const AVFilterPad shuffleframes_outputs []
 
AVFilter ff_vf_shuffleframes
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 133 of file vf_shuffleframes.c.

◆ FLAGS

Definition at line 134 of file vf_shuffleframes.c.

Function Documentation

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 41 of file vf_shuffleframes.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 83 of file vf_shuffleframes.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 119 of file vf_shuffleframes.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( shuffleframes  )

Variable Documentation

◆ shuffleframes_options

const AVOption shuffleframes_options[]
static
Initial value:
= {
{ "mapping", "set destination indexes of input frames", OFFSET(mapping), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
{ NULL },
}

Definition at line 135 of file vf_shuffleframes.c.

◆ shuffleframes_inputs

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

Definition at line 142 of file vf_shuffleframes.c.

◆ shuffleframes_outputs

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

Definition at line 151 of file vf_shuffleframes.c.

◆ ff_vf_shuffleframes

AVFilter ff_vf_shuffleframes
Initial value:
= {
.name = "shuffleframes",
.description = NULL_IF_CONFIG_SMALL("Shuffle video frames."),
.priv_size = sizeof(ShuffleFramesContext),
.priv_class = &shuffleframes_class,
.init = init,
}

Definition at line 159 of file vf_shuffleframes.c.

uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_shuffleframes.c:119
FLAGS
#define FLAGS
Definition: vf_shuffleframes.c:134
shuffleframes_inputs
static const AVFilterPad shuffleframes_inputs[]
Definition: vf_shuffleframes.c:142
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
NULL
#define NULL
Definition: coverity.c:32
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_shuffleframes.c:83
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_shuffleframes.c:41
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
OFFSET
#define OFFSET(x)
Definition: vf_shuffleframes.c:133
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
shuffleframes_outputs
static const AVFilterPad shuffleframes_outputs[]
Definition: vf_shuffleframes.c:151
ShuffleFramesContext
Definition: vf_shuffleframes.c:31
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227