Merge "Improving the forward 16x16 ADST/DCT accuracy" into experimental

This commit is contained in:
Jingning Han 2013-02-25 13:38:33 -08:00 коммит произвёл Gerrit Code Review
Родитель 0e36158c70 65821d6680
Коммит e7b67d33a9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -728,10 +728,10 @@ void vp9_short_fht16x16_c(int16_t *input, int16_t *output,
// column transform
for (i = 0; i < 16; ++i) {
for (j = 0; j < 16; ++j)
temp_in[j] = input[j * short_pitch + i];
temp_in[j] = input[j * short_pitch + i] << 2;
fwdc(temp_in, temp_out);
for (j = 0; j < 16; ++j)
outptr[j * 16 + i] = temp_out[j];
outptr[j * 16 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
}
// row transform