cosmetic fixes after Idaba281a

Change-Id: I275a3dee5696fe1a3e2db0976f8241f2044be512
This commit is contained in:
Pascal Massimino
2012-06-04 13:19:28 -07:00
parent b4e6645c61
commit d2b6c6c03b
2 changed files with 11 additions and 6 deletions

View File

@ -408,7 +408,7 @@ static int ExportAlpha(WebPDecParams* const p, int y_pos) {
static int ExportAlphaRGBA4444(WebPDecParams* const p, int y_pos) {
const WebPRGBABuffer* const buf = &p->output->u.RGBA;
uint8_t* base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
uint8_t* alpha_dst = base_rgba + 1;
int num_lines_out = 0;
const WEBP_CSP_MODE colorspace = p->output->colorspace;