00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00025 #include "audio.h"
00026 #include "avfilter.h"
00027 #include "internal.h"
00028 #include "libavutil/internal.h"
00029
00030 static const AVFilterPad avfilter_af_anull_inputs[] = {
00031 {
00032 .name = "default",
00033 .type = AVMEDIA_TYPE_AUDIO,
00034 .get_audio_buffer = ff_null_get_audio_buffer,
00035 },
00036 { NULL }
00037 };
00038
00039 static const AVFilterPad avfilter_af_anull_outputs[] = {
00040 {
00041 .name = "default",
00042 .type = AVMEDIA_TYPE_AUDIO,
00043 },
00044 { NULL }
00045 };
00046
00047 AVFilter avfilter_af_anull = {
00048 .name = "anull",
00049 .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
00050
00051 .priv_size = 0,
00052
00053 .inputs = avfilter_af_anull_inputs,
00054
00055 .outputs = avfilter_af_anull_outputs,
00056 };