diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-07 13:26:11 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-07 18:20:16 +0000 |
commit | b077d8d9082d057d4c7abd9e0b1a98f9651cfaa8 (patch) | |
tree | 2c0c1de3f6eb4ff6b9538998e6b90a46c835b44e /libavfilter/split.c | |
parent | 5a16a1d508d559f2aa436ee0934ef33a0d35356c (diff) | |
download | ffmpeg-b077d8d9082d057d4c7abd9e0b1a98f9651cfaa8.tar.gz |
avfilter: remove redundant .get_(audio/video)_buffer initializations
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/split.c')
-rw-r--r-- | libavfilter/split.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/split.c b/libavfilter/split.c index f3fe2336af..ccc34aaf15 100644 --- a/libavfilter/split.c +++ b/libavfilter/split.c @@ -108,7 +108,6 @@ static const AVFilterPad avfilter_vf_split_inputs[] = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, - .get_video_buffer = ff_null_get_video_buffer, .filter_frame = filter_frame, }, { NULL } @@ -134,7 +133,6 @@ static const AVFilterPad avfilter_af_asplit_inputs[] = { { .name = "default", .type = AVMEDIA_TYPE_AUDIO, - .get_audio_buffer = ff_null_get_audio_buffer, .filter_frame = filter_frame, }, { NULL } |