64x64 idct fix.

Change-Id: If0e0cd7cbe71e9586657f5e8ffa87dcdebc686ba
This commit is contained in:
Debargha Mukherjee 2015-09-25 05:54:23 -07:00
parent 1e2cbf515e
commit 5a25d567d7

View File

@ -3816,8 +3816,8 @@ void vp9_highbd_idct64x64_4096_add_c(const tran_low_t *input, uint8_t *dest8,
for (j = 0; j < 64; ++j) {
for (i = 0; i < 64; ++i)
dest[j * stride + i] = highbd_clip_pixel_add(
dest[j * 64 + i], round(out2[j * 64 + i] / 128), bd);
dest[i] = highbd_clip_pixel_add(
dest[i], round(out2[j * 64 + i] / 128), bd);
dest += stride;
}
}