• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No 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

Revisióna1c74db238495a4727976fb5ae211c3e5e9db5e7 (tree)
Tiempo2014-02-13 16:07:47
AutorTianmi Chen <tianmi.chen@inte...>
CommiterXiang, Haihao

Log Message

libva: change the types of all fields in VABoolCoderContextVPX

BZ: 120268

Change the types of all fields in VABoolCoderContextVPX to
"unsigned char" to avoid potential bugs.

Change-Id: I483f115080cefe45ae49503ff5737c7dfff305a8
Signed-off-by: Tianmi Chen <tianmi.chen@intel.com>

Cambiar Resumen

Diferencia incremental

--- a/va/va_dec_vp8.h
+++ b/va/va_dec_vp8.h
@@ -51,11 +51,11 @@ extern "C" {
5151 typedef struct _VABoolCoderContextVPX
5252 {
5353 /* partition 0 "range" */
54- unsigned short range;
54+ unsigned char range;
5555 /* partition 0 "value" */
56- unsigned int value;
56+ unsigned char value;
5757 /* partition 0 number of shifts before an output byte is available */
58- unsigned short count;
58+ unsigned char count;
5959 } VABoolCoderContextVPX;
6060
6161 /**