mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-01 13:58:05 +00:00
* Add support for CannonLake (aka. CNL)
- Decoding: H.264/MPEG-2/VC-1/JPEG/VP8/HEVC/HEVC 10-bit/VP9/VP9 10-bit
- Encoding: H.264/MPEG-2/JPEG/VP8/VP9
- VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive,
MotionCompensated}/ColorBalance/STD
* Add support for VC1 interlaced video decoding
* Add support for Stats/PreEnc on GEN9
* Add support for vaExportSurfaceHandle()
* Add new PCI IDs for CFL
* Add minimum resolution query for encoder
* Enhance the logging to provide informational messages
* Fix VP9 brc issue on KBL
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
34 lines
1.3 KiB
BlitzBasic
34 lines
1.3 KiB
BlitzBasic
SUMMARY = "VA driver for Intel G45 & HD Graphics family"
|
|
DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \
|
|
for Intel G45 chipsets and Intel HD Graphics for Intel Core \
|
|
processor family."
|
|
|
|
HOMEPAGE = "https://github.com/intel/intel-vaapi-driver"
|
|
BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
DEPENDS = "libva libdrm"
|
|
|
|
SRC_URI = "https://github.com/intel/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.bz2"
|
|
SRC_URI[md5sum] = "ab4c33ab31183787dece9b99a86f7b8c"
|
|
SRC_URI[sha256sum] = "ecfaf2ccc4b9af7340e002d2ef807d1e33051d4992f1983f5f4d60e516f86bdf"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/intel/intel-vaapi-driver/releases"
|
|
|
|
inherit autotools pkgconfig distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}"
|
|
PACKAGECONFIG[x11] = "--enable-x11,--disable-x11"
|
|
PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland wayland-native virtual/egl"
|
|
|
|
FILES_${PN} += "${libdir}/dri/*.so"
|
|
FILES_${PN}-dev += "${libdir}/dri/*.la"
|
|
FILES_${PN}-dbg += "${libdir}/dri/.debug"
|