The branch, master has been updated
via c373636f554579340c7b1f46c42cc3a6989a7da6 (commit)
from 61835e1d8be9ace611e82b64f136a50f191a6e25 (commit)
- Log -----------------------------------------------------------------
commit c373636f554579340c7b1f46c42cc3a6989a7da6
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Thu Sep 18 03:54:51 2025 +0200
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Thu Sep 18 03:55:54 2025 +0200
avfilter/vsrc_gfxcapture: fix string format specifier
Signed-off-by: Kacper MichajÅow <[email protected]>
diff --git a/libavfilter/vsrc_gfxcapture_winrt.cpp
b/libavfilter/vsrc_gfxcapture_winrt.cpp
index 1738fa23af..9cc38342b7 100644
--- a/libavfilter/vsrc_gfxcapture_winrt.cpp
+++ b/libavfilter/vsrc_gfxcapture_winrt.cpp
@@ -603,7 +603,7 @@ static void wgc_thread_entry(AVFilterContext *avctx)
noexcept
{
static const wchar_t name_prefix[] = L"wgc_winrt@0x";
wchar_t thread_name[FF_ARRAY_ELEMS(name_prefix) + sizeof(void*) * 2] =
{ 0 };
- swprintf(thread_name, FF_ARRAY_ELEMS(thread_name), L"%s%" PRIxPTR,
name_prefix, (uintptr_t)avctx);
+ swprintf(thread_name, FF_ARRAY_ELEMS(thread_name), L"%ls%" PRIxPTR,
name_prefix, (uintptr_t)avctx);
ctx->fn.SetThreadDescription(GetCurrentThread(), thread_name);
std::lock_guard init_lock(ctx->wgc_thread_init_mutex);
-----------------------------------------------------------------------
Summary of changes:
libavfilter/vsrc_gfxcapture_winrt.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]