diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-07 20:37:48 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-07 20:37:48 +0000 |
commit | 4cf1900ba7e4c9aaff515f62196d661b891bdfdd (patch) | |
tree | 6c7d073ff362f1819f30b242bc884759c77ff296 | |
parent | 1e97ae4ba363c9c80ec44a7be0be608bda53b66f (diff) | |
download | ffmpeg-4cf1900ba7e4c9aaff515f62196d661b891bdfdd.tar.gz |
avfilter/vf_format: add .get_video_buffer back
Unbreak xyz12 with vflip.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_format.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index c9ccad9b25..25b3d19952 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 } }; |