Commit 4cf1900b authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_format: add .get_video_buffer back

Unbreak xyz12 with vflip.
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1e97ae4b
...@@ -116,6 +116,7 @@ static const AVFilterPad avfilter_vf_format_inputs[] = { ...@@ -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[] = { ...@@ -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 }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment