Skip to content
Snippets Groups Projects
Commit e76714f4 authored by Yaowu Xu's avatar Yaowu Xu Committed by Gerrit Code Review
Browse files

Merge "Normalize fdct8x8 in psnrhvs computation" into nextgenv2

parents 355e586f ac898d22
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,12 @@
static void od_bin_fdct8x8(tran_low_t *y, int ystride, const int16_t *x,
int xstride) {
int i, j;
(void) xstride;
vpx_fdct8x8(x, y, ystride);
for (i = 0; i < 8; i++)
for (j = 0; j< 8; j++)
*(y + ystride*i + j) = (*(y + ystride*i + j) + 4) >> 3;
}
/* Normalized inverse quantization matrix for 8x8 DCT at the point of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment