Use pre increment.

Change-Id: I016b4e77d8268e189473f4c382603afe1ae1750f
This commit is contained in:
hkuang 2014-10-13 14:04:16 -07:00
parent 574fd5fd96
commit c5fd035ce0

View File

@ -92,7 +92,7 @@ void vp9_foreach_transformed_block(const MACROBLOCKD* const xd,
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);
}