Remove an unnecessary transposition in TTransform.

Change-Id: Ib715c2d5ba659cb2db9c6832875ba508cc2fca3e
This commit is contained in:
Vincent Rabaud
2016-02-17 21:41:28 +01:00
parent 9dbd4aad77
commit 9960c31685
4 changed files with 39 additions and 66 deletions

View File

@@ -559,6 +559,7 @@ static int SSE4x4(const uint8_t* a, const uint8_t* b) {
// Hadamard transform
// Returns the weighted sum of the absolute value of transformed coefficients.
// w[] contains a row-major 4 by 4 symmetric matrix.
static int TTransform(const uint8_t* in, const uint16_t* w) {
int sum = 0;
int tmp[16];