blob: 0f16dacc98f9cbc7e6e392e14be2c8359336534b [file] [log] [blame]
Andrew Geisslerc182c622020-05-15 14:13:32 -05001SUMMARY = "Video Acceleration (VA) API for Linux"
2DESCRIPTION = "Video Acceleration API (VA API) is a library (libVA) \
3and API specification which enables and provides access to graphics \
4hardware (GPU) acceleration for video processing on Linux and UNIX \
5based operating systems. Accelerated processing includes video \
6decoding, video encoding, subpicture blending and rendering. The \
7specification was originally designed by Intel for its GMA (Graphics \
8Media Accelerator) series of GPU hardware, the API is however not \
9limited to GPUs or Intel specific hardware, as other hardware and \
10manufacturers can also freely use this API for hardware accelerated \
11video decoding."
12
13HOMEPAGE = "https://01.org/linuxmedia/vaapi"
14BUGTRACKER = "https://github.com/intel/libva/issues"
15
16SECTION = "x11"
17LICENSE = "MIT"
18
Andrew Geissler87f5cff2022-09-30 13:13:31 -050019SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/libva-${PV}.tar.bz2"
Andrew Geissler6ce62a22020-11-30 19:58:47 -060020LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
Patrick Williams2390b1b2022-11-03 13:47:49 -050021SRC_URI[sha256sum] = "115faca0db2c417a37da49830870e260450fa13066f5e24e252a20c36d920a1c"
Andrew Geisslerc182c622020-05-15 14:13:32 -050022
23S = "${WORKDIR}/libva-${PV}"
24
Andrew Geissler87f5cff2022-09-30 13:13:31 -050025GITHUB_BASE_URI = "https://github.com/intel/libva/releases"
Andrew Geisslerc182c622020-05-15 14:13:32 -050026
27DEPENDS = "libdrm"
28
Andrew Geissler87f5cff2022-09-30 13:13:31 -050029inherit meson pkgconfig github-releases
Andrew Geissler595f6302022-01-24 19:11:47 +000030
31PACKAGECONFIG[x11] = "-Dwith_x11=yes,-Dwith_x11=no,virtual/libx11 libxext libxfixes"
32PACKAGECONFIG[glx] = "-Dwith_glx=yes,-Dwith_glx=no,virtual/mesa"
33
34PACKAGECONFIG[wayland] = "-Dwith_wayland=yes,-Dwith_wayland=no,wayland-native wayland"
35
Andrew Geissler9aee5002022-03-30 16:27:02 +000036BBCLASSEXTEND = "native nativesdk"
37