diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-10 09:11:51 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-10 15:08:12 +0000 |
commit | d751a2526f9be0e8aa72cb2ebf9b8686c8888e89 (patch) | |
tree | 3bfe45e5216864b6bdb6b5ea21af9427d9f7d55b /libavfilter | |
parent | a079ed63d3c0d9a31bc4f4fd659a0b31c72ad4bc (diff) | |
download | ffmpeg-d751a2526f9be0e8aa72cb2ebf9b8686c8888e89.tar.gz |
lavfi/anull: remove redundant lines
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_anull.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/af_anull.c b/libavfilter/af_anull.c index c61da3b4f1..7a0b3f70d7 100644 --- a/libavfilter/af_anull.c +++ b/libavfilter/af_anull.c @@ -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, }; |