mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-16 22:09:57 +02:00
use 32bit for storing dequant coeffs, instead of 16b.
is a tad faster Change-Id: Ibef8f3b4f3f04a9a647098e5946f616e211a61cd
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user