Merge "dsp: reuse wht transform from dec in encoder"

This commit is contained in:
James Zern
2014-03-26 15:13:07 -07:00
committed by Gerrit Code Review
4 changed files with 2 additions and 100 deletions

View File

@ -751,7 +751,7 @@ static int ReconstructIntra16(VP8EncIterator* const it,
}
// Transform back
VP8ITransformWHT(dc_tmp, tmp[0]);
VP8TransformWHT(dc_tmp, tmp[0]);
for (n = 0; n < 16; n += 2) {
VP8ITransform(ref + VP8Scan[n], tmp[n], yuv_out + VP8Scan[n], 1);
}