From 4cf1900ba7e4c9aaff515f62196d661b891bdfdd Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 7 Sep 2013 20:37:48 +0000 Subject: avfilter/vf_format: add .get_video_buffer back Unbreak xyz12 with vflip. Signed-off-by: Paul B Mahol --- libavfilter/vf_format.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavfilter/vf_format.c') diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index c9ccad9..25b3d19 100644 --- a/libavfilter/vf_format.c +++ b/libavfilter/vf_format.c @@ -116,6 +116,7 @@ static const AVFilterPad avfilter_vf_format_inputs[] = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, + .get_video_buffer = ff_null_get_video_buffer, }, { NULL } }; @@ -158,6 +159,7 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, + .get_video_buffer = ff_null_get_video_buffer, }, { NULL } }; -- cgit v1.1