From 4038ed154dafdd63c1b8195f280b46e0185f253d Mon Sep 17 00:00:00 2001 From: skal Date: Fri, 26 Jul 2013 17:03:19 -0700 Subject: [PATCH] fix indent Change-Id: I7f226ec4276e5e1b46896086a7d96cb67f36de6a --- src/dec/vp8l.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dec/vp8l.c b/src/dec/vp8l.c index 014bc91d..d3d479b6 100644 --- a/src/dec/vp8l.c +++ b/src/dec/vp8l.c @@ -434,7 +434,7 @@ static int Export(WebPRescaler* const rescaler, WEBP_CSP_MODE colorspace, // Emit scaled rows. static int EmitRescaledRowsRGBA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h, - uint8_t* const out, int out_stride) { + uint8_t* const out, int out_stride) { const WEBP_CSP_MODE colorspace = dec->output_->colorspace; int num_lines_in = 0; int num_lines_out = 0; @@ -683,7 +683,7 @@ static void ProcessRows(VP8LDecoder* const dec, int row) { uint8_t* const rgba = buf->rgba + dec->last_out_row_ * buf->stride; const int num_rows_out = io->use_scaling ? EmitRescaledRowsRGBA(dec, rows_data, in_stride, io->mb_h, - rgba, buf->stride) : + rgba, buf->stride) : EmitRows(output->colorspace, rows_data, in_stride, io->mb_w, io->mb_h, rgba, buf->stride); // Update 'last_out_row_'.