-
Notifications
You must be signed in to change notification settings - Fork 4
RDI-3509 Syncronize gstreamer #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
96604a1
guw: Synchronize gstreamer with upstream
cfoch c33dad3
recipes: lcevcdec: Add fixes needed after gstreamer upstream sync
cfoch eaca18b
ci: llvm: Build llvm with libs
cfoch 3564ff9
ci: cerbero: Ensure cleared cache before build
cfoch 1087e22
ci: trigger build-llvm workflow manually only
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
build/recipes/lcevc_dec/0001-convert-Use-planeConvertGetFunctionScalar.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| From 56c7abf845736d15ca982855647e370958b46fa2 Mon Sep 17 00:00:00 2001 | ||
| From: Fabian Orccon <cfoch.fabian@gmail.com> | ||
| Date: Fri, 8 May 2026 13:32:11 +0200 | ||
| Subject: [PATCH] convert: Use planeConvertGetFunctionScalar | ||
|
|
||
| --- | ||
| src/pixel_processing/src/convert.c | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
|
||
| diff --git a/src/pixel_processing/src/convert.c b/src/pixel_processing/src/convert.c | ||
| index 57c47ef..707d722 100644 | ||
| --- a/src/pixel_processing/src/convert.c | ||
| +++ b/src/pixel_processing/src/convert.c | ||
| @@ -109,7 +109,7 @@ bool ldppPlaneConvert(LdcTaskPool* taskPool, LdcTask* parent, const uint32_t pla | ||
| } | ||
|
|
||
| const LdppConvertSlicedJobContext slicedJobContext = { | ||
| - planeConvertGetFunction(srcLayout->layoutInfo->fixedPoint, | ||
| + planeConvertGetFunctionScalar(srcLayout->layoutInfo->fixedPoint, | ||
| dstLayout->layoutInfo->fixedPoint, planeIndex, isNV12), | ||
| *srcPlane, | ||
| *dstPlane, | ||
| -- | ||
| 2.43.0 | ||
|
|
||
63 changes: 0 additions & 63 deletions
63
build/recipes/lcevc_dec/0001-emscripten-Fix-js-output.patch
This file was deleted.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
build/recipes/lcevc_dec/0001-threading-wasm-Fix-compilation-error-because-of-unde.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| From e87e7f9169b2f177646fc8d342c4df67badbe88a Mon Sep 17 00:00:00 2001 | ||
| From: Fabian Orccon <cfoch.fabian@gmail.com> | ||
| Date: Thu, 7 May 2026 16:02:38 +0200 | ||
| Subject: [PATCH] threading: wasm: Fix compilation error because of undefined | ||
| variable | ||
|
|
||
| Prevents | ||
| --- | ||
| src/api_utility/src/threading.cpp | 4 +++- | ||
| 1 file changed, 3 insertions(+), 1 deletion(-) | ||
|
|
||
| diff --git a/src/api_utility/src/threading.cpp b/src/api_utility/src/threading.cpp | ||
| index aad21d5..20ac841 100644 | ||
| --- a/src/api_utility/src/threading.cpp | ||
| +++ b/src/api_utility/src/threading.cpp | ||
| @@ -65,7 +65,8 @@ bool setThreadName(std::string_view name) | ||
| if (!name.empty()) { | ||
| #if defined(__EMSCRIPTEN__) | ||
| return true; // Don't set thread name in wasms | ||
| -#elif defined(__ANDROID__) || defined(__linux__) | ||
| +#else | ||
| +#if defined(__ANDROID__) || defined(__linux__) | ||
| const int res = pthread_setname_np(pthread_self(), name.data()); | ||
| #else // i.e. Apple | ||
| const int res = pthread_setname_np(name.data()); | ||
| @@ -73,6 +74,7 @@ bool setThreadName(std::string_view name) | ||
| if (res != 0) { | ||
| return false; | ||
| } | ||
| +#endif | ||
| } | ||
| return true; | ||
| } | ||
| -- | ||
| 2.43.0 | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.