vf_null.c File Reference

null video filter More...

#include "avfilter.h"

Go to the source code of this file.

Variables

AVFilter avfilter_vf_null

Detailed Description

null video filter

Definition in file vf_null.c.

Variable Documentation

AVFilter avfilter_vf_null
Initial value:
{
.name = "null",
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.priv_size = 0,
.inputs = (AVFilterPad[]) {{ .name = "default",
.get_video_buffer = avfilter_null_get_video_buffer,
.start_frame = avfilter_null_start_frame,
.end_frame = avfilter_null_end_frame },
{ .name = NULL}},
.outputs = (AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO, },
{ .name = NULL}},
}

Definition at line 26 of file vf_null.c.