diff --git a/src/enc/vp8l.c b/src/enc/vp8l.c index 1280fd3b..cd84079b 100644 --- a/src/enc/vp8l.c +++ b/src/enc/vp8l.c @@ -640,7 +640,7 @@ static WebPEncodingError EncodeImageInternal(VP8LBitWriter* const bw, if (histogram_argb == NULL) goto Error; for (i = 0; i < histogram_image_xysize; ++i) { const int symbol_index = histogram_symbols[i] & 0xffff; - histogram_argb[i] = 0xff000000 | (symbol_index << 8); + histogram_argb[i] = (symbol_index << 8); if (symbol_index >= max_index) { max_index = symbol_index + 1; }