extras: fix WEBP_SWAP_16BIT_CSP check

this is defined to 0 by dsp.h if it wasn't defined previously, since:
47178dbd extras: add WebPUnmultiplyARGB() convenience function

Change-Id: If4dd48360a95b2786410670cff5ac655227fb6dd
This commit is contained in:
James Zern 2019-12-17 18:52:24 -08:00 committed by Pascal Massimino
parent 47178dbd45
commit 6e3ef7b326

View File

@ -58,7 +58,7 @@ int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic) {
for (y = 0; y < pic->height; ++y) { for (y = 0; y < pic->height; ++y) {
const int width = pic->width; const int width = pic->width;
for (x = 0; x < width; ++x) { for (x = 0; x < width; ++x) {
#ifdef WEBP_SWAP_16BIT_CSP #if defined(WEBP_SWAP_16BIT_CSP) && (WEBP_SWAP_16BIT_CSP == 1)
const uint32_t rg = rgb565[2 * x + 1]; const uint32_t rg = rgb565[2 * x + 1];
const uint32_t gb = rgb565[2 * x + 0]; const uint32_t gb = rgb565[2 * x + 0];
#else #else
@ -91,7 +91,7 @@ int WebPImportRGB4444(const uint8_t* rgb4444, WebPPicture* pic) {
for (y = 0; y < pic->height; ++y) { for (y = 0; y < pic->height; ++y) {
const int width = pic->width; const int width = pic->width;
for (x = 0; x < width; ++x) { for (x = 0; x < width; ++x) {
#ifdef WEBP_SWAP_16BIT_CSP #if defined(WEBP_SWAP_16BIT_CSP) && (WEBP_SWAP_16BIT_CSP == 1)
const uint32_t rg = rgb4444[2 * x + 1]; const uint32_t rg = rgb4444[2 * x + 1];
const uint32_t ba = rgb4444[2 * x + 0]; const uint32_t ba = rgb4444[2 * x + 0];
#else #else