mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1040168 - Unbreak WebRTC on more archs without SSE2 after bug 983504. r=gcp
This commit is contained in:
parent
946ed74728
commit
5e73cbb6d0
@ -36,7 +36,7 @@ int BlockDifference(const uint8_t* image1, const uint8_t* image2, int stride) {
|
||||
static int (*diff_proc)(const uint8_t*, const uint8_t*, int) = NULL;
|
||||
|
||||
if (!diff_proc) {
|
||||
#if defined(ARCH_CPU_ARM_FAMILY) || defined(ARCH_CPU_MIPS_FAMILY)
|
||||
#if !defined(WEBRTC_ARCH_X86_FAMILY)
|
||||
// For ARM and MIPS processors, always use C version.
|
||||
// TODO(hclam): Implement a NEON version.
|
||||
diff_proc = &BlockDifference_C;
|
||||
|
Loading…
Reference in New Issue
Block a user