summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2026-05-12 22:20:50 +0800
committerYogesh Tyagi <yogesh.tyagi@intel.com>2026-05-12 23:12:44 +0800
commit447287c57ef405c37271178b26db7750c6bdaf1c (patch)
tree97d285ddc6b52c9a330077e06d241ab724f7973d
parentc5e8f190469d736ba3f4bf7e84b15bb2c274d3d1 (diff)
downloadmeta-intel-447287c57ef405c37271178b26db7750c6bdaf1c.tar.gz
intel-vaapi-driver: drop archived i965 VA-API backend
Upstream https://github.com/intel/intel-vaapi-driver was archived in May 2024 and no longer receives fixes. The i965 driver targeted Gen4-Gen9 Intel GPUs and has been functionally superseded on Gen8+ hardware by intel-media-driver (iHD), which is already the VA-API backend used by every meta-intel BSP machine that ships modern graphics. Remove the recipe, its runtime test case, the maintainer entry, and the only in-tree consumer (intel-core2-32's MACHINE_HWCODECS, which now keeps just the gstreamer1.0-plugins-bad codec set since no maintained VA-API backend supports that legacy 32-bit Core 2 hardware anyway). Recipes / files removed: * recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb * lib/oeqa/runtime/cases/intel_vaapi_driver.py Other changes: * conf/machine/intel-core2-32.conf: drop intel-vaapi-driver from MACHINE_HWCODECS * conf/include/maintainers.inc: drop pn-intel-vaapi-driver entry Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
-rw-r--r--conf/include/maintainers.inc1
-rw-r--r--conf/machine/intel-core2-32.conf2
-rw-r--r--lib/oeqa/runtime/cases/intel_vaapi_driver.py27
-rw-r--r--recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb34
4 files changed, 1 insertions, 63 deletions
diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc
index 7a161056..30df4ba9 100644
--- a/conf/include/maintainers.inc
+++ b/conf/include/maintainers.inc
@@ -13,7 +13,6 @@ RECIPE_MAINTAINER:pn-intel-crypto-mb = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
13RECIPE_MAINTAINER:pn-intel-graphics-compiler = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 13RECIPE_MAINTAINER:pn-intel-graphics-compiler = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
14RECIPE_MAINTAINER:pn-intel-media-driver = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 14RECIPE_MAINTAINER:pn-intel-media-driver = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
15RECIPE_MAINTAINER:pn-intel-microcode = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 15RECIPE_MAINTAINER:pn-intel-microcode = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
16RECIPE_MAINTAINER:pn-intel-vaapi-driver = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
17RECIPE_MAINTAINER:pn-ipmctl = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 16RECIPE_MAINTAINER:pn-ipmctl = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
18RECIPE_MAINTAINER:pn-isa-l = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 17RECIPE_MAINTAINER:pn-isa-l = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
19RECIPE_MAINTAINER:pn-ispc = "Yogesh Tyagi <yogesh.tyagi@intel.com>" 18RECIPE_MAINTAINER:pn-ispc = "Yogesh Tyagi <yogesh.tyagi@intel.com>"
diff --git a/conf/machine/intel-core2-32.conf b/conf/machine/intel-core2-32.conf
index 52383170..24aba117 100644
--- a/conf/machine/intel-core2-32.conf
+++ b/conf/machine/intel-core2-32.conf
@@ -11,7 +11,7 @@ MACHINE_FEATURES += "pcbios efi"
11MACHINE_FEATURES += "wifi 3g nfc" 11MACHINE_FEATURES += "wifi 3g nfc"
12MACHINE_FEATURES += "intel-ucode" 12MACHINE_FEATURES += "intel-ucode"
13 13
14MACHINE_HWCODECS ?= "intel-vaapi-driver gstreamer1.0-plugins-bad" 14MACHINE_HWCODECS ?= "gstreamer1.0-plugins-bad"
15 15
16XSERVER ?= "${XSERVER_X86_BASE} \ 16XSERVER ?= "${XSERVER_X86_BASE} \
17 ${XSERVER_X86_EXT} \ 17 ${XSERVER_X86_EXT} \
diff --git a/lib/oeqa/runtime/cases/intel_vaapi_driver.py b/lib/oeqa/runtime/cases/intel_vaapi_driver.py
deleted file mode 100644
index a1182088..00000000
--- a/lib/oeqa/runtime/cases/intel_vaapi_driver.py
+++ /dev/null
@@ -1,27 +0,0 @@
1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.runtime.decorator.package import OEHasPackage
3from oeqa.core.decorator.depends import OETestDepends
4
5class VaapiDriverTest(OERuntimeTestCase):
6
7 @classmethod
8 def tearDownClass(cls):
9 cls.tc.target.run("rm /tmp/vtest_h264.mp4")
10
11 @OEHasPackage(['gstreamer1.0-plugins-base'])
12 @OEHasPackage(['gstreamer1.0-plugins-good'])
13 @OEHasPackage(['gstreamer1.0-plugins-bad'])
14 @OEHasPackage(['intel-vaapi-driver'])
15 def test_gstreamer_can_encode_with_intel_vaapi_driver(self):
16 (status, output) = self.target.run('gst-inspect-1.0 vaapi')
17 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))
18
19 (status, output) = self.target.run('gst-launch-1.0 -ev videotestsrc num-buffers=60 ! '
20 'timeoverlay ! vaapih264enc ! h264parse ! mp4mux ! filesink location=/tmp/vtest_h264.mp4')
21 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))
22
23 @OETestDepends(['intel_vaapi_driver.VaapiDriverTest.test_gstreamer_can_encode_with_intel_vaapi_driver'])
24 def test_gstreamer_can_decode_with_intel_vaapi_driver(self):
25 (status, output) = self.target.run('gst-launch-1.0 filesrc location=/tmp/vtest_h264.mp4 ! '
26 'qtdemux ! h264parse ! vaapih264dec ! vaapisink')
27 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))
diff --git a/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb b/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb
deleted file mode 100644
index 5038d8d7..00000000
--- a/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb
+++ /dev/null
@@ -1,34 +0,0 @@
1SUMMARY = "VA driver for Intel G45 & HD Graphics family"
2DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \
3for Intel G45 chipsets and Intel HD Graphics for Intel Core \
4processor family."
5
6HOMEPAGE = "https://github.com/intel/intel-vaapi-driver"
7BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues"
8
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
11
12COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
13
14DEPENDS = "libva libdrm"
15
16SRC_URI = "https://github.com/intel/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.bz2 \
17 "
18
19SRC_URI[sha256sum] = "0081fce08eb3a83f7d99c3b853c8fdfa0af437b8f5b0fb7c66faeb83bcbe0c19"
20
21UPSTREAM_CHECK_URI = "https://github.com/intel/intel-vaapi-driver/releases"
22
23inherit meson pkgconfig features_check
24
25REQUIRED_DISTRO_FEATURES = "opengl"
26
27PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
28 ${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}"
29PACKAGECONFIG[x11] = "-Dwith_x11=yes, -Dwith_x11=no"
30PACKAGECONFIG[wayland] = "-Dwith_wayland=yes, -Dwith_wayland=no, wayland wayland-native virtual/egl"
31
32FILES:${PN} += "${libdir}/dri/*.so"
33FILES:${PN}-dev += "${libdir}/dri/*.la"
34FILES:${PN}-dbg += "${libdir}/dri/.debug"