00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "avfilter.h"
00020 #include "internal.h"
00021 #include "libavutil/internal.h"
00022
00023 static int start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
00024 {
00025 return 0;
00026 }
00027
00028 static int end_frame(AVFilterLink *link)
00029 {
00030 return 0;
00031 }
00032
00033 AVFilter avfilter_vsink_nullsink = {
00034 .name = "nullsink",
00035 .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input video."),
00036
00037 .priv_size = 0,
00038
00039 .inputs = (const AVFilterPad[]) {
00040 {
00041 .name = "default",
00042 .type = AVMEDIA_TYPE_VIDEO,
00043 .start_frame = start_frame,
00044 .end_frame = end_frame,
00045 },
00046 { .name = NULL},
00047 },
00048 .outputs = NULL,
00049 };