From 088f1dcce8e514e03cb8725b5d9d41751659c196 Mon Sep 17 00:00:00 2001 From: skal Date: Tue, 8 Aug 2017 08:52:06 -0700 Subject: [PATCH] SSIM: harmonize the function suffix BUG=webp:355 Change-Id: I751852ddb2abb7319e41e6c7d022ac4f288b4d08 --- src/dsp/ssim.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dsp/ssim.c b/src/dsp/ssim.c index 0190f156..e28cda62 100644 --- a/src/dsp/ssim.c +++ b/src/dsp/ssim.c @@ -109,8 +109,8 @@ static double SSIMGet_C(const uint8_t* src1, int stride1, //------------------------------------------------------------------------------ -static uint32_t AccumulateSSE(const uint8_t* src1, - const uint8_t* src2, int len) { +static uint32_t AccumulateSSE_C(const uint8_t* src1, + const uint8_t* src2, int len) { int i; uint32_t sse2 = 0; assert(len <= 65535); // to ensure that accumulation fits within uint32_t @@ -138,7 +138,7 @@ WEBP_TSAN_IGNORE_FUNCTION void VP8SSIMDspInit(void) { VP8SSIMGetClipped = SSIMGetClipped_C; VP8SSIMGet = SSIMGet_C; - VP8AccumulateSSE = AccumulateSSE; + VP8AccumulateSSE = AccumulateSSE_C; if (VP8GetCPUInfo != NULL) { #if defined(WEBP_USE_SSE2) if (VP8GetCPUInfo(kSSE2)) {