mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-13 15:32:53 +01:00
Merge "SSIM: harmonize the function suffix"
This commit is contained in:
commit
bed0456d58
@ -109,7 +109,7 @@ static double SSIMGet_C(const uint8_t* src1, int stride1,
|
|||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
static uint32_t AccumulateSSE(const uint8_t* src1,
|
static uint32_t AccumulateSSE_C(const uint8_t* src1,
|
||||||
const uint8_t* src2, int len) {
|
const uint8_t* src2, int len) {
|
||||||
int i;
|
int i;
|
||||||
uint32_t sse2 = 0;
|
uint32_t sse2 = 0;
|
||||||
@ -138,7 +138,7 @@ WEBP_TSAN_IGNORE_FUNCTION void VP8SSIMDspInit(void) {
|
|||||||
VP8SSIMGetClipped = SSIMGetClipped_C;
|
VP8SSIMGetClipped = SSIMGetClipped_C;
|
||||||
VP8SSIMGet = SSIMGet_C;
|
VP8SSIMGet = SSIMGet_C;
|
||||||
|
|
||||||
VP8AccumulateSSE = AccumulateSSE;
|
VP8AccumulateSSE = AccumulateSSE_C;
|
||||||
if (VP8GetCPUInfo != NULL) {
|
if (VP8GetCPUInfo != NULL) {
|
||||||
#if defined(WEBP_USE_SSE2)
|
#if defined(WEBP_USE_SSE2)
|
||||||
if (VP8GetCPUInfo(kSSE2)) {
|
if (VP8GetCPUInfo(kSSE2)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user