1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/vf_format: add .get_video_buffer back

Unbreak xyz12 with vflip.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2013-09-07 20:37:48 +00:00
parent 1e97ae4ba3
commit 4cf1900ba7

View File

@@ -116,6 +116,7 @@ static const AVFilterPad avfilter_vf_format_inputs[] = {
{ {
.name = "default", .name = "default",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
}, },
{ NULL } { NULL }
}; };
@@ -158,6 +159,7 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = {
{ {
.name = "default", .name = "default",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
}, },
{ NULL } { NULL }
}; };