Skip to content

Commit

Permalink
Fix mistake in first parameter type in function pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
padenot committed Mar 20, 2024
1 parent aaffe75 commit 1eb7e68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cubeb_wasapi.cpp
Expand Up @@ -205,7 +205,7 @@ struct auto_stream_ref {
};

using set_mm_thread_characteristics_function =
decltype(&AvSetMmThreadCharacteristicsA);
decltype(&AvSetMmThreadCharacteristicsW);
using revert_mm_thread_characteristics_function =
decltype(&AvRevertMmThreadCharacteristics);

Expand Down Expand Up @@ -1414,7 +1414,7 @@ static unsigned int __stdcall wasapi_stream_render_loop(LPVOID stream)
/* We could consider using "Pro Audio" here for WebAudio and
maybe WebRTC. */
mmcss_handle =
stm->context->set_mm_thread_characteristics("Audio", &mmcss_task_index);
stm->context->set_mm_thread_characteristics(L"Audio", &mmcss_task_index);
if (!mmcss_handle) {
/* This is not fatal, but we might glitch under heavy load. */
LOG("Unable to use mmcss to bump the render thread priority: %lx",
Expand Down Expand Up @@ -1536,7 +1536,7 @@ void
wasapi_destroy(cubeb * context);

HANDLE WINAPI
set_mm_thread_characteristics_noop(const char *, LPDWORD mmcss_task_index)
set_mm_thread_characteristics_noop(LPCWSTR, LPDWORD mmcss_task_index)
{
return (HANDLE)1;
}
Expand Down

0 comments on commit 1eb7e68

Please sign in to comment.