android: reactivate neon optimizations

NEON instructions no longer cause a SIGBUS error.

Change-Id: I30e445de66abe2f51c1732e76a88e8a708532776
This commit is contained in:
philippegorley
2017-08-04 10:17:22 -04:00
committed by Philippe Gorley
parent 1408483d43
commit 7b0bf45a92

View File

@ -170,14 +170,12 @@ endif
# ARM stuff
ifeq ($(ARCH),arm)
# neon causes SIGBUS error on ARM 32 bits
FFMPEGCONF += --disable-neon
FFMPEGCONF += --arch=arm
ifdef HAVE_ARMV7A
FFMPEGCONF += --cpu=cortex-a8
endif
ifdef HAVE_ARMV6
FFMPEGCONF += --cpu=armv6
FFMPEGCONF += --cpu=armv6 --disable-neon
endif
endif