Resolve bug of DST1 in ext_tx experiment.

Change-Id: I828569e3596f9b9e8487aec7c4056e66cf1fc1f2
This commit is contained in:
Cheng Chen 2015-07-28 10:49:55 -07:00
parent 23690fc5d1
commit cc4d523d9f

View File

@ -50,6 +50,10 @@ static void fdstNxN(const int16_t *input, tran_low_t *output,
mat2[i * N + j] = inter[i];
}
// transpose
for (i = 0; i < N; i++)
for (j = 0; j < N; j++)
mat[i*N + j] = mat2[i + j*N];
switch (N) {
case 4:
val = val_2_5;