From 01fa74663255ecfabc4c172d4b1d42958c1f1e6d Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Thu, 17 Feb 2022 05:42:33 +0000 Subject: [PATCH] libva: update to 2.14.0 version 2.14.0 - 16.Feb.2022 * add: Add av1 encode interfaces * add: VA/X11 VAAPI driver mapping for crocus DRI driver * doc: Add description of the fd management for surface importing * ci: fix freebsd build * meson: Copy public headers to build directory to support subproject --- packages/multimedia/libva/package.mk | 4 ++-- .../patches/libva-999.01-PR547-crocus.patch | 22 ------------------- 2 files changed, 2 insertions(+), 24 deletions(-) delete mode 100644 packages/multimedia/libva/patches/libva-999.01-PR547-crocus.patch diff --git a/packages/multimedia/libva/package.mk b/packages/multimedia/libva/package.mk index b16f773827..ff21e52b83 100644 --- a/packages/multimedia/libva/package.mk +++ b/packages/multimedia/libva/package.mk @@ -3,8 +3,8 @@ # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) PKG_NAME="libva" -PKG_VERSION="2.13.0" -PKG_SHA256="6b7ec7d4fa204dad3f266450981f1f0892400c03afd3e00ac11f8ccade5aaaa1" +PKG_VERSION="2.14.0" +PKG_SHA256="f21152a2170edda9d1c4dd463d52eaf62b553e83e553c0a946654523cca86d5e" PKG_ARCH="x86_64" PKG_LICENSE="GPL" PKG_SITE="https://01.org/linuxmedia" diff --git a/packages/multimedia/libva/patches/libva-999.01-PR547-crocus.patch b/packages/multimedia/libva/patches/libva-999.01-PR547-crocus.patch deleted file mode 100644 index 325a894686..0000000000 --- a/packages/multimedia/libva/patches/libva-999.01-PR547-crocus.patch +++ /dev/null @@ -1,22 +0,0 @@ -From ae7174b3dbaefac0723a51c1c9f5f7cc004ca7cc Mon Sep 17 00:00:00 2001 -From: Jan Beich -Date: Sun, 31 Oct 2021 07:32:18 +0000 -Subject: [PATCH] VA/X11: VAAPI driver mapping for crocus DRI driver - -crocus supports Gen4 to Gen7.5, so only i965 can be used. ---- - va/x11/va_x11.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/va/x11/va_x11.c b/va/x11/va_x11.c -index 4d06acd2..9687afaf 100644 ---- a/va/x11/va_x11.c -+++ b/va/x11/va_x11.c -@@ -55,6 +55,7 @@ static const struct driver_name_map g_dri2_driver_name_map[] = { - { "i965", 4, "i965" }, // Intel i965 VAAPI driver with i965 DRI driver - { "iris", 4, "iHD" }, // Intel iHD VAAPI driver with iris DRI driver - { "iris", 4, "i965" }, // Intel i965 VAAPI driver with iris DRI driver -+ { "crocus", 6, "i965" }, // Intel i965 VAAPI driver with crocus DRI driver - { NULL, 0, NULL } - }; -