dec_sse41: harmonize function suffixes

BUG=webp:355

Change-Id: Id55f7b2e6288d1d0885d8451fbc59771222073d6
This commit is contained in:
James Zern 2017-11-21 12:47:06 -08:00
parent e65b72a368
commit 28c5ac8104

View File

@ -19,7 +19,7 @@
#include "src/dec/vp8i_dec.h"
#include "src/utils/utils.h"
static void HE16(uint8_t* dst) { // horizontal
static void HE16_SSE41(uint8_t* dst) { // horizontal
int j;
const __m128i kShuffle3 = _mm_set1_epi8(3);
for (j = 16; j > 0; --j) {
@ -36,7 +36,7 @@ static void HE16(uint8_t* dst) { // horizontal
extern void VP8DspInitSSE41(void);
WEBP_TSAN_IGNORE_FUNCTION void VP8DspInitSSE41(void) {
VP8PredLuma16[3] = HE16;
VP8PredLuma16[3] = HE16_SSE41;
}
#else // !WEBP_USE_SSE41