1# These are the architectures supported by FDK AAC 2config BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS 3 bool 4 default y if BR2_aarch64 5 default y if BR2_arm || BR2_armeb 6 default y if BR2_i386 || BR2_x86_64 7 default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el 8 default y if BR2_powerpc 9 default y if BR2_sh 10 11config BR2_PACKAGE_FDK_AAC 12 bool "fdk-aac" 13 depends on BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS 14 depends on BR2_INSTALL_LIBSTDCPP 15 help 16 The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC 17 Codec") is software that implements the MPEG Advanced Audio 18 Coding ("AAC") encoding and decoding scheme for digital audio 19 20 http://sourceforge.net/projects/opencore-amr/files/fdk-aac/ 21 22comment "fdk-aac needs a toolchain w/ C++" 23 depends on BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS 24 depends on !BR2_INSTALL_LIBSTDCPP 25