DSP support depends on the core implementation, not on the ISA, so
enabling it for mips64r2 is not correct since you can build a mips64r2
core without DSP support.
Disable mipsdspr1 and mipsdspr2 options by default and let the user
enable them via the BR2_PACKAGE_FFMPEG_EXTRACONF kconfig option, which
will take preference and override the default values.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
--enable-runtime-cpudetect \
--disable-hardcoded-tables \
--disable-memalign-hack \
+ --disable-mipsdspr1 \
+ --disable-mipsdspr2 \
--disable-msa \
--enable-hwaccels \
--disable-avisynth \
--disable-mips32r2
endif
-ifeq ($(BR2_mips_64r2),y)
-FFMPEG_CONF_OPTS += \
- --enable-mipsdspr1 \
- --enable-mipsdspr2
-else
-FFMPEG_CONF_OPTS += \
- --disable-mipsdspr1 \
- --disable-mipsdspr2
-endif
-
ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y)
FFMPEG_CONF_OPTS += --enable-altivec
else