1*4882a593SmuzhiyunSUMMARY = "libva-utils is a collection of utilities from libva project" 2*4882a593Smuzhiyun 3*4882a593SmuzhiyunDESCRIPTION = "libva-utils is a collection of utilities \ 4*4882a593Smuzhiyunand examples to exercise VA-API in accordance with the libva \ 5*4882a593Smuzhiyunproject.VA-API is an open-source library and API specification, \ 6*4882a593Smuzhiyunwhich provides access to graphics hardware acceleration capabilities \ 7*4882a593Smuzhiyunfor video processing. It consists of a main library and driver-specific \ 8*4882a593Smuzhiyunacceleration backends for each supported hardware vendor" 9*4882a593Smuzhiyun 10*4882a593SmuzhiyunHOMEPAGE = "https://01.org/linuxmedia/vaapi" 11*4882a593SmuzhiyunBUGTRACKER = "https://github.com/intel/libva-utils/issues" 12*4882a593Smuzhiyun 13*4882a593SmuzhiyunSECTION = "x11" 14*4882a593SmuzhiyunLICENSE = "MIT" 15*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e" 16*4882a593Smuzhiyun 17*4882a593SmuzhiyunSRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.14-branch;protocol=https" 18*4882a593SmuzhiyunSRCREV = "9cf21686ad9cacef53ee6b3f13c02b830cf0c7a3" 19*4882a593SmuzhiyunS = "${WORKDIR}/git" 20*4882a593Smuzhiyun 21*4882a593SmuzhiyunUPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$" 22*4882a593Smuzhiyun 23*4882a593SmuzhiyunDEPENDS = "libva" 24*4882a593Smuzhiyun 25*4882a593Smuzhiyuninherit meson pkgconfig features_check 26*4882a593Smuzhiyun 27*4882a593Smuzhiyun# depends on libva which requires opengl 28*4882a593SmuzhiyunREQUIRED_DISTRO_FEATURES = "opengl" 29*4882a593Smuzhiyun 30*4882a593SmuzhiyunPACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" 31*4882a593SmuzhiyunPACKAGECONFIG[x11] = "-Dx11=true, -Dx11=false,virtual/libx11 libxext libxfixes" 32*4882a593SmuzhiyunPACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false,wayland-native wayland" 33