use 32bit for storing dequant coeffs, instead of 16b.

is a tad faster

Change-Id: Ibef8f3b4f3f04a9a647098e5946f616e211a61cd
This commit is contained in:
Pascal Massimino
2012-01-29 17:38:37 -08:00
parent b9600308e8
commit f73947f41d
2 changed files with 3 additions and 2 deletions

View File

@ -162,8 +162,9 @@ typedef struct { // used for syntax-parsing
} VP8MB;
// Dequantization matrices
typedef int quant_t[2]; // [DC / AC]. Can be 'uint16_t[2]' too (~slower).
typedef struct {
uint16_t y1_mat_[2], y2_mat_[2], uv_mat_[2]; // [DC / AC]
quant_t y1_mat_, y2_mat_, uv_mat_;
} VP8QuantMatrix;
// Persistent information needed by the parallel processing