Skip to content
Snippets Groups Projects
Commit 4d0bf1f3 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk
Browse files

vpx: disable neon for iOS

This patch fixes a crash when using NEON on devices with A11
and earlier, as they do not support NEON dot-product instructions.

jami-client-ios#411
Change-Id: Ia107a04145bb4eb2c9fd6f7e977cb0742f0fab1e
parent 9dcca33d
Branches
No related tags found
No related merge requests found
......@@ -92,7 +92,9 @@ VPX_CONF := \
--disable-webm-io
ifdef HAVE_IOS
VPX_CONF += --disable-runtime-cpu-detect
VPX_CONF += \
--disable-runtime-cpu-detect \
--disable-neon # Disable NEON to prevent crashes on iOS devices A11 and prior
endif
ifndef HAVE_WIN32
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment