Config.in 598 B

1234567891011121314151617
  1. config BR2_PACKAGE_BAYER2RGB_NEON
  2. bool "bayer2rgb-neon"
  3. depends on BR2_arm && BR2_ARM_CPU_HAS_NEON
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  7. help
  8. bayer2rgb-neon is a library which allows
  9. to decode raw camera bayer to RGB using
  10. NEON hardware acceleration.
  11. https://git.phytec.de/bayer2rgb-neon/
  12. comment "bayer2rgb-neon needs a toolchain w/ C++, dynamic library, gcc >= 4.9"
  13. depends on BR2_arm && BR2_ARM_CPU_HAS_NEON
  14. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9