diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-07 14:58:40 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-08 12:48:05 +0000 |
commit | 8e2972274e1bbff83538d0622ce109ed1b448170 (patch) | |
tree | b39d02c2d26437e31a0af0c3c044f16e1d0a43c4 | |
parent | 443181c0a9a8700d31212b28a6eb5713ed5240dc (diff) | |
download | ffmpeg-8e2972274e1bbff83538d0622ce109ed1b448170.tar.gz |
lavfi/null: remove redudant lines
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_null.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavfilter/vf_null.c b/libavfilter/vf_null.c index eafa268948..0bafbf850b 100644 --- a/libavfilter/vf_null.c +++ b/libavfilter/vf_null.c @@ -30,7 +30,6 @@ static const AVFilterPad avfilter_vf_null_inputs[] = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, - .get_video_buffer = ff_null_get_video_buffer, }, { NULL } }; @@ -46,10 +45,6 @@ static const AVFilterPad avfilter_vf_null_outputs[] = { AVFilter avfilter_vf_null = { .name = "null", .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."), - - .priv_size = 0, - .inputs = avfilter_vf_null_inputs, - .outputs = avfilter_vf_null_outputs, }; |