mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00

Removed patches already merged: - 0001-ARGB-force-to-tile4.patch - 0001-Fix-FC-Corruption-When-Blending-without-Colorfill-in.patch - 0001-Fix-FC-Corruption-When-Blending-without-Colorfill.patch - 0001-Force-to-render-path-according-to-app-setting.patch - 0002-Add-DRM-format-mappings-for-JPEG-decoder-output.patch Rebased patches: - 0001-Disable-VP9-padding-on-MTL.patch - 0004-Set-sRGB-color-space-for-non-video-wall-and-no-backg.patch Added code fixed and new DG2 device id support: - 0002-Add-VASurfaceAttribMemoryType-for-ACM.patch - 0003-Force-ARGB-surface-to-tile4-for-ACM.patch - 0005-XRGB-force-to-do-swizzle-for-AVC-HEVC.patch - 0006-Add-DG2-DIDs.patch Release notes: https://github.com/intel/media-driver/releases/tag/intel-media-23.3.5 Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From d9ea15202df23be0ead2157392ca347c42d28ce0 Mon Sep 17 00:00:00 2001
|
|
From: LeyuYao <leyu.yao@intel.com>
|
|
Date: Thu, 7 Sep 2023 16:50:46 +0800
|
|
Subject: [PATCH 1/7] Disable VP9 padding on MTL
|
|
|
|
This is impact performance on large solution with not 8-aligned height
|
|
|
|
Upstream-Status: Backport [https://github.com/intel/media-driver/commit/f34b7d0cd]
|
|
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com>
|
|
---
|
|
media_softlet/linux/Xe_M_plus/ddi/media_sku_wa_mtl.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/media_softlet/linux/Xe_M_plus/ddi/media_sku_wa_mtl.cpp b/media_softlet/linux/Xe_M_plus/ddi/media_sku_wa_mtl.cpp
|
|
index 91b2ed5ed..0f4d47931 100644
|
|
--- a/media_softlet/linux/Xe_M_plus/ddi/media_sku_wa_mtl.cpp
|
|
+++ b/media_softlet/linux/Xe_M_plus/ddi/media_sku_wa_mtl.cpp
|
|
@@ -284,7 +284,7 @@ static bool InitMtlMediaWaExt(struct GfxDeviceInfo *devInfo,
|
|
|
|
MEDIA_WR_WA(waTable, WaDisableSetObjectCapture, 1);
|
|
|
|
- MEDIA_WR_WA(waTable, Wa_Vp9UnalignedHeight, 1);
|
|
+ MEDIA_WR_WA(waTable, Wa_Vp9UnalignedHeight, 0);
|
|
|
|
MEDIA_WR_WA(waTable, Wa_15013355402, 1);
|
|
|
|
--
|
|
2.40.1
|
|
|