From 11602bc93341e8643878810d65d6a414c60b1ac7 Mon Sep 17 00:00:00 2001 From: pkv Date: Mon, 5 Oct 2020 03:20:30 -0700 Subject: [PATCH] coreaudio-encoder: Fix path on windows The path of coreaudio dll has changed in current versions of iTunes on windows. The patch fixes the issue while keeping compatibility with previous path. Fixes obsproject/obs-studio#3503 --- plugins/coreaudio-encoder/windows-imports.h | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/coreaudio-encoder/windows-imports.h b/plugins/coreaudio-encoder/windows-imports.h index a79148e28..7bf4c19c4 100644 --- a/plugins/coreaudio-encoder/windows-imports.h +++ b/plugins/coreaudio-encoder/windows-imports.h @@ -404,6 +404,7 @@ static bool load_lib(void) path_list_t path_list[] = { {FOLDERID_ProgramFilesCommon, L"Apple\\Apple Application Support"}, + {FOLDERID_ProgramFiles, L"iTunes"}, }; for (auto &val : path_list) {