1config BR2_PACKAGE_INTEL_MEDIADRIVER 2 bool "intel-mediadriver" 3 depends on BR2_x86_64 4 depends on !BR2_STATIC_LIBS # mesa3d, libva 5 depends on BR2_INSTALL_LIBSTDCPP # mesa3d 6 depends on BR2_TOOLCHAIN_HAS_SYNC_1 # mesa3d 7 depends on BR2_TOOLCHAIN_HAS_THREADS # libva 8 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # mesa3d 9 select BR2_PACKAGE_INTEL_GMMLIB 10 select BR2_PACKAGE_LIBPCIACCESS 11 select BR2_PACKAGE_LIBVA 12 select BR2_PACKAGE_MESA3D 13 help 14 The Intel(R) Media Driver for VAAPI is a new VA-API (Video 15 Acceleration API) user mode driver supporting hardware 16 accelerated decoding, encoding, and video post processing for 17 GEN based graphics hardware. 18 19 https://github.com/intel/media-driver 20 21comment "intel-mediadriver needs a toolchain w/ dynamic library, C++, NPTL" 22 depends on BR2_x86_64 && BR2_TOOLCHAIN_HAS_SYNC_1 23 depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \ 24 !BR2_TOOLCHAIN_HAS_THREADS_NPTL 25