• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

Revision67206b24013a036e834b9d6f78087e1859d00ef0 (tree)
Zeit2014-07-18 21:04:24
AutorAustin Yuan <shengquan.yuan@inte...>
CommiterXiang, Haihao

Log Message

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)

Ändern Zusammenfassung

Diff

--- a/va/va_enc_vp8.h
+++ b/va/va_enc_vp8.h
@@ -136,6 +136,7 @@ typedef struct _VAEncPictureParameterBufferVP8
136136 union {
137137 struct {
138138 /* version */
139+ unsigned int frame_type : 1;
139140 unsigned int version : 3;
140141 /* show_frame */
141142 unsigned int show_frame : 1;
@@ -229,7 +230,7 @@ typedef struct _VAEncPictureParameterBufferVP8
229230 * Encoder application is advised to set this flag to 1 at key frames.
230231 */
231232 unsigned int forced_lf_adjustment : 1;
232- unsigned int reserved : 3;
233+ unsigned int reserved : 2;
233234 } bits;
234235 unsigned int value;
235236 } pic_flags;