1config BR2_PACKAGE_LIBVA 2 bool "libva" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm/libpthread-stubs 4 depends on !BR2_STATIC_LIBS 5 select BR2_PACKAGE_LIBDRM 6 select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 7 select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7 8 select BR2_PACKAGE_XLIB_LIBXFIXES if BR2_PACKAGE_XORG7 9 help 10 The main motivation for VA-API (Video Acceleration API) is to 11 enable hardware accelerated video decode/encode at various 12 entry-points (VLD, IDCT, Motion Compensation etc.) for the 13 prevailing coding standards today (MPEG-2, MPEG-4 ASP/H.263, 14 MPEG-4 AVC/H.264, and VC-1/VMW3). 15 16 https://01.org/vaapi 17 18comment "libva needs a toolchain w/ threads, dynamic library" 19 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 20