00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00024 #include "libavutil/internal.h"
00025 #include "avfilter.h"
00026 #include "internal.h"
00027 #include "video.h"
00028
00029 AVFilter avfilter_vf_null = {
00030 .name = "null",
00031 .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
00032
00033 .priv_size = 0,
00034
00035 .inputs = (const AVFilterPad[]) {{ .name = "default",
00036 .type = AVMEDIA_TYPE_VIDEO,
00037 .get_video_buffer = ff_null_get_video_buffer,
00038 .start_frame = ff_null_start_frame,
00039 .end_frame = ff_null_end_frame },
00040 { .name = NULL}},
00041
00042 .outputs = (const AVFilterPad[]) {{ .name = "default",
00043 .type = AVMEDIA_TYPE_VIDEO, },
00044 { .name = NULL}},
00045 };