From 88f8af26a92b66f1e7cdace21be01df25278b0b3 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 29 Nov 2012 02:09:40 +0100 Subject: [PATCH] vf_format: switch to filter_frame Signed-off-by: Michael Niedermayer --- libavfilter/vf_format.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index e33c25e6af..df3c77ab99 100644 --- a/libavfilter/vf_format.c +++ b/libavfilter/vf_format.c @@ -102,9 +102,6 @@ static const AVFilterPad avfilter_vf_format_inputs[] = { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = ff_null_get_video_buffer, - .start_frame = ff_null_start_frame, - .draw_slice = ff_null_draw_slice, - .end_frame = ff_null_end_frame, }, { NULL } }; @@ -144,9 +141,6 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = ff_null_get_video_buffer, - .start_frame = ff_null_start_frame, - .draw_slice = ff_null_draw_slice, - .end_frame = ff_null_end_frame, }, { NULL } };