gst1-libav: allow usage of ARMv6 optimizations on ARMv7 platforms
Contrary to the ffmpeg package, the gst1-libav package was only allowing ARMv6 optimizations on ARMv6 platforms. This commit also allows ARMv6 optimizations on ARMv7 platforms, like the ffmpeg package does. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
2cb7b9fe1e
commit
f284e4b8b5
@ -52,7 +52,7 @@ endif
|
||||
ifeq ($(BR2_ARM_CPU_ARMV4),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-armv5te
|
||||
endif
|
||||
ifeq ($(BR2_ARM_CPU_ARMV6),y)
|
||||
ifeq ($(BR2_ARM_CPU_ARMV6)$(BR2_ARM_CPU_ARMV7A),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-armv6
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-armv6 --disable-armv6t2
|
||||
|
Loading…
Reference in New Issue
Block a user