Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00024 #include "avfilter.h"
00025
00026 AVFilter avfilter_af_anull = {
00027 .name = "anull",
00028 .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
00029
00030 .priv_size = 0,
00031
00032 .inputs = (AVFilterPad[]) {{ .name = "default",
00033 .type = AVMEDIA_TYPE_AUDIO,
00034 .get_audio_buffer = avfilter_null_get_audio_buffer,
00035 .filter_samples = avfilter_null_filter_samples },
00036 { .name = NULL}},
00037
00038 .outputs = (AVFilterPad[]) {{ .name = "default",
00039 .type = AVMEDIA_TYPE_AUDIO, },
00040 { .name = NULL}},
00041 };