0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

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
This commit is contained in:
pkv 2020-10-05 03:20:30 -07:00 committed by Jim
parent 1b5a331c56
commit 11602bc933

View File

@ -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) {