ref: c5fd035ce02e2b5499abb97dad95315ac1d9c176
parent: 574fd5fd966344d3c20fa3fba83f6e1cf09fc39a
author: hkuang <[email protected]>
date: Mon Oct 13 10:04:16 EDT 2014
Use pre increment. Change-Id: I016b4e77d8268e189473f4c382603afe1ae1750f
--- a/vp9/common/vp9_blockd.c
+++ b/vp9/common/vp9_blockd.c
@@ -92,7 +92,7 @@
void *arg) {
int plane;
- for (plane = 0; plane < MAX_MB_PLANE; plane++)
+ for (plane = 0; plane < MAX_MB_PLANE; ++plane)
vp9_foreach_transformed_block_in_plane(xd, bsize, plane, visit, arg);
}