ref: abdefeaa89a0908327518e5ca75c935c66b2e1aa
parent: 6cf3b98ac2df088d58e5ff834d025139ee3a9f54
parent: e91d7705111cbb2a9a8c0e85a9bbc3bc60ef9d43
author: Jingning Han <[email protected]>
date: Thu Nov 7 06:39:04 EST 2013
Merge "Fix the variable naming in encode_block"
--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -430,11 +430,11 @@
// TODO(jingning): per transformed block zero forcing only enabled for
// luma component. will integrate chroma components as well.
if (x->zcoeff_blk[tx_size][block] && plane == 0) {
- int x, y;
+ int i, j;
pd->eobs[block] = 0;
- txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y);
- ctx->ta[plane][x] = 0;
- ctx->tl[plane][y] = 0;
+ txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &i, &j);
+ ctx->ta[plane][i] = 0;
+ ctx->tl[plane][j] = 0;
return;
}