From e632b0929bb154235e3e198466be6ea9cf18272f Mon Sep 17 00:00:00 2001 From: skal Date: Mon, 25 Aug 2014 23:52:09 -0700 Subject: [PATCH] fix indentation Change-Id: I2294a6c83e5f345f64bd5120b91532e00ed6c543 --- src/enc/quant.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/enc/quant.c b/src/enc/quant.c index 9b4f4d73..1263f75a 100644 --- a/src/enc/quant.c +++ b/src/enc/quant.c @@ -746,7 +746,7 @@ static int ReconstructIntra16(VP8EncIterator* const it, } } } else { - for (n = 0; n < 16; n += 2) { + for (n = 0; n < 16; n += 2) { // Zero-out the first coeff, so that: a) nz is correct below, and // b) finding 'last' non-zero coeffs in SetResidualCoeffs() is simplified. tmp[n][0] = tmp[n + 1][0] = 0;