1config BR2_PACKAGE_MJPEGTOOLS 2 bool "mjpegtools" 3 depends on BR2_USE_MMU # fork 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 select BR2_PACKAGE_JPEG 7 help 8 The mjpegtools programs are a set of tools 9 that can do recording of videos and playback, 10 simple cut-and-paste editing and the MPEG 11 compression of audio and video under Linux. 12 13 http://mjpeg.sourceforge.net 14 15config BR2_PACKAGE_MJPEGTOOLS_SIMD_SUPPORT 16 bool 17 default y if BR2_X86_CPU_HAS_MMX 18 default y if BR2_POWERPC_CPU_HAS_ALTIVEC 19 20comment "mjpegtools needs a toolchain w/ C++, threads" 21 depends on BR2_USE_MMU 22 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 23