mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
1e97ae4ba3
commit
4cf1900ba7
|
@ -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 }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue