mplayer: allow usage of ARMv6 optimizations on ARMv7 platforms

Similar to what we do for ffmpeg/gst-ffmpeg/gst1-libav.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2014-11-06 23:35:44 +01:00
parent 6cf975c2fa
commit 78b1a3b4e5

View File

@ -109,7 +109,7 @@ ifeq ($(BR2_ARM_CPU_ARMV5),y)
MPLAYER_CONF_OPTS += --enable-armv5te
endif
ifeq ($(BR2_ARM_CPU_ARMV6),y)
ifeq ($(BR2_ARM_CPU_ARMV6)$(BR2_ARM_CPU_ARMV7A),y)
MPLAYER_CONF_OPTS += --enable-armv6
endif