Commit d751a252 authored by Paul B Mahol's avatar Paul B Mahol

lavfi/anull: remove redundant lines

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent a079ed63
......@@ -31,7 +31,6 @@ static const AVFilterPad avfilter_af_anull_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.get_audio_buffer = ff_null_get_audio_buffer,
},
{ NULL }
};
......@@ -47,12 +46,7 @@ static const AVFilterPad avfilter_af_anull_outputs[] = {
AVFilter avfilter_af_anull = {
.name = "anull",
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.priv_size = 0,
.query_formats = ff_query_formats_all,
.inputs = avfilter_af_anull_inputs,
.outputs = avfilter_af_anull_outputs,
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment