diff options
Diffstat (limited to 'recipes-multimedia')
30 files changed, 387 insertions, 2327 deletions
diff --git a/recipes-multimedia/itt/itt_3.22.5.bb b/recipes-multimedia/itt/itt_3.26.1.bb index e598dce3..0043b5de 100644 --- a/recipes-multimedia/itt/itt_3.22.5.bb +++ b/recipes-multimedia/itt/itt_3.26.1.bb | |||
@@ -3,13 +3,13 @@ DESCRIPTION = "The Instrumentation and Tracing Technology (ITT) API enables \ | |||
3 | application to generate and control the collection of trace data during its \ | 3 | application to generate and control the collection of trace data during its \ |
4 | execution across different Intel tools." | 4 | execution across different Intel tools." |
5 | 5 | ||
6 | LICENSE = "BSD-3-Clause & GPLv2" | 6 | LICENSE = "BSD-3-Clause & GPL-2.0-only" |
7 | LIC_FILES_CHKSUM = "file://LICENSES/BSD-3-Clause.txt;md5=c551872bcf41ce707df54c722edeca7b \ | 7 | LIC_FILES_CHKSUM = "file://LICENSES/BSD-3-Clause.txt;md5=c551872bcf41ce707df54c722edeca7b \ |
8 | file://LICENSES/GPL-2.0-only.txt;md5=e2d76e7801260c21b90eea3605508ad6 \ | 8 | file://LICENSES/GPL-2.0-only.txt;md5=e2d76e7801260c21b90eea3605508ad6 \ |
9 | " | 9 | " |
10 | 10 | ||
11 | SRC_URI = "git://github.com/intel/ittapi.git;protocol=https;branch=master" | 11 | SRC_URI = "git://github.com/intel/ittapi.git;protocol=https;branch=master" |
12 | SRCREV = "ca5e389079a08764b72c95f4ecfe6ee64f9c8848" | 12 | SRCREV = "e535d565c88e4407f044719e2e9ec70c0b023d23" |
13 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
14 | PE = "1" | 14 | PE = "1" |
15 | 15 | ||
@@ -28,12 +28,6 @@ do_install() { | |||
28 | cp -r ${S}/include/* ${D}${includedir}/ittnotify | 28 | cp -r ${S}/include/* ${D}${includedir}/ittnotify |
29 | cp -r ${S}/src/ittnotify/*.h ${D}${includedir}/ittnotify | 29 | cp -r ${S}/src/ittnotify/*.h ${D}${includedir}/ittnotify |
30 | rm -r ${D}${includedir}/ittnotify/fortran/win32 | 30 | rm -r ${D}${includedir}/ittnotify/fortran/win32 |
31 | if [ "${TARGET_ARCH}" = "x86_64" ]; then | ||
32 | rm -r ${D}${includedir}/ittnotify/fortran/posix/x86 | ||
33 | else | ||
34 | rm -r ${D}${includedir}/ittnotify/fortran/posix/x86_64 | ||
35 | fi | ||
36 | |||
37 | } | 31 | } |
38 | 32 | ||
39 | RDEPENDS:${PN}-dev:remove = "${PN} (= ${EXTENDPKGV})" | 33 | RDEPENDS:${PN}-dev:remove = "${PN} (= ${EXTENDPKGV})" |
diff --git a/recipes-multimedia/libva/files/0001-MOS-user-setting-reentrant.patch b/recipes-multimedia/libva/files/0001-MOS-user-setting-reentrant.patch deleted file mode 100644 index 9b9cfe35..00000000 --- a/recipes-multimedia/libva/files/0001-MOS-user-setting-reentrant.patch +++ /dev/null | |||
@@ -1,476 +0,0 @@ | |||
1 | From b2c07abaf546f84529b39cb4ae443ed2a5bc35e9 Mon Sep 17 00:00:00 2001 | ||
2 | From: jinchung <you@example.com> | ||
3 | Date: Wed, 3 Nov 2021 14:02:51 +0000 | ||
4 | Subject: [PATCH] [MOS] user setting reentrant | ||
5 | |||
6 | Fix for registry key reentrant on Linux during multiple processes | ||
7 | |||
8 | Upstream-Status: Submitted [internal innersource] | ||
9 | innersource PR #45124 | ||
10 | |||
11 | Signed-off-by: Teng, Jin Chung <jin.chung.teng@intel.com> | ||
12 | Signed-off-by: Wang, Pingli <pingli.wang@intel.com> | ||
13 | --- | ||
14 | .../common/os/mos_utilities_specific.cpp | 2 +- | ||
15 | .../linux/common/os/mos_utilities_specific.h | 2 +- | ||
16 | .../agnostic/common/os/mos_utilities_next.cpp | 15 ++- | ||
17 | .../agnostic/common/os/mos_utilities_next.h | 2 +- | ||
18 | .../common/os/mos_utilities_specific_next.cpp | 107 +++++++----------- | ||
19 | .../common/os/mos_utilities_specific_next.h | 71 ++++++------ | ||
20 | 6 files changed, 89 insertions(+), 110 deletions(-) | ||
21 | |||
22 | diff --git a/media_driver/linux/common/os/mos_utilities_specific.cpp b/media_driver/linux/common/os/mos_utilities_specific.cpp | ||
23 | index ae414360..62eb4593 100644 | ||
24 | --- a/media_driver/linux/common/os/mos_utilities_specific.cpp | ||
25 | +++ b/media_driver/linux/common/os/mos_utilities_specific.cpp | ||
26 | @@ -589,7 +589,7 @@ static int32_t _UserFeature_FindValue(MOS_UF_KEY UFKey, char * const pcValueName | ||
27 | |||
28 | iResult = -1; | ||
29 | |||
30 | - for ( i = 0; i < (int32_t)UFKey.ulValueNum; i++ ) | ||
31 | + for ( i = 0; i < UFKey.ulValueNum; i++ ) | ||
32 | { | ||
33 | iResult = strcmp(UFKey.pValueArray[i].pcValueName, pcValueName); | ||
34 | if ( iResult == 0 ) | ||
35 | diff --git a/media_driver/linux/common/os/mos_utilities_specific.h b/media_driver/linux/common/os/mos_utilities_specific.h | ||
36 | index 81d84537..3d1cda35 100644 | ||
37 | --- a/media_driver/linux/common/os/mos_utilities_specific.h | ||
38 | +++ b/media_driver/linux/common/os/mos_utilities_specific.h | ||
39 | @@ -116,7 +116,7 @@ typedef struct _MOS_UF_VALUE { | ||
40 | typedef struct _MOS_UF_KEY { | ||
41 | void *UFKey; | ||
42 | char pcKeyName[MAX_USERFEATURE_LINE_LENGTH]; | ||
43 | - uint32_t ulValueNum; | ||
44 | + int32_t ulValueNum; | ||
45 | MOS_UF_VALUE *pValueArray; | ||
46 | } MOS_UF_KEY; | ||
47 | |||
48 | diff --git a/media_softlet/agnostic/common/os/mos_utilities_next.cpp b/media_softlet/agnostic/common/os/mos_utilities_next.cpp | ||
49 | index 8427ec17..74ba75b9 100644 | ||
50 | --- a/media_softlet/agnostic/common/os/mos_utilities_next.cpp | ||
51 | +++ b/media_softlet/agnostic/common/os/mos_utilities_next.cpp | ||
52 | @@ -1930,9 +1930,18 @@ MOS_STATUS MosUtilities::MosUserFeatureReadValueFromMapID( | ||
53 | &ufKey, | ||
54 | ufInfo)) != MOS_STATUS_SUCCESS) | ||
55 | { | ||
56 | - MOS_OS_NORMALMESSAGE("Failed to open user feature for reading eStatus:%d.", eStatus); | ||
57 | - eStatus = MOS_STATUS_USER_FEATURE_KEY_OPEN_FAILED; | ||
58 | - goto finish; | ||
59 | + MOS_OS_NORMALMESSAGE("Failed to open user feature for concurrency."); | ||
60 | + if ((eStatus = MosUserFeatureOpen( | ||
61 | + pUserFeature->Type, | ||
62 | + pUserFeature->pcPath, | ||
63 | + KEY_READ, | ||
64 | + &ufKey, | ||
65 | + ufInfo)) != MOS_STATUS_SUCCESS) | ||
66 | + { | ||
67 | + MOS_OS_NORMALMESSAGE("Failed to open user feature for reading eStatus:%d.", eStatus); | ||
68 | + eStatus = MOS_STATUS_USER_FEATURE_KEY_OPEN_FAILED; | ||
69 | + goto finish; | ||
70 | + } | ||
71 | } | ||
72 | |||
73 | // Initialize Read Value | ||
74 | diff --git a/media_softlet/agnostic/common/os/mos_utilities_next.h b/media_softlet/agnostic/common/os/mos_utilities_next.h | ||
75 | index f492a2c7..65aa3729 100644 | ||
76 | --- a/media_softlet/agnostic/common/os/mos_utilities_next.h | ||
77 | +++ b/media_softlet/agnostic/common/os/mos_utilities_next.h | ||
78 | @@ -653,7 +653,7 @@ public: | ||
79 | //! | ||
80 | //! \brief Unlink the user feature key Desc Fields table items to key value map | ||
81 | //! \details Unlink the user feature key Desc Fields table items to key value map | ||
82 | - //! according to ID sequence and do some post processing by calling MOS_DestroyUserFeatureData | ||
83 | + //! according to ID sequence and do some post processing by calling MOSDestroyUserFeatureData | ||
84 | //! \param [in] pUserFeatureKey | ||
85 | //! Pointer to the User Feature Value needed to be destroyed | ||
86 | //! \return MOS_STATUS | ||
87 | diff --git a/media_softlet/linux/common/os/mos_utilities_specific_next.cpp b/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
88 | index 81ee4bdf..584ba086 100644 | ||
89 | --- a/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
90 | +++ b/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
91 | @@ -47,7 +47,8 @@ | ||
92 | #include <unistd.h> // fork | ||
93 | #include <algorithm> | ||
94 | |||
95 | -const char *MosUtilitiesSpecificNext::m_szUserFeatureFile = USER_FEATURE_FILE; | ||
96 | +const char *MosUtilitiesSpecificNext::m_szUserFeatureFile = USER_FEATURE_FILE; | ||
97 | +MOS_PUF_KEYLIST MosUtilitiesSpecificNext::m_ufKeyList = nullptr; | ||
98 | |||
99 | double MosUtilities::MosGetTime() | ||
100 | { | ||
101 | @@ -540,7 +541,7 @@ void MosUtilities::MosSleep(uint32_t mSec) | ||
102 | |||
103 | iResult = -1; | ||
104 | |||
105 | - for ( i = 0; i < (int32_t)UFKey.ulValueNum; i++ ) | ||
106 | + for ( i = 0; i < UFKey.ulValueNum; i++ ) | ||
107 | { | ||
108 | iResult = strcmp(UFKey.pValueArray[i].pcValueName, pcValueName); | ||
109 | if ( iResult == 0 ) | ||
110 | @@ -566,7 +567,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureAdd(MOS_PUF_KEYLIST *pKeyList, M | ||
111 | return MOS_STATUS_INVALID_PARAMETER; | ||
112 | } | ||
113 | |||
114 | - pNewNode = (MOS_UF_KEYNODE*)MOS_AllocMemory(sizeof(MOS_UF_KEYNODE)); | ||
115 | + pNewNode = (MOS_UF_KEYNODE*)MOS_AllocAndZeroMemory(sizeof(MOS_UF_KEYNODE)); | ||
116 | if (pNewNode == nullptr) | ||
117 | { | ||
118 | return MOS_STATUS_NO_SPACE; | ||
119 | @@ -604,41 +605,34 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSet(MOS_PUF_KEYLIST *pKeyList, M | ||
120 | } | ||
121 | |||
122 | // Prepare the ValueBuff of the NewKey | ||
123 | - if ((ulValueBuf = MOS_AllocMemory(NewKey.pValueArray[0].ulValueLen)) == nullptr) | ||
124 | + if ((ulValueBuf = MOS_AllocAndZeroMemory(NewKey.pValueArray[0].ulValueLen)) == nullptr) | ||
125 | { | ||
126 | return MOS_STATUS_NO_SPACE; | ||
127 | } | ||
128 | + MOS_AtomicIncrement(&MosUtilities::m_mosMemAllocFakeCounter); //ulValueBuf does not count it, because it is freed after the MEMNJA final report. | ||
129 | + MOS_OS_NORMALMESSAGE("ulValueBuf %p for key %s", ulValueBuf, NewKey.pValueArray[0].pcValueName); | ||
130 | |||
131 | if ( (iPos = UserFeatureFindValue(*Key, NewKey.pValueArray[0].pcValueName)) == NOT_FOUND) | ||
132 | { | ||
133 | //not found, add a new value to key struct. | ||
134 | //reallocate memory for appending this value. | ||
135 | - pValueArray = (MOS_UF_VALUE*)MOS_AllocMemory(sizeof(MOS_UF_VALUE)*(Key->ulValueNum+1)); | ||
136 | - if (pValueArray == nullptr) | ||
137 | + iPos = MOS_AtomicIncrement(&Key->ulValueNum); | ||
138 | + if (iPos >= UF_CAPABILITY) | ||
139 | { | ||
140 | - MOS_FreeMemory(ulValueBuf); | ||
141 | - return MOS_STATUS_NO_SPACE; | ||
142 | + MOS_OS_ASSERTMESSAGE("user setting value icount %d must less than UF_CAPABILITY(64)", iPos); | ||
143 | + return MOS_STATUS_USER_FEATURE_KEY_READ_FAILED; | ||
144 | } | ||
145 | |||
146 | - MosUtilities::MosSecureMemcpy(pValueArray, | ||
147 | - sizeof(MOS_UF_VALUE)*(Key->ulValueNum), | ||
148 | - Key->pValueArray, | ||
149 | - sizeof(MOS_UF_VALUE)*(Key->ulValueNum)); | ||
150 | - | ||
151 | - MOS_FreeMemory(Key->pValueArray); | ||
152 | - | ||
153 | - Key->pValueArray = pValueArray; | ||
154 | - | ||
155 | - iPos = Key->ulValueNum; | ||
156 | - MosUtilities::MosSecureStrcpy(Key->pValueArray[Key->ulValueNum].pcValueName, | ||
157 | + MosUtilities::MosSecureStrcpy(Key->pValueArray[iPos].pcValueName, | ||
158 | MAX_USERFEATURE_LINE_LENGTH, | ||
159 | NewKey.pValueArray[0].pcValueName); | ||
160 | - Key->ulValueNum ++; | ||
161 | } | ||
162 | else | ||
163 | { | ||
164 | //if found, the previous value buffer needs to be freed before reallocating | ||
165 | MOS_FreeMemory(Key->pValueArray[iPos].ulValueBuf); | ||
166 | + MOS_AtomicDecrement(&MosUtilities::m_mosMemAllocFakeCounter); | ||
167 | + MOS_OS_NORMALMESSAGE("ulValueBuf %p for key %s", ulValueBuf, NewKey.pValueArray[0].pcValueName); | ||
168 | } | ||
169 | |||
170 | Key->pValueArray[iPos].ulValueLen = NewKey.pValueArray[0].ulValueLen; | ||
171 | @@ -733,7 +727,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpFile(const char * const szF | ||
172 | iCurId = 0; | ||
173 | eStatus = MOS_STATUS_SUCCESS; | ||
174 | |||
175 | - CurKey = (MOS_UF_KEY*)MOS_AllocMemory(sizeof(MOS_UF_KEY)); | ||
176 | + CurKey = (MOS_UF_KEY*)MOS_AllocAndZeroMemory(sizeof(MOS_UF_KEY)); | ||
177 | if (CurKey == nullptr) | ||
178 | { | ||
179 | return MOS_STATUS_NO_SPACE; | ||
180 | @@ -771,7 +765,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpFile(const char * const szF | ||
181 | // if the CurKey didn't be added in pKeyList, free it. | ||
182 | MOS_FreeMemory(CurKey); | ||
183 | } | ||
184 | - CurKey = (MOS_UF_KEY*)MOS_AllocMemory(sizeof(MOS_UF_KEY)); | ||
185 | + CurKey = (MOS_UF_KEY*)MOS_AllocAndZeroMemory(sizeof(MOS_UF_KEY)); | ||
186 | if (CurKey == nullptr) | ||
187 | { | ||
188 | eStatus = MOS_STATUS_NO_SPACE; | ||
189 | @@ -796,7 +790,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpFile(const char * const szF | ||
190 | CurKey->ulValueNum = 0; | ||
191 | |||
192 | // allocate capability length for valuearray. | ||
193 | - CurValue = (MOS_UF_VALUE*)MOS_AllocMemory(sizeof(MOS_UF_VALUE)*UF_CAPABILITY); | ||
194 | + CurValue = (MOS_UF_VALUE*)MOS_AllocAndZeroMemory(sizeof(MOS_UF_VALUE)*UF_CAPABILITY); | ||
195 | if (CurValue == nullptr) | ||
196 | { | ||
197 | eStatus = MOS_STATUS_NO_SPACE; | ||
198 | @@ -826,6 +820,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpFile(const char * const szF | ||
199 | if (iCount < 0 || iCount >= UF_CAPABILITY) | ||
200 | { | ||
201 | eStatus = MOS_STATUS_USER_FEATURE_KEY_READ_FAILED; | ||
202 | + MOS_OS_ASSERTMESSAGE("user setting value icount %d, and it must meet 0 < icount < UF_CAPABILITY(64)", iCount); | ||
203 | break; | ||
204 | } | ||
205 | |||
206 | @@ -987,7 +982,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpDataToFile(const char *szFil | ||
207 | fprintf(File, "%s\n", UF_KEY_ID); | ||
208 | fprintf(File, "\t0x%.8x\n", (uint32_t)(uintptr_t)pKeyTmp->pElem->UFKey); | ||
209 | fprintf(File, "\t%s\n", pKeyTmp->pElem->pcKeyName); | ||
210 | - for ( j = 0; j < (int32_t)pKeyTmp->pElem->ulValueNum; j ++ ) | ||
211 | + for ( j = 0; j < pKeyTmp->pElem->ulValueNum; j ++ ) | ||
212 | { | ||
213 | fprintf(File, "\t\t%s\n", UF_VALUE_ID); | ||
214 | if ( strlen(pKeyTmp->pElem->pValueArray[j].pcValueName) > 0 ) | ||
215 | @@ -1015,10 +1010,9 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureDumpDataToFile(const char *szFil | ||
216 | break; | ||
217 | } //switch (pKeyTmp->pElem->pValueArray[j].ulValueType) | ||
218 | } | ||
219 | - } // for ( j = 0; j < (int32_t)pKeyTmp->pElem->ulValueNum; j ++ ) | ||
220 | + } // for ( j = 0; j < pKeyTmp->pElem->ulValueNum; j ++ ) | ||
221 | } //for (pKeyTmp = pKeyList; pKeyTmp; pKeyTmp = pKeyTmp->pNext) | ||
222 | fclose(File); | ||
223 | - MosUtilities::MosUserFeatureNotifyChangeKeyValue(nullptr, false, nullptr, true); | ||
224 | |||
225 | return MOS_STATUS_SUCCESS; | ||
226 | } | ||
227 | @@ -1055,12 +1049,10 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSetValue( | ||
228 | MOS_UF_KEY NewKey; | ||
229 | MOS_UF_VALUE NewValue; | ||
230 | MOS_STATUS eStatus; | ||
231 | - MOS_PUF_KEYLIST pKeyList; | ||
232 | |||
233 | eStatus = MOS_STATUS_UNKNOWN; | ||
234 | - pKeyList = nullptr; | ||
235 | |||
236 | - if ( (strKey== nullptr) || (pcValueName == nullptr) ) | ||
237 | + if ((strKey == nullptr) || (pcValueName == nullptr) || (m_ufKeyList == nullptr)) | ||
238 | { | ||
239 | return MOS_STATUS_INVALID_PARAMETER; | ||
240 | } | ||
241 | @@ -1083,18 +1075,11 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSetValue( | ||
242 | NewKey.pValueArray = &NewValue; | ||
243 | NewKey.ulValueNum = 1; | ||
244 | |||
245 | - if ((eStatus = UserFeatureDumpFile(m_szUserFeatureFile, &pKeyList)) != MOS_STATUS_SUCCESS) | ||
246 | + if ( ( eStatus = UserFeatureSet(&MosUtilitiesSpecificNext::m_ufKeyList, NewKey)) == MOS_STATUS_SUCCESS ) | ||
247 | { | ||
248 | - UserFeatureFreeKeyList(pKeyList); | ||
249 | - return eStatus; | ||
250 | + MosUtilities::MosUserFeatureNotifyChangeKeyValue(nullptr, false, nullptr, true); | ||
251 | } | ||
252 | |||
253 | - if ( ( eStatus = UserFeatureSet(&pKeyList, NewKey)) == MOS_STATUS_SUCCESS ) | ||
254 | - { | ||
255 | - eStatus = UserFeatureDumpDataToFile(m_szUserFeatureFile, pKeyList); | ||
256 | - } | ||
257 | - | ||
258 | - UserFeatureFreeKeyList(pKeyList); | ||
259 | return eStatus; | ||
260 | } | ||
261 | |||
262 | @@ -1114,9 +1099,9 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureQueryValue( | ||
263 | char strTempValueName[MAX_USERFEATURE_LINE_LENGTH]; | ||
264 | |||
265 | eStatus = MOS_STATUS_UNKNOWN; | ||
266 | - pKeyList = nullptr; | ||
267 | + pKeyList = MosUtilitiesSpecificNext::m_ufKeyList; | ||
268 | |||
269 | - if ( (strKey == nullptr) || (pcValueName == nullptr)) | ||
270 | + if ( (strKey == nullptr) || (pcValueName == nullptr) || (pKeyList == nullptr)) | ||
271 | { | ||
272 | return MOS_STATUS_INVALID_PARAMETER; | ||
273 | } | ||
274 | @@ -1129,21 +1114,17 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureQueryValue( | ||
275 | NewKey.pValueArray = &NewValue; | ||
276 | NewKey.ulValueNum = 1; | ||
277 | |||
278 | - if ((eStatus = UserFeatureDumpFile(m_szUserFeatureFile, &pKeyList)) == MOS_STATUS_SUCCESS) | ||
279 | + if ( (eStatus = UserFeatureQuery(pKeyList, &NewKey)) == MOS_STATUS_SUCCESS ) | ||
280 | { | ||
281 | - if ( (eStatus = UserFeatureQuery(pKeyList, &NewKey)) == MOS_STATUS_SUCCESS ) | ||
282 | + if(uiValueType != nullptr) | ||
283 | { | ||
284 | - if(uiValueType != nullptr) | ||
285 | - { | ||
286 | - *uiValueType = NewKey.pValueArray[0].ulValueType; | ||
287 | - } | ||
288 | - if (nDataSize != nullptr) | ||
289 | - { | ||
290 | - *nDataSize = NewKey.pValueArray[0].ulValueLen; | ||
291 | - } | ||
292 | + *uiValueType = NewKey.pValueArray[0].ulValueType; | ||
293 | + } | ||
294 | + if (nDataSize != nullptr) | ||
295 | + { | ||
296 | + *nDataSize = NewKey.pValueArray[0].ulValueLen; | ||
297 | } | ||
298 | } | ||
299 | - UserFeatureFreeKeyList(pKeyList); | ||
300 | |||
301 | return eStatus; | ||
302 | } | ||
303 | @@ -1155,16 +1136,9 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureGetKeyIdbyName(const char *pcKe | ||
304 | MOS_STATUS eStatus; | ||
305 | MOS_PUF_KEYLIST pTempNode; | ||
306 | |||
307 | - pKeyList = nullptr; | ||
308 | + pKeyList = MosUtilitiesSpecificNext::m_ufKeyList; | ||
309 | iResult = -1; | ||
310 | |||
311 | - if ((eStatus = UserFeatureDumpFile(m_szUserFeatureFile, &pKeyList)) != | ||
312 | - MOS_STATUS_SUCCESS ) | ||
313 | - { | ||
314 | - UserFeatureFreeKeyList(pKeyList); | ||
315 | - return eStatus; | ||
316 | - } | ||
317 | - | ||
318 | eStatus = MOS_STATUS_INVALID_PARAMETER; | ||
319 | |||
320 | for(pTempNode=pKeyList; pTempNode; pTempNode=pTempNode->pNext) | ||
321 | @@ -1177,7 +1151,6 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureGetKeyIdbyName(const char *pcKe | ||
322 | break; | ||
323 | } | ||
324 | } | ||
325 | - UserFeatureFreeKeyList(pKeyList); | ||
326 | |||
327 | return eStatus; | ||
328 | } | ||
329 | @@ -1188,7 +1161,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureGetKeyNamebyId(void *UFKey, cha | ||
330 | MOS_PUF_KEYLIST pTempNode; | ||
331 | MOS_STATUS eStatus; | ||
332 | |||
333 | - pKeyList = nullptr; | ||
334 | + pKeyList = MosUtilitiesSpecificNext::m_ufKeyList; | ||
335 | |||
336 | switch((uintptr_t)UFKey) | ||
337 | { | ||
338 | @@ -1201,13 +1174,6 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureGetKeyNamebyId(void *UFKey, cha | ||
339 | eStatus = MOS_STATUS_SUCCESS; | ||
340 | break; | ||
341 | default: | ||
342 | - if ((eStatus = UserFeatureDumpFile(m_szUserFeatureFile, &pKeyList)) != | ||
343 | - MOS_STATUS_SUCCESS ) | ||
344 | - { | ||
345 | - UserFeatureFreeKeyList(pKeyList); | ||
346 | - return eStatus; | ||
347 | - } | ||
348 | - | ||
349 | eStatus = MOS_STATUS_UNKNOWN; | ||
350 | |||
351 | for(pTempNode=pKeyList;pTempNode;pTempNode=pTempNode->pNext) | ||
352 | @@ -1219,7 +1185,6 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureGetKeyNamebyId(void *UFKey, cha | ||
353 | break; | ||
354 | } | ||
355 | } | ||
356 | - UserFeatureFreeKeyList(pKeyList); | ||
357 | break; | ||
358 | } | ||
359 | |||
360 | @@ -1364,6 +1329,7 @@ MOS_STATUS MosUtilities::MosOsUtilitiesInit(MOS_CONTEXT_HANDLE mosCtx) | ||
361 | //Init MOS User Feature Key from mos desc table | ||
362 | eStatus = MosDeclareUserFeatureKeysForAllDescFields(); | ||
363 | |||
364 | + MosUtilitiesSpecificNext::UserFeatureDumpFile(MosUtilitiesSpecificNext::m_szUserFeatureFile, &MosUtilitiesSpecificNext::m_ufKeyList); | ||
365 | #if _MEDIA_RESERVED | ||
366 | m_codecUserFeatureExt = new CodechalUserSettingsMgr(); | ||
367 | m_vpUserFeatureExt = new VphalUserSettingsMgr(); | ||
368 | @@ -1425,6 +1391,9 @@ MOS_STATUS MosUtilities::MosOsUtilitiesClose(MOS_CONTEXT_HANDLE mosCtx) | ||
369 | // so if there still is another active lib instance, logs would still be printed. | ||
370 | MosUtilDebug::MosMessageClose(); | ||
371 | #endif | ||
372 | + MosUtilitiesSpecificNext::UserFeatureDumpDataToFile(MosUtilitiesSpecificNext::m_szUserFeatureFile, MosUtilitiesSpecificNext::m_ufKeyList); | ||
373 | + MosUtilitiesSpecificNext::UserFeatureFreeKeyList(MosUtilitiesSpecificNext::m_ufKeyList); | ||
374 | + MosUtilitiesSpecificNext::m_ufKeyList = nullptr; | ||
375 | } | ||
376 | m_mutexLock.Unlock(); | ||
377 | return eStatus; | ||
378 | diff --git a/media_softlet/linux/common/os/mos_utilities_specific_next.h b/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
379 | index 792123a6..878ce4e6 100644 | ||
380 | --- a/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
381 | +++ b/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
382 | @@ -110,6 +110,41 @@ static MOS_STATUS MosUserFeatureOpenKeyFile( | ||
383 | uint32_t samDesired, | ||
384 | void **phkResult); | ||
385 | |||
386 | +/*---------------------------------------------------------------------------- | ||
387 | + | Name : UserFeatureDumpFile | ||
388 | + | Purpose : This function read the whole User Feature File and dump User Feature File | ||
389 | + | data to key linked list. | ||
390 | + | Arguments : szFileName [in] User Feature File name. | ||
391 | + | pKeyList [out] Key Linked list. | ||
392 | + | Returns : MOS_STATUS_SUCCESS Operation success. | ||
393 | + | MOS_STATUS_USER_FEATURE_KEY_READ_FAILED User Feature File can't be open as read. | ||
394 | + | MOS_STATUS_NO_SPACE no space left for allocate | ||
395 | + | MOS_STATUS_UNKNOWN unknown user feature type found in User Feature File | ||
396 | + | MOS_STATUS_INVALID_PARAMETER unknown items found in User Feature File | ||
397 | + | Comments : | ||
398 | + \---------------------------------------------------------------------------*/ | ||
399 | +static MOS_STATUS UserFeatureDumpFile(const char *const szFileName, MOS_PUF_KEYLIST *pKeyList); | ||
400 | + | ||
401 | +/*---------------------------------------------------------------------------- | ||
402 | +| Name : UserFeatureDumpDataToFile | ||
403 | +| Purpose : This function dump key linked list data to File. | ||
404 | +| Arguments : szFileName [in] A handle to the File. | ||
405 | +| pKeyList [in] Reserved, any LPDWORD type value. | ||
406 | +| Returns : MOS_STATUS_SUCCESS Operation success. | ||
407 | +| MOS_STATUS_USER_FEATURE_KEY_WRITE_FAILED File can't be written. | ||
408 | +| Comments : | ||
409 | +\---------------------------------------------------------------------------*/ | ||
410 | + | ||
411 | +static MOS_STATUS UserFeatureDumpDataToFile(const char *szFileName, MOS_PUF_KEYLIST pKeyList); | ||
412 | + | ||
413 | +/*---------------------------------------------------------------------------- | ||
414 | +| Name : UserFeatureFreeKeyList | ||
415 | +| Purpose : Free key list | ||
416 | +| Arguments : pKeyList [in] key list to be free. | ||
417 | +| Returns : None | ||
418 | +| Comments : | ||
419 | +\---------------------------------------------------------------------------*/ | ||
420 | +static void UserFeatureFreeKeyList(MOS_PUF_KEYLIST pKeyList); | ||
421 | |||
422 | private: | ||
423 | |||
424 | @@ -174,41 +209,6 @@ private: | ||
425 | |||
426 | static MOS_STATUS UserFeatureReadNextTokenFromFile(FILE *pFile, const char *szFormat, char *szToken); | ||
427 | |||
428 | - /*---------------------------------------------------------------------------- | ||
429 | - | Name : UserFeatureDumpFile | ||
430 | - | Purpose : This function read the whole User Feature File and dump User Feature File | ||
431 | - | data to key linked list. | ||
432 | - | Arguments : szFileName [in] User Feature File name. | ||
433 | - | pKeyList [out] Key Linked list. | ||
434 | - | Returns : MOS_STATUS_SUCCESS Operation success. | ||
435 | - | MOS_STATUS_USER_FEATURE_KEY_READ_FAILED User Feature File can't be open as read. | ||
436 | - | MOS_STATUS_NO_SPACE no space left for allocate | ||
437 | - | MOS_STATUS_UNKNOWN unknown user feature type found in User Feature File | ||
438 | - | MOS_STATUS_INVALID_PARAMETER unknown items found in User Feature File | ||
439 | - | Comments : | ||
440 | - \---------------------------------------------------------------------------*/ | ||
441 | - static MOS_STATUS UserFeatureDumpFile(const char * const szFileName, MOS_PUF_KEYLIST* pKeyList); | ||
442 | - | ||
443 | - /*---------------------------------------------------------------------------- | ||
444 | - | Name : UserFeatureDumpDataToFile | ||
445 | - | Purpose : This function dump key linked list data to File. | ||
446 | - | Arguments : szFileName [in] A handle to the File. | ||
447 | - | pKeyList [in] Reserved, any LPDWORD type value. | ||
448 | - | Returns : MOS_STATUS_SUCCESS Operation success. | ||
449 | - | MOS_STATUS_USER_FEATURE_KEY_WRITE_FAILED File can't be written. | ||
450 | - | Comments : | ||
451 | - \---------------------------------------------------------------------------*/ | ||
452 | - static MOS_STATUS UserFeatureDumpDataToFile(const char *szFileName, MOS_PUF_KEYLIST pKeyList); | ||
453 | - | ||
454 | - /*---------------------------------------------------------------------------- | ||
455 | - | Name : UserFeatureFreeKeyList | ||
456 | - | Purpose : Free key list | ||
457 | - | Arguments : pKeyList [in] key list to be free. | ||
458 | - | Returns : None | ||
459 | - | Comments : | ||
460 | - \---------------------------------------------------------------------------*/ | ||
461 | - static void UserFeatureFreeKeyList(MOS_PUF_KEYLIST pKeyList); | ||
462 | - | ||
463 | /*---------------------------------------------------------------------------- | ||
464 | | Name : UserFeatureSetValue | ||
465 | | Purpose : Modify or add a value of the specified user feature key. | ||
466 | @@ -290,6 +290,7 @@ private: | ||
467 | |||
468 | public: | ||
469 | static const char* m_szUserFeatureFile; | ||
470 | + static MOS_PUF_KEYLIST m_ufKeyList; | ||
471 | static int32_t m_mosTraceFd; | ||
472 | static const char* const m_mosTracePath; | ||
473 | static std::map<std::string, std::map<std::string, std::string>> m_regBuffer; | ||
474 | -- | ||
475 | 2.31.1 | ||
476 | |||
diff --git a/recipes-multimedia/libva/files/0001-Media-Common-Fix-the-user-setting-memory-free.patch b/recipes-multimedia/libva/files/0001-Media-Common-Fix-the-user-setting-memory-free.patch deleted file mode 100644 index e513e0aa..00000000 --- a/recipes-multimedia/libva/files/0001-Media-Common-Fix-the-user-setting-memory-free.patch +++ /dev/null | |||
@@ -1,86 +0,0 @@ | |||
1 | From 437e63b6c35eb5d12aac18d7f76ce1a702ad16e0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
3 | Date: Thu, 2 Dec 2021 15:50:33 +0000 | ||
4 | Subject: [PATCH] [Media Common] Fix the user setting memory free | ||
5 | |||
6 | From 4b8a411f2b8df112cbb5dbf8562735700cd15cf1 Mon Sep 17 00:00:00 2001 | ||
7 | From: "Wang, Pingli" <pingli.wang@intel.com> | ||
8 | Date: Thu, 2 Dec 2021 17:57:50 +0800 | ||
9 | Subject: [PATCH] [Media Common]Fix the user setting memory free | ||
10 | |||
11 | This commit fix the #1300 | ||
12 | |||
13 | Signed-off-by: Wang, Pingli <pingli.wang@intel.com> | ||
14 | |||
15 | This patch was imported from iHD media-driver git server | ||
16 | (https://github.com/intel/media-driver.git) as of pull request | ||
17 | https://github.com/intel/media-driver/pull/1305. | ||
18 | |||
19 | Upstream-status: Submitted | ||
20 | |||
21 | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
22 | --- | ||
23 | media_softlet/linux/common/os/mos_utilities_specific_next.cpp | 4 ++++ | ||
24 | media_softlet/linux/common/os/mos_utilities_specific_next.h | 4 ++++ | ||
25 | 2 files changed, 8 insertions(+) | ||
26 | |||
27 | diff --git a/media_softlet/linux/common/os/mos_utilities_specific_next.cpp b/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
28 | index 584ba086..c138cb08 100644 | ||
29 | --- a/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
30 | +++ b/media_softlet/linux/common/os/mos_utilities_specific_next.cpp | ||
31 | @@ -70,6 +70,7 @@ double MosUtilities::MosGetTime() | ||
32 | //! | ||
33 | const char *const MosUtilitiesSpecificNext::m_mosTracePath = "/sys/kernel/debug/tracing/trace_marker_raw"; | ||
34 | int32_t MosUtilitiesSpecificNext::m_mosTraceFd = -1; | ||
35 | +MosMutex MosUtilitiesSpecificNext::m_userSettingMutex; | ||
36 | |||
37 | std::map<std::string, std::map<std::string, std::string>> MosUtilitiesSpecificNext::m_regBuffer; | ||
38 | |||
39 | @@ -612,6 +613,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSet(MOS_PUF_KEYLIST *pKeyList, M | ||
40 | MOS_AtomicIncrement(&MosUtilities::m_mosMemAllocFakeCounter); //ulValueBuf does not count it, because it is freed after the MEMNJA final report. | ||
41 | MOS_OS_NORMALMESSAGE("ulValueBuf %p for key %s", ulValueBuf, NewKey.pValueArray[0].pcValueName); | ||
42 | |||
43 | + m_userSettingMutex.Lock(); | ||
44 | if ( (iPos = UserFeatureFindValue(*Key, NewKey.pValueArray[0].pcValueName)) == NOT_FOUND) | ||
45 | { | ||
46 | //not found, add a new value to key struct. | ||
47 | @@ -620,6 +622,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSet(MOS_PUF_KEYLIST *pKeyList, M | ||
48 | if (iPos >= UF_CAPABILITY) | ||
49 | { | ||
50 | MOS_OS_ASSERTMESSAGE("user setting value icount %d must less than UF_CAPABILITY(64)", iPos); | ||
51 | + m_userSettingMutex.Unlock(); | ||
52 | return MOS_STATUS_USER_FEATURE_KEY_READ_FAILED; | ||
53 | } | ||
54 | |||
55 | @@ -646,6 +649,7 @@ MOS_STATUS MosUtilitiesSpecificNext::UserFeatureSet(MOS_PUF_KEYLIST *pKeyList, M | ||
56 | NewKey.pValueArray[0].ulValueBuf, | ||
57 | NewKey.pValueArray[0].ulValueLen); | ||
58 | |||
59 | + m_userSettingMutex.Unlock(); | ||
60 | return MOS_STATUS_SUCCESS; | ||
61 | } | ||
62 | |||
63 | diff --git a/media_softlet/linux/common/os/mos_utilities_specific_next.h b/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
64 | index 878ce4e6..57e505d0 100644 | ||
65 | --- a/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
66 | +++ b/media_softlet/linux/common/os/mos_utilities_specific_next.h | ||
67 | @@ -30,6 +30,8 @@ | ||
68 | #include "mos_defs.h" | ||
69 | #include "mos_utilities_specific.h" | ||
70 | |||
71 | +class MosMutex; | ||
72 | + | ||
73 | class MosUtilitiesSpecificNext | ||
74 | { | ||
75 | public: | ||
76 | @@ -294,5 +296,7 @@ public: | ||
77 | static int32_t m_mosTraceFd; | ||
78 | static const char* const m_mosTracePath; | ||
79 | static std::map<std::string, std::map<std::string, std::string>> m_regBuffer; | ||
80 | +private: | ||
81 | + static MosMutex m_userSettingMutex; | ||
82 | }; | ||
83 | #endif // __MOS_UTILITIES_SPECIFIC_NEXT_H__ | ||
84 | -- | ||
85 | 2.31.1 | ||
86 | |||
diff --git a/recipes-multimedia/libva/files/0003-Force-ARGB-surface-to-tile4-for-ACM.patch b/recipes-multimedia/libva/files/0003-Force-ARGB-surface-to-tile4-for-ACM.patch new file mode 100644 index 00000000..ffb5b747 --- /dev/null +++ b/recipes-multimedia/libva/files/0003-Force-ARGB-surface-to-tile4-for-ACM.patch | |||
@@ -0,0 +1,44 @@ | |||
1 | From 6132115dd2f1db55a6a5371618247dfaa334a035 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
3 | Date: Wed, 11 Oct 2023 15:36:21 +0800 | ||
4 | Subject: [PATCH 3/7] Force ARGB surface to tile4 for ACM | ||
5 | |||
6 | Upstream-Status: Submitted [https://github.com/intel/media-driver/pull/1728] | ||
7 | |||
8 | Signed-off-by: Soon, Thean Siew <thean.siew.soon@intel.com> | ||
9 | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
10 | --- | ||
11 | media_driver/linux/common/ddi/media_libva_util.cpp | 10 ++++++++++ | ||
12 | 1 file changed, 10 insertions(+) | ||
13 | |||
14 | diff --git a/media_driver/linux/common/ddi/media_libva_util.cpp b/media_driver/linux/common/ddi/media_libva_util.cpp | ||
15 | index a4e12edfa..11634f66e 100755 | ||
16 | --- a/media_driver/linux/common/ddi/media_libva_util.cpp | ||
17 | +++ b/media_driver/linux/common/ddi/media_libva_util.cpp | ||
18 | @@ -521,6 +521,7 @@ VAStatus DdiMediaUtil_AllocateSurface( | ||
19 | gmmCustomParams.Flags.Gpu.UnifiedAuxSurface = 0; | ||
20 | } | ||
21 | } | ||
22 | + | ||
23 | break; | ||
24 | case TILING_X: | ||
25 | gmmCustomParams.Flags.Info.TiledX = true; | ||
26 | @@ -702,6 +703,15 @@ VAStatus DdiMediaUtil_AllocateSurface( | ||
27 | } | ||
28 | } | ||
29 | } | ||
30 | + // There's no VAAPI interface for modifier query yet. As a workaround, always allocate | ||
31 | + // RGB surface as tile4. | ||
32 | + if ((format == Media_Format_A8R8G8B8 || | ||
33 | + format == Media_Format_B10G10R10A2 | | ||
34 | + format == Media_Format_A8B8G8R8 || | ||
35 | + format == Media_Format_X8R8G8B8) && !MEDIA_IS_SKU(&mediaDrvCtx->SkuTable, FtrTileY)) | ||
36 | + { | ||
37 | + gmmParams.Flags.Info.Tile4 = true; | ||
38 | + } | ||
39 | break; | ||
40 | case TILING_X: | ||
41 | gmmParams.Flags.Info.TiledX = true; | ||
42 | -- | ||
43 | 2.43.0 | ||
44 | |||
diff --git a/recipes-multimedia/libva/files/0004-Fix-failed-4k-videowalll-test-case-and-color-corrupt.patch b/recipes-multimedia/libva/files/0004-Fix-failed-4k-videowalll-test-case-and-color-corrupt.patch new file mode 100644 index 00000000..49e3ff13 --- /dev/null +++ b/recipes-multimedia/libva/files/0004-Fix-failed-4k-videowalll-test-case-and-color-corrupt.patch | |||
@@ -0,0 +1,85 @@ | |||
1 | From a32b95e58fd3e34847e799b909e08dbe5c9dc692 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
3 | Date: Fri, 2 Aug 2024 13:25:13 +0800 | ||
4 | Subject: [PATCH 4/7] Fix failed 4k videowalll test case and color corruption | ||
5 | of video composition in Gen12 platform | ||
6 | |||
7 | Fix failed 4k video wall test case from 16CH video only show | ||
8 | 1CH output and corruption observed on certain number of video | ||
9 | composition when doing sample_multi_transcode in legacy path. | ||
10 | |||
11 | platform: TGL/ADL/RPL | ||
12 | |||
13 | Upstream-Status: Submitted [https://github.com/intel/media-driver/pull/1839] | ||
14 | |||
15 | Signed-off-by: xupianch <xu.pian.chan@intel.com> | ||
16 | Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> | ||
17 | --- | ||
18 | .../common/vp/hal/vphal_render_composite.cpp | 9 ++++++++- | ||
19 | .../linux/common/vp/ddi/media_libva_vp.c | 18 +++++------------- | ||
20 | 2 files changed, 13 insertions(+), 14 deletions(-) | ||
21 | |||
22 | diff --git a/media_driver/agnostic/common/vp/hal/vphal_render_composite.cpp b/media_driver/agnostic/common/vp/hal/vphal_render_composite.cpp | ||
23 | index 169030209..cc7c241c1 100644 | ||
24 | --- a/media_driver/agnostic/common/vp/hal/vphal_render_composite.cpp | ||
25 | +++ b/media_driver/agnostic/common/vp/hal/vphal_render_composite.cpp | ||
26 | @@ -6784,6 +6784,13 @@ bool CompositeState::BuildFilter( | ||
27 | |||
28 | for (i = 0; (i < (int)pCompParams->uSourceCount) && (iMaxFilterSize > 0); i++) | ||
29 | { | ||
30 | + if (i > 0) | ||
31 | + { | ||
32 | + if (!RECT1_CONTAINS_RECT2(pCompParams->pSource[0]->rcDst, pCompParams->pSource[i]->rcDst)) | ||
33 | + { | ||
34 | + pFilter->forceToTargetColorSpace = true; | ||
35 | + } | ||
36 | + } | ||
37 | pSrc = pCompParams->pSource[i]; | ||
38 | |||
39 | //-------------------------------- | ||
40 | @@ -8154,4 +8161,4 @@ bool CompositeState::IsSamplerIDForY( | ||
41 | return true; | ||
42 | } | ||
43 | return false; | ||
44 | - } | ||
45 | \ No newline at end of file | ||
46 | + } | ||
47 | diff --git a/media_driver/linux/common/vp/ddi/media_libva_vp.c b/media_driver/linux/common/vp/ddi/media_libva_vp.c | ||
48 | index 48a452315..4f0fc2c48 100644 | ||
49 | --- a/media_driver/linux/common/vp/ddi/media_libva_vp.c | ||
50 | +++ b/media_driver/linux/common/vp/ddi/media_libva_vp.c | ||
51 | @@ -1148,7 +1148,7 @@ DdiVp_SetProcPipelineParams( | ||
52 | |||
53 | // Background Colorfill | ||
54 | // According to libva definition, if alpha in output background color is zero, then colorfill is not needed | ||
55 | - if ((pPipelineParam->output_background_color >> 24) != 0 || pVpHalTgtSurf->ColorSpace == CSpace_sRGB) | ||
56 | + if ((pPipelineParam->output_background_color >> 24) != 0) | ||
57 | { | ||
58 | if (pVpHalRenderParams->pColorFillParams == nullptr) | ||
59 | { | ||
60 | @@ -1157,18 +1157,10 @@ DdiVp_SetProcPipelineParams( | ||
61 | |||
62 | DDI_CHK_NULL(pVpHalRenderParams->pColorFillParams, "Null pColorFillParams.", VA_STATUS_ERROR_UNKNOWN); | ||
63 | |||
64 | - if (pVpHalTgtSurf->ColorSpace == CSpace_sRGB && (pPipelineParam->output_background_color >> 24) == 0) | ||
65 | - { | ||
66 | - // set color space for sRGB output | ||
67 | - pVpHalRenderParams->pColorFillParams->CSpace = CSpace_sRGB; | ||
68 | - } | ||
69 | - else | ||
70 | - { | ||
71 | - // set background colorfill option | ||
72 | - pVpHalRenderParams->pColorFillParams->Color = pPipelineParam->output_background_color; | ||
73 | - pVpHalRenderParams->pColorFillParams->bYCbCr = false; | ||
74 | - pVpHalRenderParams->pColorFillParams->CSpace = CSpace_sRGB; | ||
75 | - } | ||
76 | + // set background colorfill option | ||
77 | + pVpHalRenderParams->pColorFillParams->Color = pPipelineParam->output_background_color; | ||
78 | + pVpHalRenderParams->pColorFillParams->bYCbCr = false; | ||
79 | + pVpHalRenderParams->pColorFillParams->CSpace = CSpace_sRGB; | ||
80 | }else | ||
81 | { | ||
82 | MOS_FreeMemAndSetNull(pVpHalRenderParams->pColorFillParams); | ||
83 | -- | ||
84 | 2.43.0 | ||
85 | |||
diff --git a/recipes-multimedia/libva/intel-media-driver_21.3.5.bb b/recipes-multimedia/libva/intel-media-driver_25.1.4.bb index dc6cd8cb..b972e230 100644 --- a/recipes-multimedia/libva/intel-media-driver_21.3.5.bb +++ b/recipes-multimedia/libva/intel-media-driver_25.1.4.bb | |||
@@ -19,11 +19,11 @@ REQUIRED_DISTRO_FEATURES = "opengl" | |||
19 | DEPENDS += "libva gmmlib" | 19 | DEPENDS += "libva gmmlib" |
20 | 20 | ||
21 | SRC_URI = "git://github.com/intel/media-driver.git;protocol=https;nobranch=1 \ | 21 | SRC_URI = "git://github.com/intel/media-driver.git;protocol=https;nobranch=1 \ |
22 | file://0001-MOS-user-setting-reentrant.patch \ | 22 | file://0003-Force-ARGB-surface-to-tile4-for-ACM.patch \ |
23 | file://0001-Media-Common-Fix-the-user-setting-memory-free.patch \ | 23 | file://0004-Fix-failed-4k-videowalll-test-case-and-color-corrupt.patch \ |
24 | " | 24 | " |
25 | 25 | ||
26 | SRCREV = "ec4dc5d653733c21f8bf390794674052b5abdb09" | 26 | SRCREV = "14e2e7bcf1014186dbf1c099089c7c05cd880ae8" |
27 | S = "${WORKDIR}/git" | 27 | S = "${WORKDIR}/git" |
28 | 28 | ||
29 | COMPATIBLE_HOST:x86-x32 = "null" | 29 | COMPATIBLE_HOST:x86-x32 = "null" |
diff --git a/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch b/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch deleted file mode 100644 index f7de9d16..00000000 --- a/recipes-multimedia/libyami/libyami-utils/0001-Fix-build-with-clang.patch +++ /dev/null | |||
@@ -1,96 +0,0 @@ | |||
1 | From f2e6d2ecfea635ab952649156e31ca893d4b1a47 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 12 Aug 2017 08:49:20 -0700 | ||
4 | Subject: [PATCH] Fix build with clang | ||
5 | |||
6 | Fix errors e.g. | ||
7 | error: comparison of constant -1 with expression of type 'char' is always true [-Werror,-Wtautological-constant-out-of-range-compare]error: comparison of constant -1 with expression of type 'char' is always true [-Werror,-Wtautological-constant-out-of-range-compare] | ||
8 | |||
9 | and | ||
10 | |||
11 | psnr.cpp:225:17: error: bool literal returned from 'main' [-Werror,-Wmain] | ||
12 | |||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | Upstream-Status: Pending | ||
15 | |||
16 | --- | ||
17 | tests/decodehelp.cpp | 2 +- | ||
18 | tests/encodehelp.h | 2 +- | ||
19 | tests/vpp.cpp | 2 +- | ||
20 | tests/yamitranscode.cpp | 2 +- | ||
21 | testscripts/psnr.cpp | 4 ++-- | ||
22 | 5 files changed, 6 insertions(+), 6 deletions(-) | ||
23 | |||
24 | diff --git a/tests/decodehelp.cpp b/tests/decodehelp.cpp | ||
25 | index b27b977..62cca63 100644 | ||
26 | --- a/tests/decodehelp.cpp | ||
27 | +++ b/tests/decodehelp.cpp | ||
28 | @@ -81,7 +81,7 @@ bool processCmdLine(int argc, char** argv, DecodeParameter* parameters) | ||
29 | { NULL, no_argument, NULL, 0 } | ||
30 | }; | ||
31 | |||
32 | - char opt; | ||
33 | + int opt; | ||
34 | while ((opt = getopt_long_only(argc, argv, "h:m:n:i:f:o:w:?", long_opts,&option_index)) != -1){ | ||
35 | switch (opt) { | ||
36 | case 'h': | ||
37 | diff --git a/tests/encodehelp.h b/tests/encodehelp.h | ||
38 | index 63580a4..651ec08 100644 | ||
39 | --- a/tests/encodehelp.h | ||
40 | +++ b/tests/encodehelp.h | ||
41 | @@ -109,7 +109,7 @@ static VideoRateControl string_to_rc_mode(char *str) | ||
42 | |||
43 | static bool process_cmdline(int argc, char *argv[]) | ||
44 | { | ||
45 | - char opt; | ||
46 | + int opt; | ||
47 | const struct option long_opts[] = { | ||
48 | { "help", no_argument, NULL, 'h' }, | ||
49 | { "qp", required_argument, NULL, 0 }, | ||
50 | diff --git a/tests/vpp.cpp b/tests/vpp.cpp | ||
51 | index 5a60c0a..52da43b 100644 | ||
52 | --- a/tests/vpp.cpp | ||
53 | +++ b/tests/vpp.cpp | ||
54 | @@ -151,7 +151,7 @@ public: | ||
55 | private: | ||
56 | bool processCmdLine(int argc, char* argv[]) | ||
57 | { | ||
58 | - char opt; | ||
59 | + int opt; | ||
60 | const struct option long_opts[] = { | ||
61 | { "help", no_argument, NULL, 'h' }, | ||
62 | { "sharpening", required_argument, NULL, 's' }, | ||
63 | diff --git a/tests/yamitranscode.cpp b/tests/yamitranscode.cpp | ||
64 | index 6207209..00164ce 100755 | ||
65 | --- a/tests/yamitranscode.cpp | ||
66 | +++ b/tests/yamitranscode.cpp | ||
67 | @@ -100,7 +100,7 @@ static VideoRateControl string_to_rc_mode(char *str) | ||
68 | |||
69 | static bool processCmdLine(int argc, char *argv[], TranscodeParams& para) | ||
70 | { | ||
71 | - char opt; | ||
72 | + int opt; | ||
73 | const struct option long_opts[] = { | ||
74 | { "help", no_argument, NULL, 'h' }, | ||
75 | { "qp", required_argument, NULL, 0 }, | ||
76 | diff --git a/testscripts/psnr.cpp b/testscripts/psnr.cpp | ||
77 | index 5cc24c9..68bd668 100644 | ||
78 | --- a/testscripts/psnr.cpp | ||
79 | +++ b/testscripts/psnr.cpp | ||
80 | @@ -215,14 +215,14 @@ int main(int argc, char *argv[]) | ||
81 | const char* psnrresult = "average_psnr.txt"; | ||
82 | int width=0,height=0; | ||
83 | int standardpsnr = NORMAL_PSNR; | ||
84 | - char opt; | ||
85 | + int opt; | ||
86 | while ((opt = getopt(argc, argv, "h:W:H:i:o:s:?")) != -1) | ||
87 | { | ||
88 | switch (opt) { | ||
89 | case 'h': | ||
90 | case '?': | ||
91 | print_help(argv[0]); | ||
92 | - return false; | ||
93 | + return -1; | ||
94 | case 'i': | ||
95 | filename1 = optarg; | ||
96 | break; | ||
diff --git a/recipes-multimedia/libyami/libyami-utils_1.3.2.bb b/recipes-multimedia/libyami/libyami-utils_1.3.2.bb deleted file mode 100644 index 8956bd04..00000000 --- a/recipes-multimedia/libyami/libyami-utils_1.3.2.bb +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | SUMMARY = "Applications and Scripts for libyami." | ||
2 | DESCRIPTION = "Applications and Scripts for libyami." | ||
3 | |||
4 | HOMEPAGE = "https://github.com/intel/libyami-utils" | ||
5 | BUGTRACKER = "https://github.com/intel/libyami-utils/issues/new" | ||
6 | |||
7 | LICENSE = "Apache-2.0" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" | ||
9 | |||
10 | SRC_URI = "git://github.com/intel/libyami-utils.git;branch=master;protocol=https \ | ||
11 | file://0001-Fix-build-with-clang.patch \ | ||
12 | " | ||
13 | SRCREV = "c3d25b64b05aeb0c4eecc140aef617cfeced6b8e" | ||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | DEPENDS = "libva libyami" | ||
17 | |||
18 | inherit autotools pkgconfig features_check | ||
19 | |||
20 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
21 | |||
22 | PACKAGECONFIG = "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" | ||
23 | |||
24 | # --enable-x11 needs libva-x11 | ||
25 | # gles-tests fail to build without x11: see https://github.com/intel/libyami-utils/issues/91 | ||
26 | PACKAGECONFIG[x11] = "--enable-x11 --enable-egl,--disable-x11 --disable-egl, virtual/libx11" | ||
diff --git a/recipes-multimedia/libyami/libyami_1.3.2.bb b/recipes-multimedia/libyami/libyami_1.3.2.bb deleted file mode 100644 index ad84bb4f..00000000 --- a/recipes-multimedia/libyami/libyami_1.3.2.bb +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | SUMMARY = "Yami is media infrastructure base on libva" | ||
2 | DESCRIPTION = "Yet Another Media Infrastructure \ | ||
3 | light weight hardware codec library base on VA-API " | ||
4 | |||
5 | HOMEPAGE = "https://github.com/intel/libyami" | ||
6 | BUGTRACKER = "https://github.com/intel/libyami/issues/new" | ||
7 | |||
8 | LICENSE = "Apache-2.0" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
10 | |||
11 | SRC_URI = "git://github.com/intel/libyami.git;branch=apache;protocol=https \ | ||
12 | " | ||
13 | SRCREV = "08606d0a43e0ef15e5b61cc13563169370ce8715" | ||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | CXXFLAGS:append = " -Wno-error" | ||
17 | |||
18 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)}" | ||
19 | PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxrandr libxrender" | ||
20 | |||
21 | DEPENDS = "libva" | ||
22 | inherit autotools pkgconfig features_check | ||
23 | |||
24 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
diff --git a/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch b/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch deleted file mode 100644 index 87c4e82e..00000000 --- a/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch +++ /dev/null | |||
@@ -1,49 +0,0 @@ | |||
1 | From be7cec47777bd35c44a59f2af73f12ce9c26d65c Mon Sep 17 00:00:00 2001 | ||
2 | From: Anuj Mittal <anuj.mittal@intel.com> | ||
3 | Date: Wed, 7 Oct 2020 09:33:06 +0800 | ||
4 | Subject: [PATCH] FindITT.cmake: fix detection of header/library | ||
5 | |||
6 | Use find_library to check for the library so distributions installing to | ||
7 | standard locations can also work in addition to custom paths specified | ||
8 | using CMAKE_ITT_HOME. | ||
9 | |||
10 | Also add ittnotify to PATH_SUFFIXES for header for cases when | ||
11 | ittnotify.h is installed in /usr/include/ittnotify for example. | ||
12 | |||
13 | Upstream-Status: Submitted | ||
14 | |||
15 | Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> | ||
16 | --- | ||
17 | builder/FindITT.cmake | 6 +++--- | ||
18 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
19 | |||
20 | diff --git a/builder/FindITT.cmake b/builder/FindITT.cmake | ||
21 | index ba2542c5..d96acf2e 100644 | ||
22 | --- a/builder/FindITT.cmake | ||
23 | +++ b/builder/FindITT.cmake | ||
24 | @@ -35,19 +35,19 @@ if( ENABLE_ITT ) | ||
25 | |||
26 | find_path( ITT_INCLUDE_DIRS ittnotify.h | ||
27 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
28 | - PATH_SUFFIXES include ) | ||
29 | + PATH_SUFFIXES include ittnotify) | ||
30 | |||
31 | # Unfortunately SEAPI and VTune uses different names for itt library: | ||
32 | # * SEAPI uses libittnotify${arch}.a | ||
33 | # * VTune uses libittnotify.a | ||
34 | # We are trying to check both giving preference to SEAPI name. | ||
35 | - find_path( ITT_LIBRARY_DIRS libittnotify${arch}.a | ||
36 | + find_library( ITT_LIBRARY_DIRS ittnotify${arch} | ||
37 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
38 | PATH_SUFFIXES lib64 ) | ||
39 | if( NOT ITT_LIBRARY_DIRS MATCHES NOTFOUND ) | ||
40 | set( ITT_LIBRARIES "ittnotify${arch}" ) | ||
41 | else() | ||
42 | - find_path( ITT_LIBRARY_DIRS libittnotify.a | ||
43 | + find_library( ITT_LIBRARY_DIRS ittnotify | ||
44 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
45 | PATH_SUFFIXES lib64 ) | ||
46 | if( NOT ITT_LIBRARY_PATH MATCHES NOTFOUND ) | ||
47 | -- | ||
48 | 2.26.2 | ||
49 | |||
diff --git a/recipes-multimedia/mediasdk/intel-mediasdk_21.3.5.bb b/recipes-multimedia/mediasdk/intel-mediasdk_21.3.5.bb deleted file mode 100644 index 27fd4ab2..00000000 --- a/recipes-multimedia/mediasdk/intel-mediasdk_21.3.5.bb +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | SUMMARY = "Intel(R) Media SDK for hardware accelerated media processing" | ||
2 | DESCRIPTION = "Intel(R) Media SDK provides an API to access hardware-accelerated \ | ||
3 | video decode, encode and filtering on IntelĀ® platforms with integrated graphics." | ||
4 | |||
5 | HOMEPAGE = "https://github.com/Intel-Media-SDK/MediaSDK" | ||
6 | BUGTRACKER = "https://github.com/Intel-Media-SDK/MediaSDK/issues" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3cb331af679cd8f968bf799a9c55b46e" | ||
10 | |||
11 | CVE_DETAILS = "intel:media_sdk" | ||
12 | |||
13 | # Only for 64 bit until media-driver issues aren't fixed | ||
14 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
15 | COMPATIBLE_HOST:x86-x32 = "null" | ||
16 | |||
17 | inherit features_check | ||
18 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
19 | |||
20 | DEPENDS += "libdrm libva intel-media-driver" | ||
21 | |||
22 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "dri3", "", d)} \ | ||
23 | ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "", d)} \ | ||
24 | samples \ | ||
25 | itt \ | ||
26 | " | ||
27 | |||
28 | PACKAGECONFIG[dri3] = "-DENABLE_X11_DRI3=ON, -DENABLE_X11_DRI3=OFF" | ||
29 | PACKAGECONFIG[itt] = "-DENABLE_ITT=ON, -DENABLE_ITT=OFF, itt" | ||
30 | PACKAGECONFIG[opencl] = "-DENABLE_OPENCL=ON, -DENABLE_OPENCL=OFF, ocl-icd opencl-clhpp opencl-headers" | ||
31 | PACKAGECONFIG[samples] = "-DBUILD_SAMPLES=ON, -DBUILD_SAMPLES=OFF" | ||
32 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native" | ||
33 | |||
34 | SRC_URI = "git://github.com/Intel-Media-SDK/MediaSDK.git;protocol=https;nobranch=1;lfs=0 \ | ||
35 | file://0001-FindITT.cmake-fix-detection-of-header-library.patch \ | ||
36 | " | ||
37 | |||
38 | SRCREV = "2b2922e15f353bc542d64f8ef15a248d88bfd2ce" | ||
39 | S = "${WORKDIR}/git" | ||
40 | |||
41 | UPSTREAM_CHECK_GITTAGREGEX = "^intel-mediasdk-(?P<pver>(\d+(\.\d+)+))$" | ||
42 | |||
43 | inherit cmake pkgconfig | ||
44 | |||
45 | EXTRA_OECMAKE += "-DMFX_INCLUDE=${S}/api/include" | ||
46 | |||
47 | do_install:append() { | ||
48 | mv ${D}${datadir}/mfx/samples ${D}${libdir}/mfx/samples | ||
49 | } | ||
50 | |||
51 | PACKAGE_BEFORE_PN = " ${PN}-samples" | ||
52 | |||
53 | FILES:${PN} += " \ | ||
54 | ${libdir}/mfx \ | ||
55 | ${datadir}/mfx/plugins.cfg \ | ||
56 | " | ||
57 | |||
58 | FILES:${PN}-samples = "${libdir}/mfx/samples" | ||
59 | |||
60 | INSANE_SKIP:${PN}-samples += "staticdev" | ||
diff --git a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-AVCd-Add-frame-info-check-and-update-ChromaFormat-in.patch b/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-AVCd-Add-frame-info-check-and-update-ChromaFormat-in.patch deleted file mode 100644 index 3c41c741..00000000 --- a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-AVCd-Add-frame-info-check-and-update-ChromaFormat-in.patch +++ /dev/null | |||
@@ -1,98 +0,0 @@ | |||
1 | From f23ba1b768a4db58ed985a0f066b65d9a65dd61b Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yew, Chang Ching" <chang.ching.yew@intel.com> | ||
3 | Date: Mon, 1 Nov 2021 13:28:06 +0000 | ||
4 | Subject: [PATCH 2/2] [AVCd] Add frame info check and update ChromaFormat in | ||
5 | FillOutputSurface for VDSFC CSC | ||
6 | |||
7 | Upstream-Status: Submitted | ||
8 | innersource PR #3871 | ||
9 | |||
10 | Signed-off-by: Yew, Chang Ching <chang.ching.yew@intel.com> | ||
11 | --- | ||
12 | .../decode/h264/src/mfx_h264_dec_decode.cpp | 48 +++++++++---------- | ||
13 | 1 file changed, 24 insertions(+), 24 deletions(-) | ||
14 | |||
15 | diff --git a/_studio/mfx_lib/decode/h264/src/mfx_h264_dec_decode.cpp b/_studio/mfx_lib/decode/h264/src/mfx_h264_dec_decode.cpp | ||
16 | index 84e57f7f18..8e51ad7852 100644 | ||
17 | --- a/_studio/mfx_lib/decode/h264/src/mfx_h264_dec_decode.cpp | ||
18 | +++ b/_studio/mfx_lib/decode/h264/src/mfx_h264_dec_decode.cpp | ||
19 | @@ -1140,12 +1140,8 @@ mfxStatus VideoDECODEH264::DecodeFrameCheck(mfxBitstream *bs, mfxFrameSurface1 * | ||
20 | isVideoProcCscEnabled = true; | ||
21 | } | ||
22 | #endif | ||
23 | - sts = CheckFrameInfoCodecs(&surface_work->Info, MFX_CODEC_AVC); | ||
24 | - //Decode CSC support more FourCC format, already checked in Init, skip the check return; | ||
25 | - if(!isVideoProcCscEnabled) | ||
26 | - { | ||
27 | - MFX_CHECK(sts == MFX_ERR_NONE, MFX_ERR_UNSUPPORTED); | ||
28 | - } | ||
29 | + sts = isVideoProcCscEnabled ? CheckFrameInfoDecVideoProcCsc(&surface_work->Info, MFX_CODEC_AVC) : CheckFrameInfoCodecs(&surface_work->Info, MFX_CODEC_AVC); | ||
30 | + MFX_CHECK(sts == MFX_ERR_NONE, MFX_ERR_INVALID_VIDEO_PARAM) | ||
31 | |||
32 | sts = CheckFrameData(surface_work); | ||
33 | MFX_CHECK_STS(sts); | ||
34 | @@ -1420,11 +1416,6 @@ void VideoDECODEH264::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
35 | } | ||
36 | #endif | ||
37 | |||
38 | - surface_out->Info.CropH = (mfxU16)(pFrame->lumaSize().height - pFrame->m_crop_bottom - pFrame->m_crop_top); | ||
39 | - surface_out->Info.CropW = (mfxU16)(pFrame->lumaSize().width - pFrame->m_crop_right - pFrame->m_crop_left); | ||
40 | - surface_out->Info.CropX = (mfxU16)(pFrame->m_crop_left); | ||
41 | - surface_out->Info.CropY = (mfxU16)(pFrame->m_crop_top); | ||
42 | - | ||
43 | #ifndef MFX_DEC_VIDEO_POSTPROCESS_DISABLE | ||
44 | mfxExtDecVideoProcessing * videoProcessing = (mfxExtDecVideoProcessing *)GetExtendedBuffer(m_vFirstPar.ExtParam, m_vFirstPar.NumExtParam, MFX_EXTBUFF_DEC_VIDEO_PROCESSING); | ||
45 | if (videoProcessing) | ||
46 | @@ -1433,8 +1424,28 @@ void VideoDECODEH264::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
47 | surface_out->Info.CropW = videoProcessing->Out.CropW; | ||
48 | surface_out->Info.CropX = videoProcessing->Out.CropX; | ||
49 | surface_out->Info.CropY = videoProcessing->Out.CropY; | ||
50 | - } | ||
51 | + surface_out->Info.ChromaFormat = videoProcessing->Out.ChromaFormat; | ||
52 | + } else | ||
53 | #endif | ||
54 | + { | ||
55 | + surface_out->Info.CropH = (mfxU16)(pFrame->lumaSize().height - pFrame->m_crop_bottom - pFrame->m_crop_top); | ||
56 | + surface_out->Info.CropW = (mfxU16)(pFrame->lumaSize().width - pFrame->m_crop_right - pFrame->m_crop_left); | ||
57 | + surface_out->Info.CropX = (mfxU16)(pFrame->m_crop_left); | ||
58 | + surface_out->Info.CropY = (mfxU16)(pFrame->m_crop_top); | ||
59 | + | ||
60 | + switch(pFrame->m_chroma_format) | ||
61 | + { | ||
62 | + case 0: | ||
63 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV400; | ||
64 | + break; | ||
65 | + case 2: | ||
66 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
67 | + break; | ||
68 | + default: | ||
69 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
70 | + break; | ||
71 | + } | ||
72 | + } | ||
73 | |||
74 | bool isShouldUpdate = !(m_vFirstPar.mfx.FrameInfo.AspectRatioH || m_vFirstPar.mfx.FrameInfo.AspectRatioW); | ||
75 | |||
76 | @@ -1447,18 +1458,7 @@ void VideoDECODEH264::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
77 | surface_out->Info.FrameRateExtN = isShouldUpdate ? m_vPar.mfx.FrameInfo.FrameRateExtN : m_vFirstPar.mfx.FrameInfo.FrameRateExtN; | ||
78 | |||
79 | surface_out->Info.PicStruct = 0; | ||
80 | - switch(pFrame->m_chroma_format) | ||
81 | - { | ||
82 | - case 0: | ||
83 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV400; | ||
84 | - break; | ||
85 | - case 2: | ||
86 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
87 | - break; | ||
88 | - default: | ||
89 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
90 | - break; | ||
91 | - } | ||
92 | + | ||
93 | |||
94 | switch (pFrame->m_displayPictureStruct) | ||
95 | { | ||
96 | -- | ||
97 | 2.33.1 | ||
98 | |||
diff --git a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-Adding-missing-device-ID-4692-for-ADL-S.patch b/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-Adding-missing-device-ID-4692-for-ADL-S.patch deleted file mode 100644 index 9d8577bc..00000000 --- a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-Adding-missing-device-ID-4692-for-ADL-S.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From 1579b536f1a82fb7c80f49fc7b76cda65b8bd18e Mon Sep 17 00:00:00 2001 | ||
2 | From: "Teng, Jin Chung" <jin.chung.teng@intel.com> | ||
3 | Date: Thu, 28 Oct 2021 13:49:58 +0800 | ||
4 | Subject: [PATCH] Adding missing device ID 4692 for ADL-S | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #3717 | ||
8 | |||
9 | [Internal] | ||
10 | Issue:- | ||
11 | Test:- | ||
12 | OSPR:N/A | ||
13 | |||
14 | Signed-off-by: Teng, Jin Chung <jin.chung.teng@intel.com> | ||
15 | --- | ||
16 | _studio/shared/include/mfxstructures-int.h | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | diff --git a/_studio/shared/include/mfxstructures-int.h b/_studio/shared/include/mfxstructures-int.h | ||
20 | index c71f126..fa1329d 100755 | ||
21 | --- a/_studio/shared/include/mfxstructures-int.h | ||
22 | +++ b/_studio/shared/include/mfxstructures-int.h | ||
23 | @@ -427,6 +427,7 @@ typedef struct { | ||
24 | { 0x4683, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
25 | { 0x4690, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
26 | { 0x4691, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
27 | + { 0x4692, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
28 | { 0x4693, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
29 | { 0x4698, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
30 | { 0x4699, MFX_HW_ADL_S, MFX_GT1 },//ADL-S | ||
31 | -- | ||
32 | 2.7.4 | ||
33 | |||
diff --git a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-HEVCd-Add-frame-info-check-and-update-ChromaFormat-i.patch b/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-HEVCd-Add-frame-info-check-and-update-ChromaFormat-i.patch deleted file mode 100644 index 69ce1369..00000000 --- a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-HEVCd-Add-frame-info-check-and-update-ChromaFormat-i.patch +++ /dev/null | |||
@@ -1,173 +0,0 @@ | |||
1 | From 99160958668fd4a170cd749492e37ebdb28dae69 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yew, Chang Ching" <chang.ching.yew@intel.com> | ||
3 | Date: Thu, 23 Sep 2021 21:34:16 +0000 | ||
4 | Subject: [PATCH 1/2] [HEVCd] Add frame info check and update ChromaFormat in | ||
5 | FillOutputSurface for VDSFC CSC | ||
6 | |||
7 | Upstream-Status: Submitted | ||
8 | innersource PR #3871 | ||
9 | |||
10 | Signed-off-by: Yew, Chang Ching <chang.ching.yew@intel.com> | ||
11 | --- | ||
12 | .../decode/h265/src/mfx_h265_dec_decode.cpp | 64 +++++++++++-------- | ||
13 | .../mfx_lib/shared/include/mfx_common_int.h | 1 + | ||
14 | _studio/mfx_lib/shared/src/mfx_common_int.cpp | 33 ++++++++++ | ||
15 | 3 files changed, 71 insertions(+), 27 deletions(-) | ||
16 | |||
17 | diff --git a/_studio/mfx_lib/decode/h265/src/mfx_h265_dec_decode.cpp b/_studio/mfx_lib/decode/h265/src/mfx_h265_dec_decode.cpp | ||
18 | index fe2bcf2c3f..362ad257d6 100644 | ||
19 | --- a/_studio/mfx_lib/decode/h265/src/mfx_h265_dec_decode.cpp | ||
20 | +++ b/_studio/mfx_lib/decode/h265/src/mfx_h265_dec_decode.cpp | ||
21 | @@ -963,8 +963,16 @@ mfxStatus VideoDECODEH265::DecodeFrameCheck(mfxBitstream *bs, mfxFrameSurface1 * | ||
22 | |||
23 | if (surface_work) | ||
24 | { | ||
25 | - sts = CheckFrameInfoCodecs(&surface_work->Info, MFX_CODEC_HEVC); | ||
26 | - MFX_CHECK(sts == MFX_ERR_NONE, MFX_ERR_INVALID_VIDEO_PARAM); | ||
27 | + bool isVideoProcCscEnabled = false; | ||
28 | +#ifndef MFX_DEC_VIDEO_POSTPROCESS_DISABLE | ||
29 | + mfxExtDecVideoProcessing* videoProcessing = (mfxExtDecVideoProcessing*)GetExtendedBuffer(m_vInitPar.ExtParam, m_vInitPar.NumExtParam, MFX_EXTBUFF_DEC_VIDEO_PROCESSING); | ||
30 | + if (videoProcessing && videoProcessing->Out.FourCC != m_vPar.mfx.FrameInfo.FourCC) | ||
31 | + { | ||
32 | + isVideoProcCscEnabled = true; | ||
33 | + } | ||
34 | +#endif | ||
35 | + sts = isVideoProcCscEnabled ? CheckFrameInfoDecVideoProcCsc(&surface_work->Info, MFX_CODEC_HEVC) : CheckFrameInfoCodecs(&surface_work->Info, MFX_CODEC_HEVC); | ||
36 | + MFX_CHECK(sts == MFX_ERR_NONE, MFX_ERR_INVALID_VIDEO_PARAM) | ||
37 | |||
38 | sts = CheckFrameData(surface_work); | ||
39 | MFX_CHECK_STS(sts); | ||
40 | @@ -1172,11 +1180,6 @@ void VideoDECODEH265::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
41 | |||
42 | surface_out->Info.FrameId.TemporalId = 0; | ||
43 | |||
44 | - surface_out->Info.CropH = (mfxU16)(pFrame->lumaSize().height - pFrame->m_crop_bottom - pFrame->m_crop_top); | ||
45 | - surface_out->Info.CropW = (mfxU16)(pFrame->lumaSize().width - pFrame->m_crop_right - pFrame->m_crop_left); | ||
46 | - surface_out->Info.CropX = (mfxU16)(pFrame->m_crop_left); | ||
47 | - surface_out->Info.CropY = (mfxU16)(pFrame->m_crop_top); | ||
48 | - | ||
49 | #ifndef MFX_DEC_VIDEO_POSTPROCESS_DISABLE | ||
50 | mfxExtDecVideoProcessing * videoProcessing = (mfxExtDecVideoProcessing *)GetExtendedBuffer(m_vFirstPar.ExtParam, m_vFirstPar.NumExtParam, MFX_EXTBUFF_DEC_VIDEO_PROCESSING); | ||
51 | if (videoProcessing) | ||
52 | @@ -1185,8 +1188,35 @@ void VideoDECODEH265::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
53 | surface_out->Info.CropW = videoProcessing->Out.CropW; | ||
54 | surface_out->Info.CropX = videoProcessing->Out.CropX; | ||
55 | surface_out->Info.CropY = videoProcessing->Out.CropY; | ||
56 | + surface_out->Info.ChromaFormat = videoProcessing->Out.ChromaFormat; | ||
57 | } | ||
58 | + else | ||
59 | #endif | ||
60 | + { | ||
61 | + surface_out->Info.CropH = (mfxU16)(pFrame->lumaSize().height - pFrame->m_crop_bottom - pFrame->m_crop_top); | ||
62 | + surface_out->Info.CropW = (mfxU16)(pFrame->lumaSize().width - pFrame->m_crop_right - pFrame->m_crop_left); | ||
63 | + surface_out->Info.CropX = (mfxU16)(pFrame->m_crop_left); | ||
64 | + surface_out->Info.CropY = (mfxU16)(pFrame->m_crop_top); | ||
65 | + | ||
66 | + switch(pFrame->m_chroma_format) | ||
67 | + { | ||
68 | + case 0: | ||
69 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV400; | ||
70 | + break; | ||
71 | + case 1: | ||
72 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
73 | + break; | ||
74 | + case 2: | ||
75 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
76 | + break; | ||
77 | + case 3: | ||
78 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
79 | + break; | ||
80 | + default: | ||
81 | + VM_ASSERT(!"Unknown chroma format"); | ||
82 | + surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
83 | + } | ||
84 | + } | ||
85 | |||
86 | bool isShouldUpdate = !(m_vFirstPar.mfx.FrameInfo.AspectRatioH || m_vFirstPar.mfx.FrameInfo.AspectRatioW); | ||
87 | |||
88 | @@ -1198,26 +1228,6 @@ void VideoDECODEH265::FillOutputSurface(mfxFrameSurface1 **surf_out, mfxFrameSur | ||
89 | surface_out->Info.FrameRateExtD = isShouldUpdate ? m_vPar.mfx.FrameInfo.FrameRateExtD : m_vFirstPar.mfx.FrameInfo.FrameRateExtD; | ||
90 | surface_out->Info.FrameRateExtN = isShouldUpdate ? m_vPar.mfx.FrameInfo.FrameRateExtN : m_vFirstPar.mfx.FrameInfo.FrameRateExtN; | ||
91 | |||
92 | - surface_out->Info.PicStruct = 0; | ||
93 | - switch(pFrame->m_chroma_format) | ||
94 | - { | ||
95 | - case 0: | ||
96 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV400; | ||
97 | - break; | ||
98 | - case 1: | ||
99 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
100 | - break; | ||
101 | - case 2: | ||
102 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
103 | - break; | ||
104 | - case 3: | ||
105 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
106 | - break; | ||
107 | - default: | ||
108 | - VM_ASSERT(!"Unknown chroma format"); | ||
109 | - surface_out->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
110 | - } | ||
111 | - | ||
112 | surface_out->Info.PicStruct = | ||
113 | UMC2MFX_PicStruct(pFrame->m_DisplayPictureStruct_H265, !!m_vPar.mfx.ExtendedPicStruct); | ||
114 | |||
115 | diff --git a/_studio/mfx_lib/shared/include/mfx_common_int.h b/_studio/mfx_lib/shared/include/mfx_common_int.h | ||
116 | index 4f12ddb883..73f4667a18 100644 | ||
117 | --- a/_studio/mfx_lib/shared/include/mfx_common_int.h | ||
118 | +++ b/_studio/mfx_lib/shared/include/mfx_common_int.h | ||
119 | @@ -29,6 +29,7 @@ | ||
120 | |||
121 | mfxStatus CheckFrameInfoCommon(mfxFrameInfo *info, mfxU32 codecId); | ||
122 | mfxStatus CheckFrameInfoEncoders(mfxFrameInfo *info); | ||
123 | +mfxStatus CheckFrameInfoDecVideoProcCsc(mfxFrameInfo *info, mfxU32 codecId); | ||
124 | mfxStatus CheckFrameInfoCodecs(mfxFrameInfo *info, mfxU32 codecId = MFX_CODEC_AVC); | ||
125 | |||
126 | mfxStatus CheckVideoParamEncoders(mfxVideoParam *in, eMFXHWType type); | ||
127 | diff --git a/_studio/mfx_lib/shared/src/mfx_common_int.cpp b/_studio/mfx_lib/shared/src/mfx_common_int.cpp | ||
128 | index 1142457f00..4f2126d944 100644 | ||
129 | --- a/_studio/mfx_lib/shared/src/mfx_common_int.cpp | ||
130 | +++ b/_studio/mfx_lib/shared/src/mfx_common_int.cpp | ||
131 | @@ -163,6 +163,39 @@ mfxStatus CheckFrameInfoEncoders(mfxFrameInfo *info) | ||
132 | return MFX_ERR_NONE; | ||
133 | } | ||
134 | |||
135 | +mfxStatus CheckFrameInfoDecVideoProcCsc(mfxFrameInfo *info, mfxU32 codecId) | ||
136 | +{ | ||
137 | + mfxStatus sts = CheckFrameInfoCommon(info, codecId); | ||
138 | + MFX_CHECK_STS(sts); | ||
139 | + | ||
140 | + switch(info->FourCC) { | ||
141 | + case MFX_FOURCC_NV12: | ||
142 | + case MFX_FOURCC_P010: | ||
143 | + case MFX_FOURCC_P016: | ||
144 | + if (info->ChromaFormat == MFX_CHROMAFORMAT_YUV420) | ||
145 | + return MFX_ERR_NONE; | ||
146 | + MFX_RETURN(MFX_ERR_INVALID_VIDEO_PARAM); | ||
147 | + | ||
148 | + case MFX_FOURCC_YUY2: | ||
149 | + case MFX_FOURCC_Y210: | ||
150 | + case MFX_FOURCC_Y216: | ||
151 | + if (info->ChromaFormat == MFX_CHROMAFORMAT_YUV422) | ||
152 | + return MFX_ERR_NONE; | ||
153 | + MFX_RETURN(MFX_ERR_INVALID_VIDEO_PARAM); | ||
154 | + | ||
155 | + case MFX_FOURCC_AYUV: | ||
156 | + case MFX_FOURCC_Y410: | ||
157 | + case MFX_FOURCC_Y416: | ||
158 | + case MFX_FOURCC_RGB4: | ||
159 | + if (info->ChromaFormat == MFX_CHROMAFORMAT_YUV444) | ||
160 | + return MFX_ERR_NONE; | ||
161 | + MFX_RETURN(MFX_ERR_INVALID_VIDEO_PARAM); | ||
162 | + | ||
163 | + default: | ||
164 | + MFX_RETURN(MFX_ERR_UNSUPPORTED); | ||
165 | + } | ||
166 | +} | ||
167 | + | ||
168 | mfxStatus CheckFrameInfoCodecs(mfxFrameInfo *info, mfxU32 codecId) | ||
169 | { | ||
170 | mfxStatus sts = CheckFrameInfoCommon(info, codecId); | ||
171 | -- | ||
172 | 2.33.1 | ||
173 | |||
diff --git a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-jpegd-Enable-JPEG-decode-error-report.patch b/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-jpegd-Enable-JPEG-decode-error-report.patch deleted file mode 100644 index 21482ed7..00000000 --- a/recipes-multimedia/onevpl/onevpl-intel-gpu/0001-jpegd-Enable-JPEG-decode-error-report.patch +++ /dev/null | |||
@@ -1,502 +0,0 @@ | |||
1 | From fe25ec3db9a48308bd6d3e9fe800e67335f8a369 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yew, Chang Ching" <chang.ching.yew@intel.com> | ||
3 | Date: Mon, 4 Oct 2021 13:56:08 +0800 | ||
4 | Subject: [PATCH] [jpegd] Enable JPEG decode error report | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #3318 | ||
8 | |||
9 | [Internal] | ||
10 | Issue: NA | ||
11 | Test: manual. Gst-MSDK with mfxExtDecodeErrorReport | ||
12 | OSPR: N/A | ||
13 | |||
14 | Signed-off-by: Cheah, Vincent Beng Keat vincent.beng.keat.cheah@intel.com> | ||
15 | --- | ||
16 | .../mjpeg/include/mfx_mjpeg_dec_decode.h | 2 ++ | ||
17 | .../decode/mjpeg/src/mfx_mjpeg_dec_decode.cpp | 19 ++++++++++- | ||
18 | .../umc/codec/jpeg_dec/include/jpegdec.h | 1 + | ||
19 | .../umc/codec/jpeg_dec/include/jpegdec_base.h | 19 +++++++++++ | ||
20 | .../jpeg_dec/include/umc_mjpeg_mfx_decode.h | 2 +- | ||
21 | .../include/umc_mjpeg_mfx_decode_base.h | 4 +-- | ||
22 | .../shared/umc/codec/jpeg_dec/src/jpegdec.cpp | 17 ++++++++-- | ||
23 | .../umc/codec/jpeg_dec/src/jpegdec_base.cpp | 29 +++++++++++++++- | ||
24 | .../jpeg_dec/src/umc_mjpeg_mfx_decode.cpp | 6 ++-- | ||
25 | .../src/umc_mjpeg_mfx_decode_base.cpp | 6 ++-- | ||
26 | api/vpl/mfxstructures.h | 33 +++++++++++++++---- | ||
27 | 11 files changed, 121 insertions(+), 17 deletions(-) | ||
28 | |||
29 | diff --git a/_studio/mfx_lib/decode/mjpeg/include/mfx_mjpeg_dec_decode.h b/_studio/mfx_lib/decode/mjpeg/include/mfx_mjpeg_dec_decode.h | ||
30 | index c6641d3e71..a2ea6b5cec 100644 | ||
31 | --- a/_studio/mfx_lib/decode/mjpeg/include/mfx_mjpeg_dec_decode.h | ||
32 | +++ b/_studio/mfx_lib/decode/mjpeg/include/mfx_mjpeg_dec_decode.h | ||
33 | @@ -37,6 +37,7 @@ | ||
34 | #endif | ||
35 | |||
36 | #include "mfx_task.h" | ||
37 | +#include "umc_media_data.h" | ||
38 | |||
39 | #include "mfx_vpp_jpeg.h" | ||
40 | |||
41 | @@ -46,6 +47,7 @@ namespace UMC | ||
42 | class JpegFrameConstructor; | ||
43 | class MediaDataEx; | ||
44 | class FrameData; | ||
45 | + class MediaData; | ||
46 | }; | ||
47 | |||
48 | class VideoDECODEMJPEGBase | ||
49 | diff --git a/_studio/mfx_lib/decode/mjpeg/src/mfx_mjpeg_dec_decode.cpp b/_studio/mfx_lib/decode/mjpeg/src/mfx_mjpeg_dec_decode.cpp | ||
50 | index 3769fe8a72..0775fbb1be 100644 | ||
51 | --- a/_studio/mfx_lib/decode/mjpeg/src/mfx_mjpeg_dec_decode.cpp | ||
52 | +++ b/_studio/mfx_lib/decode/mjpeg/src/mfx_mjpeg_dec_decode.cpp | ||
53 | @@ -456,6 +456,14 @@ mfxStatus VideoDECODEMJPEG::DecodeHeader(VideoCORE *core, mfxBitstream *bs, mfxV | ||
54 | UMC::Status umcRes = decoder.Init(&umcVideoParams); | ||
55 | MFX_CHECK_INIT(umcRes == UMC::UMC_OK); | ||
56 | |||
57 | + mfxExtBuffer* extbuf = (bs) ? GetExtendedBuffer(bs->ExtParam, bs->NumExtParam, MFX_EXTBUFF_DECODE_ERROR_REPORT) : NULL; | ||
58 | + | ||
59 | + if (extbuf) | ||
60 | + { | ||
61 | + reinterpret_cast<mfxExtDecodeErrorReport *>(extbuf)->ErrorTypes = 0; | ||
62 | + in.SetExtBuffer(extbuf); | ||
63 | + } | ||
64 | + | ||
65 | umcRes = decoder.DecodeHeader(&in); | ||
66 | |||
67 | in.Save(bs); | ||
68 | @@ -770,6 +778,14 @@ mfxStatus VideoDECODEMJPEG::DecodeFrameCheck(mfxBitstream *bs, mfxFrameSurface1 | ||
69 | MFXMediaDataAdapter src(bs); | ||
70 | UMC::MediaDataEx *pSrcData; | ||
71 | |||
72 | + mfxExtBuffer* extbuf = (bs) ? GetExtendedBuffer(bs->ExtParam, bs->NumExtParam, MFX_EXTBUFF_DECODE_ERROR_REPORT) : NULL; | ||
73 | + | ||
74 | + if (extbuf) | ||
75 | + { | ||
76 | + reinterpret_cast<mfxExtDecodeErrorReport *>(extbuf)->ErrorTypes = 0; | ||
77 | + src.SetExtBuffer(extbuf); | ||
78 | + } | ||
79 | + | ||
80 | if (!m_isHeaderFound && bs) | ||
81 | { | ||
82 | umcRes = pMJPEGVideoDecoder->FindStartOfImage(&src); | ||
83 | @@ -785,7 +801,8 @@ mfxStatus VideoDECODEMJPEG::DecodeFrameCheck(mfxBitstream *bs, mfxFrameSurface1 | ||
84 | |||
85 | if (!m_isHeaderParsed && bs) | ||
86 | { | ||
87 | - umcRes = pMJPEGVideoDecoder->_GetFrameInfo((uint8_t*)src.GetDataPointer(), src.GetDataSize()); | ||
88 | + umcRes = pMJPEGVideoDecoder->_GetFrameInfo((uint8_t*)src.GetDataPointer(), src.GetDataSize(), &src); | ||
89 | + | ||
90 | if (umcRes != UMC::UMC_OK) | ||
91 | { | ||
92 | if(umcRes != UMC::UMC_ERR_NOT_ENOUGH_DATA) | ||
93 | diff --git a/_studio/shared/umc/codec/jpeg_dec/include/jpegdec.h b/_studio/shared/umc/codec/jpeg_dec/include/jpegdec.h | ||
94 | index 1e70931284..561e1c2889 100644 | ||
95 | --- a/_studio/shared/umc/codec/jpeg_dec/include/jpegdec.h | ||
96 | +++ b/_studio/shared/umc/codec/jpeg_dec/include/jpegdec.h | ||
97 | @@ -27,6 +27,7 @@ | ||
98 | #include "omp.h" | ||
99 | #endif | ||
100 | #include "jpegdec_base.h" | ||
101 | +#include "umc_media_data.h" | ||
102 | |||
103 | class CBaseStreamInput; | ||
104 | |||
105 | diff --git a/_studio/shared/umc/codec/jpeg_dec/include/jpegdec_base.h b/_studio/shared/umc/codec/jpeg_dec/include/jpegdec_base.h | ||
106 | index 5e9c139c2c..42647f871c 100644 | ||
107 | --- a/_studio/shared/umc/codec/jpeg_dec/include/jpegdec_base.h | ||
108 | +++ b/_studio/shared/umc/codec/jpeg_dec/include/jpegdec_base.h | ||
109 | @@ -29,6 +29,13 @@ | ||
110 | #include "colorcomp.h" | ||
111 | #include "membuffin.h" | ||
112 | #include "bitstreamin.h" | ||
113 | +#include "mfxstructures.h" | ||
114 | +#include "umc_media_data.h" | ||
115 | + | ||
116 | +namespace UMC | ||
117 | +{ | ||
118 | + class MediaData; | ||
119 | +}; | ||
120 | |||
121 | class CJPEGDecoderBase | ||
122 | { | ||
123 | @@ -146,6 +153,18 @@ public: | ||
124 | JERRCODE SkipMarker(void); | ||
125 | |||
126 | JERRCODE DetectSampling(void); | ||
127 | + | ||
128 | + void SetDecodeErrorTypes(void); | ||
129 | + | ||
130 | + void SetDecodeErrorReportParam(UMC::MediaData *in) | ||
131 | + { | ||
132 | + UMC::MediaData::AuxInfo* aux = (in) ? in->GetAuxInfo(MFX_EXTBUFF_DECODE_ERROR_REPORT) : NULL; | ||
133 | + m_pDecodeErrorReport = (aux) ? reinterpret_cast<mfxExtDecodeErrorReport*>(aux->ptr) : NULL; | ||
134 | + } | ||
135 | + | ||
136 | +protected: | ||
137 | + mfxExtDecodeErrorReport* m_pDecodeErrorReport; | ||
138 | + | ||
139 | }; | ||
140 | |||
141 | #endif // MFX_ENABLE_MJPEG_VIDEO_DECODE | ||
142 | diff --git a/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode.h b/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode.h | ||
143 | index fbe535cd95..2edd4d57a8 100644 | ||
144 | --- a/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode.h | ||
145 | +++ b/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode.h | ||
146 | @@ -94,7 +94,7 @@ public: | ||
147 | JCOLOR GetColorType(); | ||
148 | |||
149 | // All memory sizes should come in size_t type | ||
150 | - Status _GetFrameInfo(const uint8_t* pBitStream, size_t nSize); | ||
151 | + Status _GetFrameInfo(const uint8_t* pBitStream, size_t nSize, MediaData *in); | ||
152 | |||
153 | // Allocate the destination frame | ||
154 | Status AllocateFrame() override; | ||
155 | diff --git a/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode_base.h b/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode_base.h | ||
156 | index 9cee49e9c1..90ce5888ea 100644 | ||
157 | --- a/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode_base.h | ||
158 | +++ b/_studio/shared/umc/codec/jpeg_dec/include/umc_mjpeg_mfx_decode_base.h | ||
159 | @@ -63,7 +63,7 @@ public: | ||
160 | // Close decoding & free all allocated resources | ||
161 | virtual Status Close(void); | ||
162 | |||
163 | - virtual Status GetFrame(UMC::MediaDataEx *, UMC::FrameData** , const mfxU32 ) { return MFX_ERR_NONE; }; | ||
164 | + virtual Status GetFrame(UMC::MediaDataEx *, UMC::FrameData** , const mfxU32) { return MFX_ERR_NONE; }; | ||
165 | |||
166 | virtual void SetFrameAllocator(FrameAllocator * frameAllocator); | ||
167 | |||
168 | @@ -79,7 +79,7 @@ public: | ||
169 | Status FindStartOfImage(MediaData * in); | ||
170 | |||
171 | // All memory sizes should come in size_t type | ||
172 | - Status _GetFrameInfo(const uint8_t* pBitStream, size_t nSize); | ||
173 | + Status _GetFrameInfo(const uint8_t* pBitStream, size_t nSize, MediaData *in); | ||
174 | |||
175 | Status SetRotation(uint16_t rotation); | ||
176 | |||
177 | diff --git a/_studio/shared/umc/codec/jpeg_dec/src/jpegdec.cpp b/_studio/shared/umc/codec/jpeg_dec/src/jpegdec.cpp | ||
178 | index 127133ae4c..54441dc534 100644 | ||
179 | --- a/_studio/shared/umc/codec/jpeg_dec/src/jpegdec.cpp | ||
180 | +++ b/_studio/shared/umc/codec/jpeg_dec/src/jpegdec.cpp | ||
181 | @@ -1120,6 +1120,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
182 | jerr = ParseAPP0(); | ||
183 | if(JPEG_OK != jerr) | ||
184 | { | ||
185 | + SetDecodeErrorTypes(); | ||
186 | return jerr; | ||
187 | } | ||
188 | break; | ||
189 | @@ -1128,6 +1129,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
190 | jerr = ParseAPP1(); | ||
191 | if(JPEG_OK != jerr) | ||
192 | { | ||
193 | + SetDecodeErrorTypes(); | ||
194 | return jerr; | ||
195 | } | ||
196 | break; | ||
197 | @@ -1136,6 +1138,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
198 | jerr = ParseAPP14(); | ||
199 | if(JPEG_OK != jerr) | ||
200 | { | ||
201 | + SetDecodeErrorTypes(); | ||
202 | return jerr; | ||
203 | } | ||
204 | break; | ||
205 | @@ -1152,6 +1155,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
206 | jerr = ParseDQT(); | ||
207 | if(JPEG_OK != jerr) | ||
208 | { | ||
209 | + SetDecodeErrorTypes(); | ||
210 | return jerr; | ||
211 | } | ||
212 | break; | ||
213 | @@ -1160,6 +1164,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
214 | jerr = ParseSOF0(); | ||
215 | if(JPEG_OK != jerr) | ||
216 | { | ||
217 | + SetDecodeErrorTypes(); | ||
218 | return jerr; | ||
219 | } | ||
220 | break; | ||
221 | @@ -1206,6 +1211,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
222 | jerr = ParseDHT(); | ||
223 | if(JPEG_OK != jerr) | ||
224 | { | ||
225 | + SetDecodeErrorTypes(); | ||
226 | return jerr; | ||
227 | } | ||
228 | break; | ||
229 | @@ -1214,6 +1220,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
230 | jerr = ParseDRI(); | ||
231 | if(JPEG_OK != jerr) | ||
232 | { | ||
233 | + SetDecodeErrorTypes(); | ||
234 | return jerr; | ||
235 | } | ||
236 | break; | ||
237 | @@ -1222,6 +1229,7 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
238 | jerr = ParseSOS(op); | ||
239 | if(JPEG_OK != jerr) | ||
240 | { | ||
241 | + SetDecodeErrorTypes(); | ||
242 | return jerr; | ||
243 | } | ||
244 | |||
245 | @@ -1231,7 +1239,10 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
246 | { | ||
247 | jerr = m_BitStreamIn.Seek(-(m_sos_len + 2)); | ||
248 | if(JPEG_OK != jerr) | ||
249 | + { | ||
250 | + SetDecodeErrorTypes(); | ||
251 | return jerr; | ||
252 | + } | ||
253 | } | ||
254 | else | ||
255 | { | ||
256 | @@ -1246,7 +1257,10 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
257 | { | ||
258 | jerr = ParseData(); | ||
259 | if(JPEG_OK != jerr) | ||
260 | + { | ||
261 | + SetDecodeErrorTypes(); | ||
262 | return jerr; | ||
263 | + } | ||
264 | |||
265 | } | ||
266 | break; | ||
267 | @@ -1288,10 +1302,10 @@ JERRCODE CJPEGDecoder::ParseJPEGBitStream(JOPERATION op) | ||
268 | default: | ||
269 | TRC1("-> Unknown marker ",m_marker); | ||
270 | TRC0("..Skipping"); | ||
271 | + SetDecodeErrorTypes(); | ||
272 | jerr = SkipMarker(); | ||
273 | if(JPEG_OK != jerr) | ||
274 | return jerr; | ||
275 | - | ||
276 | break; | ||
277 | } | ||
278 | } | ||
279 | @@ -4575,7 +4589,6 @@ JERRCODE CJPEGDecoder::ReadHeader( | ||
280 | JERRCODE CJPEGDecoder::ReadData(void) | ||
281 | { | ||
282 | return ParseJPEGBitStream(JO_READ_DATA); | ||
283 | - | ||
284 | } // CJPEGDecoder::ReadData(void) | ||
285 | |||
286 | JERRCODE CJPEGDecoder::ReadData(uint32_t restartNum, uint32_t restartsToDecode) | ||
287 | diff --git a/_studio/shared/umc/codec/jpeg_dec/src/jpegdec_base.cpp b/_studio/shared/umc/codec/jpeg_dec/src/jpegdec_base.cpp | ||
288 | index d6244e827b..4409b51cee 100644 | ||
289 | --- a/_studio/shared/umc/codec/jpeg_dec/src/jpegdec_base.cpp | ||
290 | +++ b/_studio/shared/umc/codec/jpeg_dec/src/jpegdec_base.cpp | ||
291 | @@ -282,6 +282,23 @@ JERRCODE CJPEGDecoderBase::DetectSampling(void) | ||
292 | return JPEG_OK; | ||
293 | } // CJPEGDecoderBase::DetectSampling() | ||
294 | |||
295 | +void CJPEGDecoderBase::SetDecodeErrorTypes(void) | ||
296 | +{ | ||
297 | + if (!m_pDecodeErrorReport) | ||
298 | + return; | ||
299 | + | ||
300 | + switch (m_marker) | ||
301 | + { | ||
302 | + case JM_APP0: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_APP0_MARKER; break; | ||
303 | + case JM_APP14: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_APP14_MARKER; break; | ||
304 | + case JM_DQT: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_DQT_MARKER; break; | ||
305 | + case JM_SOF0: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_SOF0_MARKER; break; | ||
306 | + case JM_DHT: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_DHT_MARKER; break; | ||
307 | + case JM_DRI: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_DRI_MARKER; break; | ||
308 | + case JM_SOS: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_SOS_MARKER; break; | ||
309 | + default: m_pDecodeErrorReport->ErrorTypes |= MFX_ERROR_JPEG_UNKNOWN_MARKER; break; | ||
310 | + }; | ||
311 | +} | ||
312 | |||
313 | JERRCODE CJPEGDecoderBase::NextMarker(JMARKER* marker) | ||
314 | { | ||
315 | @@ -1265,6 +1282,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
316 | jerr = ParseAPP0(); | ||
317 | if(JPEG_OK != jerr) | ||
318 | { | ||
319 | + SetDecodeErrorTypes(); | ||
320 | return jerr; | ||
321 | } | ||
322 | break; | ||
323 | @@ -1273,6 +1291,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
324 | jerr = ParseAPP14(); | ||
325 | if(JPEG_OK != jerr) | ||
326 | { | ||
327 | + SetDecodeErrorTypes(); | ||
328 | return jerr; | ||
329 | } | ||
330 | break; | ||
331 | @@ -1281,6 +1300,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
332 | jerr = ParseDQT(); | ||
333 | if(JPEG_OK != jerr) | ||
334 | { | ||
335 | + SetDecodeErrorTypes(); | ||
336 | return jerr; | ||
337 | } | ||
338 | break; | ||
339 | @@ -1289,6 +1309,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
340 | jerr = ParseSOF0(); | ||
341 | if(JPEG_OK != jerr) | ||
342 | { | ||
343 | + SetDecodeErrorTypes(); | ||
344 | return jerr; | ||
345 | } | ||
346 | break; | ||
347 | @@ -1311,6 +1332,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
348 | jerr = ParseDHT(); | ||
349 | if(JPEG_OK != jerr) | ||
350 | { | ||
351 | + SetDecodeErrorTypes(); | ||
352 | return jerr; | ||
353 | } | ||
354 | break; | ||
355 | @@ -1319,6 +1341,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
356 | jerr = ParseDRI(); | ||
357 | if(JPEG_OK != jerr) | ||
358 | { | ||
359 | + SetDecodeErrorTypes(); | ||
360 | return jerr; | ||
361 | } | ||
362 | break; | ||
363 | @@ -1327,6 +1350,7 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
364 | jerr = ParseSOS(op); | ||
365 | if(JPEG_OK != jerr) | ||
366 | { | ||
367 | + SetDecodeErrorTypes(); | ||
368 | return jerr; | ||
369 | } | ||
370 | |||
371 | @@ -1336,7 +1360,10 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
372 | { | ||
373 | jerr = m_BitStreamIn.Seek(-(m_sos_len + 2)); | ||
374 | if(JPEG_OK != jerr) | ||
375 | + { | ||
376 | + SetDecodeErrorTypes(); | ||
377 | return jerr; | ||
378 | + } | ||
379 | } | ||
380 | else | ||
381 | { | ||
382 | @@ -1355,10 +1382,10 @@ JERRCODE CJPEGDecoderBase::ParseJPEGBitStream(JOPERATION op) | ||
383 | default: | ||
384 | TRC1("-> Unknown marker ",m_marker); | ||
385 | TRC0("..Skipping"); | ||
386 | + SetDecodeErrorTypes(); | ||
387 | jerr = SkipMarker(); | ||
388 | if(JPEG_OK != jerr) | ||
389 | return jerr; | ||
390 | - | ||
391 | break; | ||
392 | } | ||
393 | } | ||
394 | diff --git a/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode.cpp b/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode.cpp | ||
395 | index 01a513e883..0ffcfaf7ab 100644 | ||
396 | --- a/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode.cpp | ||
397 | +++ b/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode.cpp | ||
398 | @@ -378,7 +378,7 @@ Status MJPEGVideoDecoderMFX::DecodeHeader(MediaData* in) | ||
399 | } | ||
400 | } | ||
401 | |||
402 | - Status sts = _GetFrameInfo((uint8_t*)in->GetDataPointer(), in->GetDataSize()); | ||
403 | + Status sts = _GetFrameInfo((uint8_t*)in->GetDataPointer(), in->GetDataSize(), in); | ||
404 | |||
405 | if (sts == UMC_ERR_NOT_ENOUGH_DATA && | ||
406 | (!(in->GetFlags() & MediaData::FLAG_VIDEO_DATA_NOT_FULL_FRAME) || | ||
407 | @@ -937,7 +937,7 @@ Status MJPEGVideoDecoderMFX::PostProcessing(double pts) | ||
408 | return UMC_OK; | ||
409 | } | ||
410 | |||
411 | -Status MJPEGVideoDecoderMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t nSize) | ||
412 | +Status MJPEGVideoDecoderMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t nSize, MediaData *in) | ||
413 | { | ||
414 | int32_t nchannels; | ||
415 | int32_t precision; | ||
416 | @@ -945,6 +945,8 @@ Status MJPEGVideoDecoderMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t nSi | ||
417 | JCOLOR color; | ||
418 | JERRCODE jerr; | ||
419 | |||
420 | + m_dec[0]->SetDecodeErrorReportParam(in); | ||
421 | + | ||
422 | if (!m_IsInit) | ||
423 | return UMC_ERR_NOT_INITIALIZED; | ||
424 | |||
425 | diff --git a/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode_base.cpp b/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode_base.cpp | ||
426 | index 06fd1a681b..3150492ab2 100644 | ||
427 | --- a/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode_base.cpp | ||
428 | +++ b/_studio/shared/umc/codec/jpeg_dec/src/umc_mjpeg_mfx_decode_base.cpp | ||
429 | @@ -322,7 +322,7 @@ Status MJPEGVideoDecoderBaseMFX::DecodeHeader(MediaData* in) | ||
430 | } | ||
431 | } | ||
432 | |||
433 | - Status sts = _GetFrameInfo((uint8_t*)in->GetDataPointer(), in->GetDataSize()); | ||
434 | + Status sts = _GetFrameInfo((uint8_t*)in->GetDataPointer(), in->GetDataSize(), in); | ||
435 | |||
436 | if (sts == UMC_ERR_NOT_ENOUGH_DATA && | ||
437 | (!(in->GetFlags() & MediaData::FLAG_VIDEO_DATA_NOT_FULL_FRAME) || | ||
438 | @@ -345,7 +345,7 @@ Status MJPEGVideoDecoderBaseMFX::SetRotation(uint16_t rotation) | ||
439 | return UMC_OK; | ||
440 | } | ||
441 | |||
442 | -Status MJPEGVideoDecoderBaseMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t nSize) | ||
443 | +Status MJPEGVideoDecoderBaseMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t nSize, MediaData *in) | ||
444 | { | ||
445 | int32_t nchannels; | ||
446 | int32_t precision; | ||
447 | @@ -353,6 +353,8 @@ Status MJPEGVideoDecoderBaseMFX::_GetFrameInfo(const uint8_t* pBitStream, size_t | ||
448 | JCOLOR color; | ||
449 | JERRCODE jerr; | ||
450 | |||
451 | + m_decBase->SetDecodeErrorReportParam(in); | ||
452 | + | ||
453 | if (!m_IsInit) | ||
454 | return UMC_ERR_NOT_INITIALIZED; | ||
455 | |||
456 | diff --git a/api/vpl/mfxstructures.h b/api/vpl/mfxstructures.h | ||
457 | index 879a431602..1bfdaf68c2 100644 | ||
458 | --- a/api/vpl/mfxstructures.h | ||
459 | +++ b/api/vpl/mfxstructures.h | ||
460 | @@ -3520,12 +3520,33 @@ MFX_PACK_END() | ||
461 | |||
462 | /*! The ErrorTypes enumerator uses bit-ORed values to itemize bitstream error types. */ | ||
463 | enum { | ||
464 | - MFX_ERROR_NO = 0, /*!< No error in bitstream. */ | ||
465 | - MFX_ERROR_PPS = (1 << 0), /*!< Invalid/corrupted PPS. */ | ||
466 | - MFX_ERROR_SPS = (1 << 1), /*!< Invalid/corrupted SPS. */ | ||
467 | - MFX_ERROR_SLICEHEADER = (1 << 2), /*!< Invalid/corrupted slice header. */ | ||
468 | - MFX_ERROR_SLICEDATA = (1 << 3), /*!< Invalid/corrupted slice data. */ | ||
469 | - MFX_ERROR_FRAME_GAP = (1 << 4), /*!< Missed frames. */ | ||
470 | + MFX_ERROR_NO = 0, /*!< No error in bitstream. */ | ||
471 | + MFX_ERROR_PPS = (1 << 0), /*!< Invalid/corrupted PPS. */ | ||
472 | + MFX_ERROR_SPS = (1 << 1), /*!< Invalid/corrupted SPS. */ | ||
473 | + MFX_ERROR_SLICEHEADER = (1 << 2), /*!< Invalid/corrupted slice header. */ | ||
474 | + MFX_ERROR_SLICEDATA = (1 << 3), /*!< Invalid/corrupted slice data. */ | ||
475 | + MFX_ERROR_FRAME_GAP = (1 << 4), /*!< Missed frames. */ | ||
476 | + MFX_ERROR_JPEG_APP0_MARKER = (1 << 5), /*!< Invalid/corrupted APP0 marker. */ | ||
477 | + MFX_ERROR_JPEG_APP1_MARKER = (1 << 6), /*!< Invalid/corrupted APP1 marker. */ | ||
478 | + MFX_ERROR_JPEG_APP2_MARKER = (1 << 7), /*!< Invalid/corrupted APP2 marker. */ | ||
479 | + MFX_ERROR_JPEG_APP3_MARKER = (1 << 8), /*!< Invalid/corrupted APP3 marker. */ | ||
480 | + MFX_ERROR_JPEG_APP4_MARKER = (1 << 9), /*!< Invalid/corrupted APP4 marker. */ | ||
481 | + MFX_ERROR_JPEG_APP5_MARKER = (1 << 10), /*!< Invalid/corrupted APP5 marker. */ | ||
482 | + MFX_ERROR_JPEG_APP6_MARKER = (1 << 11), /*!< Invalid/corrupted APP6 marker. */ | ||
483 | + MFX_ERROR_JPEG_APP7_MARKER = (1 << 12), /*!< Invalid/corrupted APP7 marker. */ | ||
484 | + MFX_ERROR_JPEG_APP8_MARKER = (1 << 13), /*!< Invalid/corrupted APP8 marker. */ | ||
485 | + MFX_ERROR_JPEG_APP9_MARKER = (1 << 14), /*!< Invalid/corrupted APP9 marker. */ | ||
486 | + MFX_ERROR_JPEG_APP10_MARKER = (1 << 15), /*!< Invalid/corrupted APP10 marker. */ | ||
487 | + MFX_ERROR_JPEG_APP11_MARKER = (1 << 16), /*!< Invalid/corrupted APP11 marker. */ | ||
488 | + MFX_ERROR_JPEG_APP12_MARKER = (1 << 17), /*!< Invalid/corrupted APP12 marker. */ | ||
489 | + MFX_ERROR_JPEG_APP13_MARKER = (1 << 18), /*!< Invalid/corrupted APP13 marker. */ | ||
490 | + MFX_ERROR_JPEG_APP14_MARKER = (1 << 19), /*!< Invalid/corrupted APP14 marker. */ | ||
491 | + MFX_ERROR_JPEG_DQT_MARKER = (1 << 20), /*!< Invalid/corrupted DQT marker. */ | ||
492 | + MFX_ERROR_JPEG_SOF0_MARKER = (1 << 21), /*!< Invalid/corrupted SOF0 marker. */ | ||
493 | + MFX_ERROR_JPEG_DHT_MARKER = (1 << 22), /*!< Invalid/corrupted DHT marker. */ | ||
494 | + MFX_ERROR_JPEG_DRI_MARKER = (1 << 23), /*!< Invalid/corrupted DRI marker. */ | ||
495 | + MFX_ERROR_JPEG_SOS_MARKER = (1 << 24), /*!< Invalid/corrupted SOS marker. */ | ||
496 | + MFX_ERROR_JPEG_UNKNOWN_MARKER = (1 << 25), /*!< Unknown Marker. */ | ||
497 | }; | ||
498 | |||
499 | MFX_PACK_BEGIN_USUAL_STRUCT() | ||
500 | -- | ||
501 | 2.33.0 | ||
502 | |||
diff --git a/recipes-multimedia/onevpl/onevpl-intel-gpu_21.3.4.bb b/recipes-multimedia/onevpl/onevpl-intel-gpu_21.3.4.bb deleted file mode 100644 index 1fc4c4b2..00000000 --- a/recipes-multimedia/onevpl/onevpl-intel-gpu_21.3.4.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | SUMMARY = "Intel(R) oneVPL runtime for Intel GPU accelerated media processing" | ||
2 | DESCRIPTION = "Intel(R) oneVPL runtime provides an runtime to access hardware-accelerated \ | ||
3 | video decode, encode and filtering on IntelĀ® graphics." | ||
4 | |||
5 | HOMEPAGE = "https://github.com/oneapi-src/oneVPL-intel-gpu" | ||
6 | BUGTRACKER = "https://github.com/oneapi-src/oneVPL-intel-gpu/issues" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb8cb45b9b57dbaa9fcc9adc4230202b" | ||
10 | |||
11 | PE = "1" | ||
12 | |||
13 | # Only for 64 bit | ||
14 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
15 | COMPATIBLE_HOST:x86-x32 = "null" | ||
16 | |||
17 | DEPENDS += "libdrm libva intel-media-driver onevpl pkgconfig-native" | ||
18 | |||
19 | SRC_URI = "git://github.com/oneapi-src/oneVPL-intel-gpu.git;protocol=https;branch=main;lfs=0 \ | ||
20 | file://0001-jpegd-Enable-JPEG-decode-error-report.patch \ | ||
21 | file://0001-Adding-missing-device-ID-4692-for-ADL-S.patch \ | ||
22 | file://0001-HEVCd-Add-frame-info-check-and-update-ChromaFormat-i.patch \ | ||
23 | file://0001-AVCd-Add-frame-info-check-and-update-ChromaFormat-in.patch \ | ||
24 | " | ||
25 | |||
26 | SRCREV = "51608c724044802cc060b7969084126a3e90ca4a" | ||
27 | S = "${WORKDIR}/git" | ||
28 | |||
29 | inherit cmake | ||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-Extends-errorTypes-to-support-JPEG-errors.patch b/recipes-multimedia/onevpl/onevpl/0001-Extends-errorTypes-to-support-JPEG-errors.patch deleted file mode 100644 index 063dd3fb..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-Extends-errorTypes-to-support-JPEG-errors.patch +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
1 | From acdab0d47785f61aa06c1f0955450bf1574f202c Mon Sep 17 00:00:00 2001 | ||
2 | From: Vincent Cheah Beng Keat <vincent.beng.keat.cheah@intel.com> | ||
3 | Date: Tue, 28 Sep 2021 03:06:40 +0000 | ||
4 | Subject: [PATCH] Extends errorTypes to support JPEG errors | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #251 | ||
8 | |||
9 | --- | ||
10 | api/vpl/mfxstructures.h | 33 +++++++++++++++++++++++++++------ | ||
11 | 1 file changed, 27 insertions(+), 6 deletions(-) | ||
12 | |||
13 | diff --git a/api/vpl/mfxstructures.h b/api/vpl/mfxstructures.h | ||
14 | index 9c8dd2b1..a9ccb4ae 100644 | ||
15 | --- a/api/vpl/mfxstructures.h | ||
16 | +++ b/api/vpl/mfxstructures.h | ||
17 | @@ -3546,12 +3546,33 @@ MFX_PACK_END() | ||
18 | |||
19 | /*! The ErrorTypes enumerator uses bit-ORed values to itemize bitstream error types. */ | ||
20 | enum { | ||
21 | - MFX_ERROR_NO = 0, /*!< No error in bitstream. */ | ||
22 | - MFX_ERROR_PPS = (1 << 0), /*!< Invalid/corrupted PPS. */ | ||
23 | - MFX_ERROR_SPS = (1 << 1), /*!< Invalid/corrupted SPS. */ | ||
24 | - MFX_ERROR_SLICEHEADER = (1 << 2), /*!< Invalid/corrupted slice header. */ | ||
25 | - MFX_ERROR_SLICEDATA = (1 << 3), /*!< Invalid/corrupted slice data. */ | ||
26 | - MFX_ERROR_FRAME_GAP = (1 << 4), /*!< Missed frames. */ | ||
27 | + MFX_ERROR_NO = 0, /*!< No error in bitstream. */ | ||
28 | + MFX_ERROR_PPS = (1 << 0), /*!< Invalid/corrupted PPS. */ | ||
29 | + MFX_ERROR_SPS = (1 << 1), /*!< Invalid/corrupted SPS. */ | ||
30 | + MFX_ERROR_SLICEHEADER = (1 << 2), /*!< Invalid/corrupted slice header. */ | ||
31 | + MFX_ERROR_SLICEDATA = (1 << 3), /*!< Invalid/corrupted slice data. */ | ||
32 | + MFX_ERROR_FRAME_GAP = (1 << 4), /*!< Missed frames. */ | ||
33 | + MFX_ERROR_JPEG_APP0_MARKER = (1 << 5), /*!< Invalid/corrupted APP0 marker. */ | ||
34 | + MFX_ERROR_JPEG_APP1_MARKER = (1 << 6), /*!< Invalid/corrupted APP1 marker. */ | ||
35 | + MFX_ERROR_JPEG_APP2_MARKER = (1 << 7), /*!< Invalid/corrupted APP2 marker. */ | ||
36 | + MFX_ERROR_JPEG_APP3_MARKER = (1 << 8), /*!< Invalid/corrupted APP3 marker. */ | ||
37 | + MFX_ERROR_JPEG_APP4_MARKER = (1 << 9), /*!< Invalid/corrupted APP4 marker. */ | ||
38 | + MFX_ERROR_JPEG_APP5_MARKER = (1 << 10), /*!< Invalid/corrupted APP5 marker. */ | ||
39 | + MFX_ERROR_JPEG_APP6_MARKER = (1 << 11), /*!< Invalid/corrupted APP6 marker. */ | ||
40 | + MFX_ERROR_JPEG_APP7_MARKER = (1 << 12), /*!< Invalid/corrupted APP7 marker. */ | ||
41 | + MFX_ERROR_JPEG_APP8_MARKER = (1 << 13), /*!< Invalid/corrupted APP8 marker. */ | ||
42 | + MFX_ERROR_JPEG_APP9_MARKER = (1 << 14), /*!< Invalid/corrupted APP9 marker. */ | ||
43 | + MFX_ERROR_JPEG_APP10_MARKER = (1 << 15), /*!< Invalid/corrupted APP10 marker. */ | ||
44 | + MFX_ERROR_JPEG_APP11_MARKER = (1 << 16), /*!< Invalid/corrupted APP11 marker. */ | ||
45 | + MFX_ERROR_JPEG_APP12_MARKER = (1 << 17), /*!< Invalid/corrupted APP12 marker. */ | ||
46 | + MFX_ERROR_JPEG_APP13_MARKER = (1 << 18), /*!< Invalid/corrupted APP13 marker. */ | ||
47 | + MFX_ERROR_JPEG_APP14_MARKER = (1 << 19), /*!< Invalid/corrupted APP14 marker. */ | ||
48 | + MFX_ERROR_JPEG_DQT_MARKER = (1 << 20), /*!< Invalid/corrupted DQT marker. */ | ||
49 | + MFX_ERROR_JPEG_SOF0_MARKER = (1 << 21), /*!< Invalid/corrupted SOF0 marker. */ | ||
50 | + MFX_ERROR_JPEG_DHT_MARKER = (1 << 22), /*!< Invalid/corrupted DHT marker. */ | ||
51 | + MFX_ERROR_JPEG_DRI_MARKER = (1 << 23), /*!< Invalid/corrupted DRI marker. */ | ||
52 | + MFX_ERROR_JPEG_SOS_MARKER = (1 << 24), /*!< Invalid/corrupted SOS marker. */ | ||
53 | + MFX_ERROR_JPEG_UNKNOWN_MARKER = (1 << 25), /*!< Unknown Marker. */ | ||
54 | }; | ||
55 | |||
56 | MFX_PACK_BEGIN_USUAL_STRUCT() | ||
57 | -- | ||
58 | 2.33.0 | ||
59 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-Fix-basename-build-issue-with-musl_libc.patch b/recipes-multimedia/onevpl/onevpl/0001-Fix-basename-build-issue-with-musl_libc.patch deleted file mode 100644 index 93e5ed0d..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-Fix-basename-build-issue-with-musl_libc.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From d16afe9f9302e4995f12d699019eba170bb6db21 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yew, Chang Ching" <chang.ching.yew@intel.com> | ||
3 | Date: Fri, 8 Oct 2021 08:45:39 +0800 | ||
4 | Subject: [PATCH] Fix basename() build issue with musl_libc | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #264 | ||
8 | |||
9 | Signed-off-by: Yew, Chang Ching <chang.ching.yew@intel.com> | ||
10 | --- | ||
11 | tools/legacy/sample_common/src/vaapi_utils.cpp | 3 ++- | ||
12 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/tools/legacy/sample_common/src/vaapi_utils.cpp b/tools/legacy/sample_common/src/vaapi_utils.cpp | ||
15 | index b69dbe44..9382535a 100644 | ||
16 | --- a/tools/legacy/sample_common/src/vaapi_utils.cpp | ||
17 | +++ b/tools/legacy/sample_common/src/vaapi_utils.cpp | ||
18 | @@ -7,6 +7,7 @@ | ||
19 | #ifdef LIBVA_SUPPORT | ||
20 | |||
21 | #include "vaapi_utils.h" | ||
22 | + #include <libgen.h> | ||
23 | #include <dlfcn.h> | ||
24 | #include <stdexcept> | ||
25 | |||
26 | @@ -26,7 +27,7 @@ SimpleLoader::SimpleLoader(const char* name) { | ||
27 | dlerror(); | ||
28 | so_handle = dlopen(name, RTLD_GLOBAL | RTLD_NOW); | ||
29 | if (NULL == so_handle) { | ||
30 | - so_handle = dlopen(basename(name), RTLD_GLOBAL | RTLD_NOW); | ||
31 | + so_handle = dlopen(basename((char *)name), RTLD_GLOBAL | RTLD_NOW); | ||
32 | if (NULL == so_handle) { | ||
33 | std::cerr << dlerror() << std::endl; | ||
34 | throw std::runtime_error("Can't load library"); | ||
35 | -- | ||
36 | 2.33.0 | ||
37 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-sample_decode-Add-VDSFC-CSC-for-AVC-HEVC.patch b/recipes-multimedia/onevpl/onevpl/0001-sample_decode-Add-VDSFC-CSC-for-AVC-HEVC.patch deleted file mode 100644 index db8baa3e..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-sample_decode-Add-VDSFC-CSC-for-AVC-HEVC.patch +++ /dev/null | |||
@@ -1,132 +0,0 @@ | |||
1 | From f8d87fc857d5bfd69247c985ed82ba88e167ef30 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yew, Chang Ching" <chang.ching.yew@intel.com> | ||
3 | Date: Fri, 9 Jul 2021 13:59:33 +0000 | ||
4 | Subject: [PATCH] sample_decode: Add VDSFC CSC for AVC/HEVC | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #289 | ||
8 | |||
9 | Signed-off-by: Yew, Chang Ching <chang.ching.yew@intel.com> | ||
10 | --- | ||
11 | .../sample_decode/src/pipeline_decode.cpp | 84 +++++++++++++++++-- | ||
12 | 1 file changed, 77 insertions(+), 7 deletions(-) | ||
13 | |||
14 | diff --git a/tools/legacy/sample_decode/src/pipeline_decode.cpp b/tools/legacy/sample_decode/src/pipeline_decode.cpp | ||
15 | index 4dc811c5..d817ff2a 100644 | ||
16 | --- a/tools/legacy/sample_decode/src/pipeline_decode.cpp | ||
17 | +++ b/tools/legacy/sample_decode/src/pipeline_decode.cpp | ||
18 | @@ -765,6 +765,14 @@ bool CDecodingPipeline::IsVppRequired(sInputParams* pParams) { | ||
19 | if (pParams->eDeinterlace) { | ||
20 | bVppIsUsed = true; | ||
21 | } | ||
22 | + | ||
23 | + if ((MODE_DECODER_POSTPROC_AUTO == pParams->nDecoderPostProcessing) || | ||
24 | + (MODE_DECODER_POSTPROC_FORCE == pParams->nDecoderPostProcessing)) { | ||
25 | + /* Decoder will make decision about internal post-processing usage slightly later */ | ||
26 | + if ((pParams->videoType == MFX_CODEC_AVC) || (pParams->videoType == MFX_CODEC_HEVC)) | ||
27 | + bVppIsUsed = false; | ||
28 | + } | ||
29 | + | ||
30 | return bVppIsUsed; | ||
31 | } | ||
32 | |||
33 | @@ -1014,6 +1022,8 @@ mfxStatus CDecodingPipeline::InitMfxParams(sInputParams* pParams) { | ||
34 | if (!m_bVppIsUsed) { | ||
35 | if ((m_mfxVideoParams.mfx.FrameInfo.CropW != pParams->Width && pParams->Width) || | ||
36 | (m_mfxVideoParams.mfx.FrameInfo.CropH != pParams->Height && pParams->Height) || | ||
37 | + (pParams->nDecoderPostProcessing && pParams->videoType == MFX_CODEC_AVC) || | ||
38 | + (pParams->nDecoderPostProcessing && pParams->videoType == MFX_CODEC_HEVC) || | ||
39 | (pParams->nDecoderPostProcessing && pParams->videoType == MFX_CODEC_JPEG && | ||
40 | pParams->fourcc == MFX_FOURCC_RGB4 && | ||
41 | // No need to use decoder's post processing for decoding of JPEG with RGB 4:4:4 | ||
42 | @@ -1027,7 +1037,10 @@ mfxStatus CDecodingPipeline::InitMfxParams(sInputParams* pParams) { | ||
43 | if (((MODE_DECODER_POSTPROC_AUTO == pParams->nDecoderPostProcessing) || | ||
44 | (MODE_DECODER_POSTPROC_FORCE == pParams->nDecoderPostProcessing)) && | ||
45 | (MFX_CODEC_AVC == m_mfxVideoParams.mfx.CodecId || | ||
46 | - MFX_CODEC_JPEG == m_mfxVideoParams.mfx.CodecId) && /* Only for AVC and JPEG */ | ||
47 | + MFX_CODEC_JPEG == m_mfxVideoParams.mfx.CodecId || | ||
48 | + MFX_CODEC_HEVC == m_mfxVideoParams.mfx.CodecId || | ||
49 | + MFX_CODEC_VP9 == m_mfxVideoParams.mfx.CodecId || | ||
50 | + MFX_CODEC_AV1 == m_mfxVideoParams.mfx.CodecId) && | ||
51 | (MFX_PICSTRUCT_PROGRESSIVE == | ||
52 | m_mfxVideoParams.mfx.FrameInfo.PicStruct)) /* ...And only for progressive!*/ | ||
53 | { /* it is possible to use decoder's post-processing */ | ||
54 | @@ -1050,12 +1063,69 @@ mfxStatus CDecodingPipeline::InitMfxParams(sInputParams* pParams) { | ||
55 | |||
56 | decPostProcessing->Out.FourCC = m_mfxVideoParams.mfx.FrameInfo.FourCC; | ||
57 | decPostProcessing->Out.ChromaFormat = m_mfxVideoParams.mfx.FrameInfo.ChromaFormat; | ||
58 | - decPostProcessing->Out.Width = MSDK_ALIGN16(pParams->Width); | ||
59 | - decPostProcessing->Out.Height = MSDK_ALIGN16(pParams->Height); | ||
60 | - decPostProcessing->Out.CropX = 0; | ||
61 | - decPostProcessing->Out.CropY = 0; | ||
62 | - decPostProcessing->Out.CropW = pParams->Width; | ||
63 | - decPostProcessing->Out.CropH = pParams->Height; | ||
64 | + | ||
65 | + if (pParams->videoType == MFX_CODEC_AVC || pParams->videoType == MFX_CODEC_HEVC) { | ||
66 | + switch (pParams->fourcc) { | ||
67 | + case MFX_FOURCC_RGB4: | ||
68 | + decPostProcessing->Out.FourCC = MFX_FOURCC_RGB4; | ||
69 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
70 | + break; | ||
71 | + | ||
72 | + case MFX_FOURCC_NV12: | ||
73 | + decPostProcessing->Out.FourCC = MFX_FOURCC_NV12; | ||
74 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
75 | + break; | ||
76 | + | ||
77 | + case MFX_FOURCC_P010: | ||
78 | + decPostProcessing->Out.FourCC = MFX_FOURCC_P010; | ||
79 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
80 | + break; | ||
81 | + | ||
82 | + case MFX_FOURCC_P016: | ||
83 | + decPostProcessing->Out.FourCC = MFX_FOURCC_P016; | ||
84 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV420; | ||
85 | + break; | ||
86 | + | ||
87 | + case MFX_FOURCC_YUY2: | ||
88 | + decPostProcessing->Out.FourCC = MFX_FOURCC_YUY2; | ||
89 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
90 | + break; | ||
91 | + | ||
92 | + case MFX_FOURCC_Y210: | ||
93 | + decPostProcessing->Out.FourCC = MFX_FOURCC_Y210; | ||
94 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
95 | + break; | ||
96 | + | ||
97 | + case MFX_FOURCC_Y216: | ||
98 | + decPostProcessing->Out.FourCC = MFX_FOURCC_Y216; | ||
99 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV422; | ||
100 | + break; | ||
101 | + | ||
102 | + case MFX_FOURCC_AYUV: | ||
103 | + decPostProcessing->Out.FourCC = MFX_FOURCC_AYUV; | ||
104 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
105 | + break; | ||
106 | + | ||
107 | + case MFX_FOURCC_Y410: | ||
108 | + decPostProcessing->Out.FourCC = MFX_FOURCC_Y410; | ||
109 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
110 | + break; | ||
111 | + | ||
112 | + case MFX_FOURCC_Y416: | ||
113 | + decPostProcessing->Out.FourCC = MFX_FOURCC_Y416; | ||
114 | + decPostProcessing->Out.ChromaFormat = MFX_CHROMAFORMAT_YUV444; | ||
115 | + break; | ||
116 | + | ||
117 | + default: | ||
118 | + break; | ||
119 | + } | ||
120 | + } | ||
121 | + decPostProcessing->Out.Width = MSDK_ALIGN16(pParams->Width); | ||
122 | + decPostProcessing->Out.Height = MSDK_ALIGN16(pParams->Height); | ||
123 | + decPostProcessing->Out.CropX = 0; | ||
124 | + decPostProcessing->Out.CropY = 0; | ||
125 | + decPostProcessing->Out.CropW = pParams->Width; | ||
126 | + decPostProcessing->Out.CropH = pParams->Height; | ||
127 | |||
128 | msdk_printf(MSDK_STRING("Decoder's post-processing is used for resizing\n")); | ||
129 | } | ||
130 | -- | ||
131 | 2.33.1 | ||
132 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-sample_misc-Addin-basic-wayland-dmabuf-support.patch b/recipes-multimedia/onevpl/onevpl/0001-sample_misc-Addin-basic-wayland-dmabuf-support.patch deleted file mode 100644 index 96110ef8..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-sample_misc-Addin-basic-wayland-dmabuf-support.patch +++ /dev/null | |||
@@ -1,90 +0,0 @@ | |||
1 | From 2e2bcb1817f2dc91adf85f5255a4792a6213a74e Mon Sep 17 00:00:00 2001 | ||
2 | From: "Ung, Teng En" <teng.en.ung@intel.com> | ||
3 | Date: Fri, 8 Oct 2021 14:19:40 +0000 | ||
4 | Subject: [PATCH 2/3] sample_misc: Addin basic wayland dmabuf support. | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #269 | ||
8 | |||
9 | --- | ||
10 | .../sample_misc/wayland/include/class_wayland.h | 16 ++++++++++++++++ | ||
11 | .../sample_misc/wayland/src/class_wayland.cpp | 8 ++++++++ | ||
12 | 2 files changed, 24 insertions(+) | ||
13 | |||
14 | diff --git a/tools/legacy/sample_misc/wayland/include/class_wayland.h b/tools/legacy/sample_misc/wayland/include/class_wayland.h | ||
15 | index 564b9b8b..e5267ec2 100644 | ||
16 | --- a/tools/legacy/sample_misc/wayland/include/class_wayland.h | ||
17 | +++ b/tools/legacy/sample_misc/wayland/include/class_wayland.h | ||
18 | @@ -32,6 +32,9 @@ extern "C" { | ||
19 | #include "sample_defs.h" | ||
20 | #include "vpl/mfxstructures.h" | ||
21 | #include "wayland-drm-client-protocol.h" | ||
22 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
23 | + #include "linux-dmabuf-unstable-v1.h" | ||
24 | +#endif | ||
25 | |||
26 | typedef struct buffer wld_buffer; | ||
27 | |||
28 | @@ -93,6 +96,11 @@ public: | ||
29 | struct wl_drm* GetDrm() { | ||
30 | return m_drm; | ||
31 | } | ||
32 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
33 | + struct zwp_linux_dmabuf_v1* GetDMABuf() { | ||
34 | + return m_dmabuf; | ||
35 | + } | ||
36 | +#endif | ||
37 | struct wl_shm* GetShm() { | ||
38 | return m_shm; | ||
39 | }; | ||
40 | @@ -120,6 +128,11 @@ public: | ||
41 | void SetDrm(struct wl_drm* drm) { | ||
42 | m_drm = drm; | ||
43 | } | ||
44 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
45 | + void SetDMABuf(struct zwp_linux_dmabuf_v1* dmabuf) { | ||
46 | + m_dmabuf = dmabuf; | ||
47 | + } | ||
48 | +#endif | ||
49 | void DrmHandleDevice(const char* device); | ||
50 | void DrmHandleAuthenticated(); | ||
51 | void RegistryGlobal(struct wl_registry* registry, | ||
52 | @@ -147,6 +160,9 @@ private: | ||
53 | struct wl_compositor* m_compositor; | ||
54 | struct wl_shell* m_shell; | ||
55 | struct wl_drm* m_drm; | ||
56 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
57 | + struct zwp_linux_dmabuf_v1* m_dmabuf; | ||
58 | +#endif | ||
59 | struct wl_shm* m_shm; | ||
60 | struct wl_shm_pool* m_pool; | ||
61 | struct wl_surface* m_surface; | ||
62 | diff --git a/tools/legacy/sample_misc/wayland/src/class_wayland.cpp b/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
63 | index 65147973..dc2fc718 100644 | ||
64 | --- a/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
65 | +++ b/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
66 | @@ -50,6 +50,9 @@ Wayland::Wayland() | ||
67 | m_compositor(NULL), | ||
68 | m_shell(NULL), | ||
69 | m_drm(NULL), | ||
70 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
71 | + m_dmabuf(NULL), | ||
72 | +#endif | ||
73 | m_shm(NULL), | ||
74 | m_pool(NULL), | ||
75 | m_surface(NULL), | ||
76 | @@ -360,6 +363,11 @@ void Wayland::RegistryGlobal(struct wl_registry* registry, | ||
77 | m_drm = static_cast<wl_drm*>(wl_registry_bind(registry, name, &wl_drm_interface, 2)); | ||
78 | wl_drm_add_listener(m_drm, &drm_listener, this); | ||
79 | } | ||
80 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
81 | + else if(0 == strcmp(interface, "zwp_linux_dmabuf_v1")) | ||
82 | + m_dmabuf = static_cast<zwp_linux_dmabuf_v1*>( | ||
83 | + wl_registry_bind(registry, name, &zwp_linux_dmabuf_v1_interface, version)); | ||
84 | +#endif | ||
85 | } | ||
86 | |||
87 | void Wayland::DrmHandleDevice(const char* name) { | ||
88 | -- | ||
89 | 2.31.1 | ||
90 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-sample_misc-use-wayland-dmabuf-to-render-nv12.patch b/recipes-multimedia/onevpl/onevpl/0001-sample_misc-use-wayland-dmabuf-to-render-nv12.patch deleted file mode 100644 index d061e3ef..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-sample_misc-use-wayland-dmabuf-to-render-nv12.patch +++ /dev/null | |||
@@ -1,94 +0,0 @@ | |||
1 | From 0091d3fea76e64ffbd537b2ae47b8912c89c09d7 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Ung, Teng En" <teng.en.ung@intel.com> | ||
3 | Date: Fri, 8 Oct 2021 14:38:45 +0000 | ||
4 | Subject: [PATCH 3/3] sample_misc: use wayland dmabuf to render nv12 | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #269 | ||
8 | |||
9 | --- | ||
10 | .../sample_misc/wayland/src/class_wayland.cpp | 60 +++++++++++++++---- | ||
11 | 1 file changed, 47 insertions(+), 13 deletions(-) | ||
12 | |||
13 | diff --git a/tools/legacy/sample_misc/wayland/src/class_wayland.cpp b/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
14 | index dc2fc718..d2e7e4e2 100644 | ||
15 | --- a/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
16 | +++ b/tools/legacy/sample_misc/wayland/src/class_wayland.cpp | ||
17 | @@ -26,6 +26,7 @@ or https://software.intel.com/en-us/media-client-solutions-support. | ||
18 | #include <iostream> | ||
19 | extern "C" { | ||
20 | #include <drm.h> | ||
21 | +#include <drm_fourcc.h> | ||
22 | #include <intel_bufmgr.h> | ||
23 | #include <xf86drm.h> | ||
24 | } | ||
25 | @@ -305,20 +306,53 @@ struct wl_buffer* Wayland::CreatePrimeBuffer(uint32_t name, | ||
26 | int32_t offsets[3], | ||
27 | int32_t pitches[3]) { | ||
28 | struct wl_buffer* buffer = NULL; | ||
29 | - if (NULL == m_drm) | ||
30 | - return NULL; | ||
31 | |||
32 | - buffer = wl_drm_create_prime_buffer(m_drm, | ||
33 | - name, | ||
34 | - width, | ||
35 | - height, | ||
36 | - format, | ||
37 | - offsets[0], | ||
38 | - pitches[0], | ||
39 | - offsets[1], | ||
40 | - pitches[1], | ||
41 | - offsets[2], | ||
42 | - pitches[2]); | ||
43 | +#if defined(WAYLAND_LINUX_DMABUF_SUPPORT) | ||
44 | + if (format == WL_DRM_FORMAT_NV12) { | ||
45 | + if(NULL == m_dmabuf) | ||
46 | + return NULL; | ||
47 | + | ||
48 | + struct zwp_linux_buffer_params_v1 *dmabuf_params = NULL; | ||
49 | + int i = 0; | ||
50 | + uint64_t modifier = I915_FORMAT_MOD_Y_TILED; | ||
51 | + | ||
52 | + dmabuf_params = zwp_linux_dmabuf_v1_create_params(m_dmabuf); | ||
53 | + for(i = 0; i < 2; i++) { | ||
54 | + zwp_linux_buffer_params_v1_add(dmabuf_params, | ||
55 | + name, | ||
56 | + i, | ||
57 | + offsets[i], | ||
58 | + pitches[i], | ||
59 | + modifier >> 32, | ||
60 | + modifier & 0xffffffff); | ||
61 | + } | ||
62 | + | ||
63 | + buffer = zwp_linux_buffer_params_v1_create_immed(dmabuf_params, | ||
64 | + width, | ||
65 | + height, | ||
66 | + format, | ||
67 | + 0); | ||
68 | + | ||
69 | + zwp_linux_buffer_params_v1_destroy(dmabuf_params); | ||
70 | + } else | ||
71 | +#endif | ||
72 | + { | ||
73 | + if(NULL == m_drm) | ||
74 | + return NULL; | ||
75 | + | ||
76 | + buffer = wl_drm_create_prime_buffer(m_drm, | ||
77 | + name, | ||
78 | + width, | ||
79 | + height, | ||
80 | + format, | ||
81 | + offsets[0], | ||
82 | + pitches[0], | ||
83 | + offsets[1], | ||
84 | + pitches[1], | ||
85 | + offsets[2], | ||
86 | + pitches[2]); | ||
87 | + } | ||
88 | + | ||
89 | return buffer; | ||
90 | } | ||
91 | |||
92 | -- | ||
93 | 2.31.1 | ||
94 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-samples-Addin-wayland-scanner-auto-generate-on-cmake.patch b/recipes-multimedia/onevpl/onevpl/0001-samples-Addin-wayland-scanner-auto-generate-on-cmake.patch deleted file mode 100644 index 6fab79e5..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-samples-Addin-wayland-scanner-auto-generate-on-cmake.patch +++ /dev/null | |||
@@ -1,98 +0,0 @@ | |||
1 | From 6ef9dd02e297ae20da422f2f3f4f298061efd6e9 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Ung, Teng En" <teng.en.ung@intel.com> | ||
3 | Date: Fri, 15 Oct 2021 11:55:13 +0000 | ||
4 | Subject: [PATCH 1/3] samples: Addin wayland-scanner auto generate on cmake. | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | innersource PR #269 | ||
8 | |||
9 | --- | ||
10 | tools/legacy/sample_common/CMakeLists.txt | 21 ++++++++++ | ||
11 | .../legacy/sample_misc/wayland/CMakeLists.txt | 39 +++++++++++++++++++ | ||
12 | 2 files changed, 60 insertions(+) | ||
13 | |||
14 | diff --git a/tools/legacy/sample_common/CMakeLists.txt b/tools/legacy/sample_common/CMakeLists.txt | ||
15 | index 0ff83aa4..0ed8b390 100644 | ||
16 | --- a/tools/legacy/sample_common/CMakeLists.txt | ||
17 | +++ b/tools/legacy/sample_common/CMakeLists.txt | ||
18 | @@ -92,6 +92,27 @@ if(UNIX) | ||
19 | target_include_directories( | ||
20 | ${TARGET} | ||
21 | PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../sample_misc/wayland/include) | ||
22 | + | ||
23 | + pkg_check_modules(PKG_WAYLAND_SCANNER "wayland-scanner>=1.15") | ||
24 | + pkg_check_modules(PKG_WAYLAND_PROTCOLS "wayland-protocols>=1.15") | ||
25 | + | ||
26 | + if(PKG_WAYLAND_SCANNER_FOUND AND PKG_WAYLAND_PROTCOLS_FOUND) | ||
27 | + pkg_get_variable(WAYLAND_PROTOCOLS_PATH wayland-protocols pkgdatadir) | ||
28 | + if(WAYLAND_PROTOCOLS_PATH) | ||
29 | + find_file( | ||
30 | + WAYLAND_LINUX_DMABUF_XML_PATH linux-dmabuf-unstable-v1.xml | ||
31 | + PATHS ${WAYLAND_PROTOCOLS_PATH}/unstable/linux-dmabuf | ||
32 | + NO_DEFAULT_PATH) | ||
33 | + endif() | ||
34 | + endif() | ||
35 | + | ||
36 | + if(WAYLAND_LINUX_DMABUF_XML_PATH) | ||
37 | + target_compile_definitions( | ||
38 | + ${TARGET} PUBLIC -DWAYLAND_LINUX_DMABUF_SUPPORT) | ||
39 | + target_include_directories( | ||
40 | + ${TARGET} | ||
41 | + PUBLIC ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland) | ||
42 | + endif() | ||
43 | else() | ||
44 | message( | ||
45 | WARNING | ||
46 | diff --git a/tools/legacy/sample_misc/wayland/CMakeLists.txt b/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
47 | index 1fe98da4..01e6029b 100644 | ||
48 | --- a/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
49 | +++ b/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
50 | @@ -29,6 +29,45 @@ target_sources( | ||
51 | ${CMAKE_CURRENT_SOURCE_DIR}/src/listener_wayland.cpp | ||
52 | ${CMAKE_CURRENT_SOURCE_DIR}/src/wayland-drm-protocol.c) | ||
53 | |||
54 | +if(PKG_WAYLAND_SCANNER_FOUND AND PKG_WAYLAND_PROTCOLS_FOUND AND WAYLAND_LINUX_DMABUF_XML_PATH) | ||
55 | + pkg_get_variable(WAYLAND_SCANNER_BIN_PATH wayland-scanner bindir) | ||
56 | + pkg_get_variable(WAYLAND_SCANNER_BIN wayland-scanner wayland_scanner) | ||
57 | + | ||
58 | + if(WAYLAND_SCANNER_BIN_PATH AND WAYLAND_SCANNER_BIN) | ||
59 | + execute_process( | ||
60 | + COMMAND "${WAYLAND_SCANNER_BIN_PATH}\/${WAYLAND_SCANNER_BIN}" | ||
61 | + "client-header" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
62 | + "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.h" | ||
63 | + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
64 | + RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
65 | + if (WAYLAND_SCANNER_RESULT) | ||
66 | + message(ERROR "Failed to generate linux-dmabuf-unstable-v1.h") | ||
67 | + return() | ||
68 | + endif() | ||
69 | + | ||
70 | + execute_process( | ||
71 | + COMMAND "${WAYLAND_SCANNER_BIN_PATH}\/${WAYLAND_SCANNER_BIN}" | ||
72 | + "private-code" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
73 | + "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c" | ||
74 | + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
75 | + RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
76 | + if (WAYLAND_SCANNER_RESULT) | ||
77 | + message(ERROR "Failed to generate linux-dmabuf-unstable-v1.c") | ||
78 | + return() | ||
79 | + endif() | ||
80 | + | ||
81 | + include_directories( | ||
82 | + ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland) | ||
83 | + add_definitions(-DWAYLAND_LINUX_DMABUF_SUPPORT) | ||
84 | + target_sources( | ||
85 | + ${TARGET} | ||
86 | + PRIVATE ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c) | ||
87 | + else() | ||
88 | + message(ERROR "Don't know how to execute wayland-scanner.") | ||
89 | + return() | ||
90 | + endif() | ||
91 | +endif() | ||
92 | + | ||
93 | target_link_libraries(${TARGET} sample_common wayland-client va drm drm_intel) | ||
94 | |||
95 | install(TARGETS ${TARGET} LIBRARY DESTINATION ${_TOOLS_LIB_PATH}) | ||
96 | -- | ||
97 | 2.31.1 | ||
98 | |||
diff --git a/recipes-multimedia/onevpl/onevpl/0001-samples-use-find_program-to-detect-wayland-scanner-i.patch b/recipes-multimedia/onevpl/onevpl/0001-samples-use-find_program-to-detect-wayland-scanner-i.patch deleted file mode 100644 index 6f1ad93e..00000000 --- a/recipes-multimedia/onevpl/onevpl/0001-samples-use-find_program-to-detect-wayland-scanner-i.patch +++ /dev/null | |||
@@ -1,108 +0,0 @@ | |||
1 | From c69500c88058358bdc6c0a036d90b000d63f2a41 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Ung, Teng En" <teng.en.ung@intel.com> | ||
3 | Date: Wed, 3 Nov 2021 14:23:15 +0000 | ||
4 | Subject: [PATCH 4/4] samples: use find_program to detect wayland-scanner in | ||
5 | cmake | ||
6 | |||
7 | Upstream-Status: Submitted | ||
8 | innersource PR #269 | ||
9 | |||
10 | --- | ||
11 | tools/legacy/sample_common/CMakeLists.txt | 4 +- | ||
12 | tools/legacy/sample_misc/wayland/CMakeLists.txt | 59 +++++++++++-------------- | ||
13 | 2 files changed, 28 insertions(+), 35 deletions(-) | ||
14 | |||
15 | diff --git a/tools/legacy/sample_common/CMakeLists.txt b/tools/legacy/sample_common/CMakeLists.txt | ||
16 | index 0ed8b39..658d44d 100644 | ||
17 | --- a/tools/legacy/sample_common/CMakeLists.txt | ||
18 | +++ b/tools/legacy/sample_common/CMakeLists.txt | ||
19 | @@ -93,10 +93,10 @@ if(UNIX) | ||
20 | ${TARGET} | ||
21 | PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../sample_misc/wayland/include) | ||
22 | |||
23 | - pkg_check_modules(PKG_WAYLAND_SCANNER "wayland-scanner>=1.15") | ||
24 | + find_program(WAYLAND_SCANNER_BIN "wayland-scanner") | ||
25 | pkg_check_modules(PKG_WAYLAND_PROTCOLS "wayland-protocols>=1.15") | ||
26 | |||
27 | - if(PKG_WAYLAND_SCANNER_FOUND AND PKG_WAYLAND_PROTCOLS_FOUND) | ||
28 | + if(WAYLAND_SCANNER_BIN AND PKG_WAYLAND_PROTCOLS_FOUND) | ||
29 | pkg_get_variable(WAYLAND_PROTOCOLS_PATH wayland-protocols pkgdatadir) | ||
30 | if(WAYLAND_PROTOCOLS_PATH) | ||
31 | find_file( | ||
32 | diff --git a/tools/legacy/sample_misc/wayland/CMakeLists.txt b/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
33 | index 01e6029..7625bc5 100644 | ||
34 | --- a/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
35 | +++ b/tools/legacy/sample_misc/wayland/CMakeLists.txt | ||
36 | @@ -29,43 +29,36 @@ target_sources( | ||
37 | ${CMAKE_CURRENT_SOURCE_DIR}/src/listener_wayland.cpp | ||
38 | ${CMAKE_CURRENT_SOURCE_DIR}/src/wayland-drm-protocol.c) | ||
39 | |||
40 | -if(PKG_WAYLAND_SCANNER_FOUND AND PKG_WAYLAND_PROTCOLS_FOUND AND WAYLAND_LINUX_DMABUF_XML_PATH) | ||
41 | - pkg_get_variable(WAYLAND_SCANNER_BIN_PATH wayland-scanner bindir) | ||
42 | - pkg_get_variable(WAYLAND_SCANNER_BIN wayland-scanner wayland_scanner) | ||
43 | + if(WAYLAND_SCANNER_BIN AND PKG_WAYLAND_PROTCOLS_FOUND AND WAYLAND_LINUX_DMABUF_XML_PATH) | ||
44 | |||
45 | - if(WAYLAND_SCANNER_BIN_PATH AND WAYLAND_SCANNER_BIN) | ||
46 | - execute_process( | ||
47 | - COMMAND "${WAYLAND_SCANNER_BIN_PATH}\/${WAYLAND_SCANNER_BIN}" | ||
48 | - "client-header" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
49 | - "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.h" | ||
50 | - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
51 | - RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
52 | - if (WAYLAND_SCANNER_RESULT) | ||
53 | - message(ERROR "Failed to generate linux-dmabuf-unstable-v1.h") | ||
54 | - return() | ||
55 | - endif() | ||
56 | - | ||
57 | - execute_process( | ||
58 | - COMMAND "${WAYLAND_SCANNER_BIN_PATH}\/${WAYLAND_SCANNER_BIN}" | ||
59 | - "private-code" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
60 | - "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c" | ||
61 | - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
62 | - RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
63 | - if (WAYLAND_SCANNER_RESULT) | ||
64 | - message(ERROR "Failed to generate linux-dmabuf-unstable-v1.c") | ||
65 | - return() | ||
66 | - endif() | ||
67 | + execute_process( | ||
68 | + COMMAND "${WAYLAND_SCANNER_BIN}" | ||
69 | + "client-header" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
70 | + "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.h" | ||
71 | + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
72 | + RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
73 | + if (WAYLAND_SCANNER_RESULT) | ||
74 | + message(ERROR "Failed to generate linux-dmabuf-unstable-v1.h") | ||
75 | + return() | ||
76 | + endif() | ||
77 | |||
78 | - include_directories( | ||
79 | - ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland) | ||
80 | - add_definitions(-DWAYLAND_LINUX_DMABUF_SUPPORT) | ||
81 | - target_sources( | ||
82 | - ${TARGET} | ||
83 | - PRIVATE ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c) | ||
84 | - else() | ||
85 | - message(ERROR "Don't know how to execute wayland-scanner.") | ||
86 | + execute_process( | ||
87 | + COMMAND "${WAYLAND_SCANNER_BIN}" | ||
88 | + "private-code" "${WAYLAND_LINUX_DMABUF_XML_PATH}" | ||
89 | + "tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c" | ||
90 | + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" | ||
91 | + RESULT_VARIABLE WAYLAND_SCANNER_RESULT) | ||
92 | + if (WAYLAND_SCANNER_RESULT) | ||
93 | + message(ERROR "Failed to generate linux-dmabuf-unstable-v1.c") | ||
94 | return() | ||
95 | endif() | ||
96 | + | ||
97 | + include_directories( | ||
98 | + ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland) | ||
99 | + add_definitions(-DWAYLAND_LINUX_DMABUF_SUPPORT) | ||
100 | + target_sources( | ||
101 | + ${TARGET} | ||
102 | + PRIVATE ${CMAKE_BINARY_DIR}/tools/legacy/sample_misc/wayland/linux-dmabuf-unstable-v1.c) | ||
103 | endif() | ||
104 | |||
105 | target_link_libraries(${TARGET} sample_common wayland-client va drm drm_intel) | ||
106 | -- | ||
107 | 2.7.4 | ||
108 | |||
diff --git a/recipes-multimedia/onevpl/onevpl_2021.6.0.bb b/recipes-multimedia/onevpl/onevpl_2021.6.0.bb deleted file mode 100644 index e586b54e..00000000 --- a/recipes-multimedia/onevpl/onevpl_2021.6.0.bb +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | SUMMARY = "oneAPI Video Processing Library" | ||
2 | DESCRIPTION = "The oneAPI Video Processing Library (oneVPL) provides \ | ||
3 | a single video processing API for encode, decode, and video processing \ | ||
4 | that works across a wide range of accelerators." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/oneapi-src/oneVPL" | ||
7 | LICENSE = "MIT" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c18ea6bb4786a26bf4eee88a7424a408 \ | ||
9 | file://third-party-programs.txt;md5=67727fd253b1b4574cd9eea78a2b0620" | ||
10 | |||
11 | SRC_URI = "git://github.com/oneapi-src/oneVPL.git;protocol=https;branch=master \ | ||
12 | file://0001-Fix-basename-build-issue-with-musl_libc.patch \ | ||
13 | file://0001-Extends-errorTypes-to-support-JPEG-errors.patch \ | ||
14 | file://0001-samples-Addin-wayland-scanner-auto-generate-on-cmake.patch \ | ||
15 | file://0001-sample_misc-Addin-basic-wayland-dmabuf-support.patch \ | ||
16 | file://0001-sample_misc-use-wayland-dmabuf-to-render-nv12.patch \ | ||
17 | file://0001-samples-use-find_program-to-detect-wayland-scanner-i.patch \ | ||
18 | file://0001-sample_decode-Add-VDSFC-CSC-for-AVC-HEVC.patch \ | ||
19 | " | ||
20 | SRCREV = "cdf7444dc971544d148c51e0d93a2df1bb55dda7" | ||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | inherit cmake | ||
24 | DEPENDS += "libva pkgconfig-native" | ||
25 | |||
26 | PACKAGECONFIG ??= "tools" | ||
27 | PACKAGECONFIG[tools] = "-DBUILD_TOOLS=ON, -DBUILD_TOOLS=OFF, wayland wayland-native wayland-protocols" | ||
28 | |||
29 | do_install:append() { | ||
30 | mkdir -p ${D}${datadir}/oneVPL/samples | ||
31 | mv ${D}${bindir}/sample_* ${D}${datadir}/oneVPL/samples | ||
32 | } | ||
33 | |||
34 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
35 | |||
36 | PACKAGES += "${PN}-examples" | ||
37 | |||
38 | FILES:${PN}-examples = "${datadir}/oneVPL/examples \ | ||
39 | " | ||
40 | |||
41 | FILES_SOLIBSDEV = "" | ||
42 | FILES:${PN}-dev += "${libdir}/libvpl.so" | ||
43 | |||
44 | FILES:${PN} += "${datadir} \ | ||
45 | ${libdir}/oneVPL/libvpl_wayland.so \ | ||
46 | " | ||
diff --git a/recipes-multimedia/vpl/files/0001-Add-cstdint-header-to-resolve-build-issue-with-gcc-1.patch b/recipes-multimedia/vpl/files/0001-Add-cstdint-header-to-resolve-build-issue-with-gcc-1.patch new file mode 100644 index 00000000..3158aef6 --- /dev/null +++ b/recipes-multimedia/vpl/files/0001-Add-cstdint-header-to-resolve-build-issue-with-gcc-1.patch | |||
@@ -0,0 +1,34 @@ | |||
1 | From a0fe1b898ba446fdd45ff7fdad18d442140df090 Mon Sep 17 00:00:00 2001 | ||
2 | From: Yogesh Tyagi <yogesh.tyagi@intel.com> | ||
3 | Date: Sun, 11 May 2025 17:21:17 +0530 | ||
4 | Subject: [PATCH] Add cstdint header to resolve build issue with gcc-15 | ||
5 | |||
6 | Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> | ||
7 | |||
8 | Upstream-Status: Submitted [https://github.com/intel/libvpl-tools/pull/7] | ||
9 | --- | ||
10 | tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp | 3 ++- | ||
11 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp b/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp | ||
14 | index 29d4a99..91baf8b 100644 | ||
15 | --- a/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp | ||
16 | +++ b/tools/legacy/sample_vpp/src/sample_vpp_frc_adv.cpp | ||
17 | @@ -5,6 +5,7 @@ | ||
18 | ############################################################################*/ | ||
19 | |||
20 | #include "sample_vpp_frc_adv.h" | ||
21 | +#include <cstdint> | ||
22 | #include <math.h> | ||
23 | #include <algorithm> | ||
24 | #include "vm/strings_defs.h" | ||
25 | @@ -179,4 +180,4 @@ mfxU64 FRCAdvancedChecker::GetExpectedPTS(mfxU32 frameNumber, mfxU64 timeOffset, | ||
26 | |||
27 | } // mfxU64 FRCAdvancedChecker::GetExpectedPTS( mfxU32 frameNumber, mfxU64 timeOffset, mfxU64 timeJump ) | ||
28 | |||
29 | -/* EOF */ | ||
30 | \ No newline at end of file | ||
31 | +/* EOF */ | ||
32 | -- | ||
33 | 2.43.0 | ||
34 | |||
diff --git a/recipes-multimedia/vpl/files/0001-Update-vpl-inspect-to-remove-ReportedStats.patch b/recipes-multimedia/vpl/files/0001-Update-vpl-inspect-to-remove-ReportedStats.patch new file mode 100644 index 00000000..8ccd7e46 --- /dev/null +++ b/recipes-multimedia/vpl/files/0001-Update-vpl-inspect-to-remove-ReportedStats.patch | |||
@@ -0,0 +1,73 @@ | |||
1 | From 39ec70e27cb6887d6b9e6abc231d1052f02c4d9b Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yuan, Jenny" <jenny.yuan@intel.com> | ||
3 | Date: Thu, 13 Feb 2025 11:54:46 -0800 | ||
4 | Subject: [PATCH] Update vpl-inspect to remove ReportedStats | ||
5 | |||
6 | Since experimental API mfxEncoderDescription::encoder::ReportedStats is | ||
7 | going to be removed, update vpl-inspect to remove ReportedStats field | ||
8 | report. | ||
9 | |||
10 | Upstream-Status: Backport [https://github.com/intel/libvpl-tools/commit/39ec70e27cb6887d6b9e6abc231d1052f02c4d9b] | ||
11 | --- | ||
12 | tools/cli/vpl-inspect/src/vpl-inspect.cpp | 38 ----------------------- | ||
13 | 1 file changed, 38 deletions(-) | ||
14 | |||
15 | diff --git a/tools/cli/vpl-inspect/src/vpl-inspect.cpp b/tools/cli/vpl-inspect/src/vpl-inspect.cpp | ||
16 | index e872316..b6e302f 100644 | ||
17 | --- a/tools/cli/vpl-inspect/src/vpl-inspect.cpp | ||
18 | +++ b/tools/cli/vpl-inspect/src/vpl-inspect.cpp | ||
19 | @@ -113,22 +113,6 @@ const char *_print_MediaAdapterType(mfxMediaAdapterType type) { | ||
20 | return "<unknown media adapter type>"; | ||
21 | } | ||
22 | |||
23 | -#ifdef ONEVPL_EXPERIMENTAL | ||
24 | -const char *_print_EncodeStatsType(mfxU16 type) { | ||
25 | - switch (type) { | ||
26 | - STRING_OPTION(MFX_ENCODESTATS_LEVEL_BLK); | ||
27 | - STRING_OPTION(MFX_ENCODESTATS_LEVEL_SLICE); | ||
28 | - STRING_OPTION(MFX_ENCODESTATS_LEVEL_TILE); | ||
29 | - STRING_OPTION(MFX_ENCODESTATS_LEVEL_FRAME); | ||
30 | - | ||
31 | - default: | ||
32 | - break; | ||
33 | - } | ||
34 | - | ||
35 | - return "<unknown encode stats type>"; | ||
36 | -} | ||
37 | -#endif | ||
38 | - | ||
39 | #ifdef ONEVPL_EXPERIMENTAL | ||
40 | const char *_print_SurfaceType(mfxSurfaceType type) { | ||
41 | switch (type) { | ||
42 | @@ -549,28 +533,6 @@ int main(int argc, char *argv[]) { | ||
43 | "", | ||
44 | enc->Codecs[codec].BiDirectionalPrediction); | ||
45 | |||
46 | -#ifdef ONEVPL_EXPERIMENTAL | ||
47 | - // Once ReportedStats is moved out of experimental API the struct version of mfxEncoderDescription should | ||
48 | - // be updated, and that can be used to know whether this field is valid. | ||
49 | - // For now, just check implementation API version. | ||
50 | - mfxVersion reqApiVersionReportedStats = {}; | ||
51 | - reqApiVersionReportedStats.Major = 2; | ||
52 | - reqApiVersionReportedStats.Minor = 7; | ||
53 | - if (idesc->ApiVersion.Version >= reqApiVersionReportedStats.Version) { | ||
54 | - mfxU16 reportedStats = enc->Codecs[codec].ReportedStats; | ||
55 | - if (reportedStats) { | ||
56 | - for (mfxU16 statMask = 1; statMask != 0; statMask <<= 1) { | ||
57 | - if (reportedStats & statMask) { | ||
58 | - const char *statStr = _print_EncodeStatsType(statMask); | ||
59 | - printf("%4sReportedStats: %s\n", "", statStr); | ||
60 | - } | ||
61 | - } | ||
62 | - } | ||
63 | - else { | ||
64 | - printf("%4sReportedStats: 0\n", ""); | ||
65 | - } | ||
66 | - } | ||
67 | -#endif | ||
68 | for (int profile = 0; profile < enc->Codecs[codec].NumProfiles; profile++) { | ||
69 | printf("%6sProfile: %s\n", | ||
70 | "", | ||
71 | -- | ||
72 | 2.43.0 | ||
73 | |||
diff --git a/recipes-multimedia/vpl/files/0001-vpl.pc.in-dont-pass-pcfiledir-to-cflags.patch b/recipes-multimedia/vpl/files/0001-vpl.pc.in-dont-pass-pcfiledir-to-cflags.patch new file mode 100644 index 00000000..f9a568a7 --- /dev/null +++ b/recipes-multimedia/vpl/files/0001-vpl.pc.in-dont-pass-pcfiledir-to-cflags.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From ff715f4c543ddabc5c90160d0ae5c5598e8e1289 Mon Sep 17 00:00:00 2001 | ||
2 | From: Markus Volk <f_l_k@t-online.de> | ||
3 | Date: Thu, 15 Jun 2023 13:43:32 +0200 | ||
4 | Subject: [PATCH] vpl.pc.in: dont pass pcfiledir to cflags | ||
5 | |||
6 | Signed-off-by: Markus Volk <f_l_k@t-online.de> | ||
7 | |||
8 | Upstream-Status: Inappropriate [oe specific] | ||
9 | --- | ||
10 | libvpl/pkgconfig/vpl.pc.in | 4 ++-- | ||
11 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
12 | |||
13 | diff --git a/libvpl/pkgconfig/vpl.pc.in b/libvpl/pkgconfig/vpl.pc.in | ||
14 | index aa9b158..b4e85ff 100644 | ||
15 | --- a/libvpl/pkgconfig/vpl.pc.in | ||
16 | +++ b/libvpl/pkgconfig/vpl.pc.in | ||
17 | @@ -7,6 +7,6 @@ Description: Accelerated video decode, encode, and frame processing capabilities | ||
18 | Version: @API_VERSION_MAJOR@.@API_VERSION_MINOR@ | ||
19 | URL: https://github.com/intel/libvpl | ||
20 | |||
21 | -Libs: -L${libdir} -l@OUTPUT_NAME@ @VPL_PKGCONFIG_DEPENDENT_LIBS@ | ||
22 | +Libs: -L@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -l@OUTPUT_NAME@ @VPL_PKGCONFIG_DEPENDENT_LIBS@ | ||
23 | Libs.private: @VPL_PKGCONFIG_PRIVATE_LIBS@ | ||
24 | -Cflags: -I${includedir} -I${includedir}/vpl | ||
25 | +Cflags: -I@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@ -I@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/vpl | ||
diff --git a/recipes-multimedia/vpl/libvpl-tools_1.3.0.bb b/recipes-multimedia/vpl/libvpl-tools_1.3.0.bb new file mode 100644 index 00000000..e89a9d46 --- /dev/null +++ b/recipes-multimedia/vpl/libvpl-tools_1.3.0.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | SUMMARY = "Intel Video Processing Library Tools" | ||
2 | DESCRIPTION = "Intel Video Processing Library (VPL) Tools provides \ | ||
3 | access to hardware accelerated video decode, encode and video processing \ | ||
4 | capabilities on IntelĀ® GPUs use cases." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/intel/libvpl-tools" | ||
7 | LICENSE = "MIT" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c18ea6bb4786a26bf4eee88a7424a408 \ | ||
9 | file://third-party-programs.txt;md5=ddf05049184e74942f45b0ca4cc69b8a" | ||
10 | |||
11 | SRC_URI = "git://github.com/intel/libvpl-tools.git;protocol=https;branch=main \ | ||
12 | file://0001-Update-vpl-inspect-to-remove-ReportedStats.patch \ | ||
13 | file://0001-Add-cstdint-header-to-resolve-build-issue-with-gcc-1.patch \ | ||
14 | " | ||
15 | |||
16 | SRCREV = "82eab13ecec99f34e0f1d5dac490611b604406c9" | ||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | inherit cmake | ||
20 | DEPENDS += "libva libvpl pkgconfig-native" | ||
21 | |||
22 | PACKAGECONFIG ??= "tools" | ||
23 | PACKAGECONFIG[tools] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native wayland-protocols" | ||
24 | |||
25 | do_install:append() { | ||
26 | mkdir -p ${D}${datadir}/VPL/samples | ||
27 | mv ${D}${bindir}/sample_* ${D}${datadir}/VPL/samples | ||
28 | mv ${D}${bindir}/metrics_monitor ${D}${datadir}/VPL/samples | ||
29 | } | ||
30 | |||
31 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
32 | |||
33 | FILES_SOLIBSDEV = "" | ||
34 | |||
35 | FILES:${PN} += " ${datadir}/VPL/samples \ | ||
36 | ${libdir}/libcttmetrics.so \ | ||
37 | ${libdir}/vpl-tools/libvpl_wayland.* \ | ||
38 | " | ||
39 | |||
40 | FILES:${PN}-dev += "${libdir}/vpl-tools/libvpl_wayland.so \ | ||
41 | " | ||
42 | |||
43 | FILES:${PN}-doc += " ${datadir}/vpl-tools \ | ||
44 | " | ||
diff --git a/recipes-multimedia/vpl/libvpl_2.14.0.bb b/recipes-multimedia/vpl/libvpl_2.14.0.bb new file mode 100644 index 00000000..d52ca076 --- /dev/null +++ b/recipes-multimedia/vpl/libvpl_2.14.0.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | SUMMARY = "Intel Video Processing Library" | ||
2 | DESCRIPTION = "Intel Video Processing Library (VPL) provides \ | ||
3 | a single video processing API for encode, decode, and video processing \ | ||
4 | that works across a wide range of accelerators." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/intel/libvpl" | ||
7 | LICENSE = "MIT" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c18ea6bb4786a26bf4eee88a7424a408 \ | ||
9 | file://third-party-programs.txt;md5=ddf05049184e74942f45b0ca4cc69b8a" | ||
10 | |||
11 | SRC_URI = "git://github.com/intel/libvpl.git;protocol=https;branch=main \ | ||
12 | file://0001-vpl.pc.in-dont-pass-pcfiledir-to-cflags.patch \ | ||
13 | " | ||
14 | SRCREV = "025d43d086a3e663184cb49febe86152bf05409f" | ||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit cmake | ||
18 | DEPENDS += "libva pkgconfig-native" | ||
19 | |||
20 | PACKAGECONFIG ??= "tools" | ||
21 | PACKAGECONFIG[tools] = "-DBUILD_TOOLS=ON, -DBUILD_TOOLS=OFF, wayland wayland-native wayland-protocols" | ||
22 | |||
23 | EXTRA_OECMAKE = "-DBUILD_EXAMPLES=ON" | ||
24 | |||
25 | do_install:append() { | ||
26 | mkdir -p ${D}${datadir}/VPL/samples | ||
27 | mv ${D}${bindir}/hello-* ${D}${datadir}/VPL/samples | ||
28 | } | ||
29 | |||
30 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
31 | |||
32 | PACKAGES =+ "${PN}-examples" | ||
33 | |||
34 | RREPLACES:${PN} = "onevpl" | ||
35 | RCONFLICTS:${PN} = "onevpl" | ||
36 | |||
37 | FILES:${PN}-examples = "${datadir}/vpl \ | ||
38 | " | ||
39 | |||
40 | FILES_SOLIBSDEV = "" | ||
41 | FILES:${PN}-dev += "${libdir}/libvpl.so" | ||
42 | |||
43 | FILES:${PN} += " ${datadir}/VPL/samples \ | ||
44 | " | ||
diff --git a/recipes-multimedia/vpl/vpl-gpu-rt_25.1.4.bb b/recipes-multimedia/vpl/vpl-gpu-rt_25.1.4.bb new file mode 100644 index 00000000..d182ce53 --- /dev/null +++ b/recipes-multimedia/vpl/vpl-gpu-rt_25.1.4.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Intel(R) oneVPL runtime for Intel GPU accelerated media processing" | ||
2 | DESCRIPTION = "Intel(R) oneVPL runtime provides an runtime to access hardware-accelerated \ | ||
3 | video decode, encode and filtering on IntelĀ® graphics." | ||
4 | |||
5 | HOMEPAGE = "https://github.com/intel/vpl-gpu-rt" | ||
6 | BUGTRACKER = "https://github.com/intel/vpl-gpu-rt/issues" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb8cb45b9b57dbaa9fcc9adc4230202b" | ||
10 | |||
11 | PE = "1" | ||
12 | |||
13 | # Only for 64 bit | ||
14 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
15 | COMPATIBLE_HOST:x86-x32 = "null" | ||
16 | |||
17 | DEPENDS += "libdrm libva intel-media-driver libvpl pkgconfig-native" | ||
18 | RDEPENDS:${PN} += "intel-media-driver" | ||
19 | |||
20 | SRC_URI = "git://github.com/intel/vpl-gpu-rt.git;protocol=https;nobranch=1;lfs=0 \ | ||
21 | " | ||
22 | |||
23 | SRCREV = "c65990e456acf901597a76b22407232679152547" | ||
24 | S = "${WORKDIR}/git" | ||
25 | |||
26 | FILES:${PN} += " \ | ||
27 | ${libdir}/libmfx-gen/enctools.so \ | ||
28 | " | ||
29 | |||
30 | inherit cmake | ||
31 | |||
32 | RREPLACES:${PN} = "onevpl-intel-gpu" | ||
33 | RCONFLICTS:${PN} = "onevpl-intel-gpu" | ||