mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-04 16:10:06 +00:00
Major changes:
* Bump version to 2.0.0
* Add support for Coffee Lake (aka. CFL)
- 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/HEVC/HEVC 10-bit/AVC low power CQP/CBR/VBR mode
- VPP: CSC/scaling/NoiseReduction/Deinterlacing{Bob, MotionAdaptive, MotionCompensated}/ColorBalance/STD
* Add support for H264 FEI
* Add support for HEVC ROI encoding
* Add support for intensity compensation for VC-1 decoding
* Improve the quality of the H264 encoder on BDW/BSW
* Improve the CSC performance between I420/NV12/P010/YUY2/VYUY format
* Improve the performace of va{Get, Put}Image for I420/NV12/P010/YUY2/VYUY format
* Fix image corruption for VP9 decoding
* Fix race condition in wayland support
* Fix ROI support in VDEnc support
* Fix corrupted stream when using VDEnc CBR/VBR
* Fix GCC 7.1.1 warnings/errors
* Update the shader for HEVC encoding
The upstream package name now is intel-vaapi-driver instead of libva-intel-driver.
Updated to point to release tarball instead of git. Also, changed
the URLs to point to new project page.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
33 lines
741 B
BlitzBasic
33 lines
741 B
BlitzBasic
DESCRIPTION = "Video Acceleration Add-ons for Intel BSPs"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
PR = "r1"
|
|
|
|
def map_valibs(d):
|
|
# The intel implementation requires the intel-vaapi-driver package
|
|
if bb.utils.contains('MACHINE_FEATURES', 'va-impl-intel', "1", "0", d) == "1":
|
|
return "libva intel-vaapi-driver"
|
|
# All meta-intel video acceleration requires libva
|
|
return "libva"
|
|
|
|
VA_IMPL = "${@map_valibs(d)}"
|
|
|
|
PACKAGES = "\
|
|
va-intel \
|
|
"
|
|
|
|
ALLOW_EMPTY_va-intel = "1"
|
|
|
|
RDEPENDS_va-intel = " \
|
|
${VA_IMPL} \
|
|
"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux*'
|
|
|
|
inherit distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|