Browse code

avfilter/vf_format: add .get_video_buffer back

Unbreak xyz12 with vflip.

Signed-off-by: Paul B Mahol <onemda@gmail.com>

Paul B Mahol authored on 2013/09/08 05:37:48
Showing 1 changed files
... ...
@@ -116,6 +116,7 @@ static const AVFilterPad avfilter_vf_format_inputs[] = {
116 116
     {
117 117
         .name             = "default",
118 118
         .type             = AVMEDIA_TYPE_VIDEO,
119
+        .get_video_buffer = ff_null_get_video_buffer,
119 120
     },
120 121
     { NULL }
121 122
 };
... ...
@@ -158,6 +159,7 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = {
158 158
     {
159 159
         .name             = "default",
160 160
         .type             = AVMEDIA_TYPE_VIDEO,
161
+        .get_video_buffer = ff_null_get_video_buffer,
161 162
     },
162 163
     { NULL }
163 164
 };