vf_copy.c File Reference

copy video filter More...

#include "libavutil/internal.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Variables

static const AVFilterPad avfilter_vf_copy_inputs []
 
static const AVFilterPad avfilter_vf_copy_outputs []
 
AVFilter avfilter_vf_copy
 

Detailed Description

copy video filter

Definition in file vf_copy.c.

Variable Documentation

AVFilter avfilter_vf_copy
Initial value:
= {
.name = "copy",
.description = NULL_IF_CONFIG_SMALL("Copy the input video unchanged to the output."),
}
#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 avfilter_vf_copy_outputs[]
Definition: vf_copy.c:39
static const AVFilterPad avfilter_vf_copy_inputs[]
Definition: vf_copy.c:29

Definition at line 47 of file vf_copy.c.

const AVFilterPad avfilter_vf_copy_inputs[]
static
Initial value:
= {
{
.name = "default",
.get_video_buffer = ff_null_get_video_buffer,
.rej_perms = ~0
},
{ NULL }
}
NULL
Definition: eval.c:52
AVFilterBufferRef * ff_null_get_video_buffer(AVFilterLink *link, int perms, int w, int h)
Definition: video.c:72

Definition at line 29 of file vf_copy.c.

const AVFilterPad avfilter_vf_copy_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL }
}
NULL
Definition: eval.c:52

Definition at line 39 of file vf_copy.c.