hardware/intel/libva
Revision | 67206b24013a036e834b9d6f78087e1859d00ef0 (tree) |
---|---|
Zeit | 2014-07-18 21:04:24 |
Autor | Austin Yuan <shengquan.yuan@inte...> |
Commiter | Xiang, Haihao |
Add frame_type to VP8 encoder
From penne.y.lee at intel.com
Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
(cherry picked from commit c61d986851140a6d1e3f9a6d788bcb7a9407dffc)
@@ -136,6 +136,7 @@ typedef struct _VAEncPictureParameterBufferVP8 | ||
136 | 136 | union { |
137 | 137 | struct { |
138 | 138 | /* version */ |
139 | + unsigned int frame_type : 1; | |
139 | 140 | unsigned int version : 3; |
140 | 141 | /* show_frame */ |
141 | 142 | unsigned int show_frame : 1; |
@@ -229,7 +230,7 @@ typedef struct _VAEncPictureParameterBufferVP8 | ||
229 | 230 | * Encoder application is advised to set this flag to 1 at key frames. |
230 | 231 | */ |
231 | 232 | unsigned int forced_lf_adjustment : 1; |
232 | - unsigned int reserved : 3; | |
233 | + unsigned int reserved : 2; | |
233 | 234 | } bits; |
234 | 235 | unsigned int value; |
235 | 236 | } pic_flags; |