summaryrefslogtreecommitdiffstats
path: root/thirdparty/libwebp/src/dsp/upsampling_msa.c
diff options
context:
space:
mode:
authorvolzhs <volzhs@gmail.com>2020-01-17 03:49:31 +0900
committervolzhs <volzhs@gmail.com>2020-01-17 03:49:31 +0900
commit65f2ab1b61d0949bae7f06553b081e1aae276148 (patch)
treee9b85cdc26a2a140ac6675d90dced255eb72c3c6 /thirdparty/libwebp/src/dsp/upsampling_msa.c
parent6b64c60b0eade65ca1147a0af39baefec732d652 (diff)
downloadredot-engine-65f2ab1b61d0949bae7f06553b081e1aae276148.tar.gz
Update libwebp to 1.1.0
Diffstat (limited to 'thirdparty/libwebp/src/dsp/upsampling_msa.c')
-rw-r--r--thirdparty/libwebp/src/dsp/upsampling_msa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/libwebp/src/dsp/upsampling_msa.c b/thirdparty/libwebp/src/dsp/upsampling_msa.c
index 99eea70e7d..f2e03e85e9 100644
--- a/thirdparty/libwebp/src/dsp/upsampling_msa.c
+++ b/thirdparty/libwebp/src/dsp/upsampling_msa.c
@@ -576,9 +576,9 @@ static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
const uint32_t l_uv = ((cur_u[0]) | ((cur_v[0]) << 16)); \
const uint32_t uv0 = (3 * tl_uv + l_uv + 0x00020002u) >> 2; \
const uint8_t* ptop_y = &top_y[1]; \
- uint8_t *ptop_dst = top_dst + XSTEP; \
+ uint8_t* ptop_dst = top_dst + XSTEP; \
const uint8_t* pbot_y = &bot_y[1]; \
- uint8_t *pbot_dst = bot_dst + XSTEP; \
+ uint8_t* pbot_dst = bot_dst + XSTEP; \
\
FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
if (bot_y != NULL) { \