mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/anull: remove redundant lines
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
a079ed63d3
commit
d751a2526f
@ -31,7 +31,6 @@ static const AVFilterPad avfilter_af_anull_inputs[] = {
|
|||||||
{
|
{
|
||||||
.name = "default",
|
.name = "default",
|
||||||
.type = AVMEDIA_TYPE_AUDIO,
|
.type = AVMEDIA_TYPE_AUDIO,
|
||||||
.get_audio_buffer = ff_null_get_audio_buffer,
|
|
||||||
},
|
},
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
@ -47,12 +46,7 @@ static const AVFilterPad avfilter_af_anull_outputs[] = {
|
|||||||
AVFilter avfilter_af_anull = {
|
AVFilter avfilter_af_anull = {
|
||||||
.name = "anull",
|
.name = "anull",
|
||||||
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
|
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
|
||||||
|
|
||||||
.priv_size = 0,
|
|
||||||
|
|
||||||
.query_formats = ff_query_formats_all,
|
.query_formats = ff_query_formats_all,
|
||||||
|
|
||||||
.inputs = avfilter_af_anull_inputs,
|
.inputs = avfilter_af_anull_inputs,
|
||||||
|
|
||||||
.outputs = avfilter_af_anull_outputs,
|
.outputs = avfilter_af_anull_outputs,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user