-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* --enable-avresample is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/420cedd49745 * SHADERC replaces GLSLANG per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/da72aca7b025 * VULKAN is enabled per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/fa2e460f635 * LIBPLACEBO is enabled to have even more Vulkan goodies * LCMS2 is enabled for better ICC profile support * JXL is enabled for mpv-player/mpv@1345977f9976 Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n6.0:/Changelog PR: 261302 Reported by: Repology Exp-run by: antoine Approved by: tcberner
- Loading branch information
Showing
6 changed files
with
93 additions
and
1,438 deletions.
There are no files selected for viewing
This file contains 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 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 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,14 @@ | ||
pthread_setname_np is implemented on top of PR_SET_NAME on Linux | ||
and is also available on DragonFly, FreeBSD and Solaris | ||
|
||
--- libavutil/thread.h.orig 2023-02-27 20:43:45 UTC | ||
+++ libavutil/thread.h | ||
@@ -196,6 +196,8 @@ static inline int ff_thread_setname(const char *name) | ||
{ | ||
#if HAVE_PRCTL | ||
return AVERROR(prctl(PR_SET_NAME, name)); | ||
+#elif HAVE_PTHREADS | ||
+ return AVERROR(pthread_setname_np(pthread_self(), name)); | ||
#endif | ||
|
||
return AVERROR(ENOSYS); |
Oops, something went wrong.