diff options
author | Lim Siew Hoon <siew.hoon.lim@intel.com> | 2023-08-09 17:07:41 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2023-08-10 09:59:31 +0800 |
commit | c29299d261b0b3a63cb9d8dd7896e413e3b79a6c (patch) | |
tree | df7bbd21ab94e375608012ccdf837d44cbec7076 /recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch | |
parent | 0a8af9c93c24175b6960cd360d151ea014719ed9 (diff) | |
download | meta-intel-c29299d261b0b3a63cb9d8dd7896e413e3b79a6c.tar.gz |
onevpl: upgrade 2023.1.3 -> 2023.3.0
Drops patches already merged:
- 0001-Fix-valgrind-leak-reported-on-wayland.patch
- 0002-Fix-sample_multi_transcode-segfault-on-wayland.patch
- 0003-Fix-X11-rendering-corruption-issue.patch
- 0004-Adjust-MPEG-1920x1088-alignment.patch
- 0005-Fix-sample_multi_transcode-intermittent-segfault.patch
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch')
-rw-r--r-- | recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch b/recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch deleted file mode 100644 index 10436c2b..00000000 --- a/recipes-multimedia/onevpl/files/0003-Fix-X11-rendering-corruption-issue.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From 9e13ea07fda1516f3c680929bea880aa4d303721 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
3 | Date: Thu, 23 Mar 2023 09:46:04 +0800 | ||
4 | Subject: [PATCH 3/5] Fix X11 rendering corruption issue. | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | Expect it to be removed once move to v2023.3.0 and above. | ||
8 | https://github.com/oneapi-src/oneVPL/commit/f129e3ba2ca276f08003ae314d674fba4b5290cd | ||
9 | |||
10 | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
11 | --- | ||
12 | tools/legacy/sample_common/src/vaapi_device.cpp | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/tools/legacy/sample_common/src/vaapi_device.cpp b/tools/legacy/sample_common/src/vaapi_device.cpp | ||
16 | index 98c5883..b90443a 100644 | ||
17 | --- a/tools/legacy/sample_common/src/vaapi_device.cpp | ||
18 | +++ b/tools/legacy/sample_common/src/vaapi_device.cpp | ||
19 | @@ -271,7 +271,7 @@ mfxStatus CVAAPIDeviceX11::RenderFrame(mfxFrameSurface1* pSurface, | ||
20 | width = pSurface->Info.CropX + pSurface->Info.CropW; | ||
21 | height = pSurface->Info.CropY + pSurface->Info.CropH; | ||
22 | |||
23 | - stride = width * bpp / 8; | ||
24 | + stride = memId->m_image.pitches[0]; | ||
25 | size = PAGE_ALIGN(stride * height); | ||
26 | |||
27 | bo = drmintellib.drm_intel_bo_gem_create_from_prime(m_bufmgr, | ||
28 | -- | ||
29 | 2.40.1 | ||
30 | |||