[FFmpeg-cvslog] avfilter/vf_format: add .get_video_buffer back
Paul B Mahol
git at videolan.org
Sat Sep 7 22:42:41 CEST 2013
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Sep 7 20:37:48 2013 +0000| [4cf1900ba7e4c9aaff515f62196d661b891bdfdd] | committer: Paul B Mahol
avfilter/vf_format: add .get_video_buffer back
Unbreak xyz12 with vflip.
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4cf1900ba7e4c9aaff515f62196d661b891bdfdd
---
libavfilter/vf_format.c | 2 ++
1 file changed, 2 insertions(+)
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 }
};
More information about the ffmpeg-cvslog
mailing list