1config BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS 2 bool 3 default y if BR2_arm && BR2_ARM_CPU_HAS_NEON 4 default y if BR2_aarch64 5 6config BR2_PACKAGE_BAYER2RGB_NEON 7 bool "bayer2rgb-neon" 8 depends on BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS 9 depends on !BR2_STATIC_LIBS 10 depends on BR2_INSTALL_LIBSTDCPP 11 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 12 help 13 bayer2rgb-neon is a library which allows 14 to decode raw camera bayer to RGB using 15 NEON hardware acceleration. 16 17 https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb 18 19comment "bayer2rgb-neon needs a toolchain w/ C++, dynamic library, gcc >= 4.9" 20 depends on BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS 21 depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \ 22 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 23