Merge "Use pre increment."

This commit is contained in:
hkuang
2014-10-13 15:24:57 -07:00
committed by Gerrit Code Review

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);
}