osxmidi / LinVst

Linux Windows vst wrapper/bridge
GNU General Public License v3.0
674 stars 41 forks source link

Waves CLA-76 only outputs a big crackle #169

Closed cshao06 closed 3 years ago

cshao06 commented 3 years ago

I'm using V12 Waves Central and plugins. After some hack with powershell, I was able to install Waves Central and some Waves plugins. I then tried all the VST bridging programs to wrap the "WavesShell2-VST 12.0_x64.dll" and only LinVst could work.

Most of the plugins run well in REAPER, except CLA-76, which only outputs a big crackle. Its GUI works fine though. I have tried to compile with wavesthread = 0 in lin-vst-server.cpp as suggested in another issue but even the GUI wouldn't work any more.

testvst.exe gives the following output.

>>> env WINEDEBUG=warn+module WINEPREFIX="${HOME}/wine/waves" ./testvst.exe ~/wine/waves/drive_c/Program\ Files/VSTPlugIns/WaveShell2-VST\ 12.0_x64.dll
0b48:warn:module:dlopen_dll failed to load .so lib "/home/<user>/wine/waves/dosdevices/z:/home/<user>/repos/LinVst/TestVst/testvst.exe.so": /home/<user>/wine/waves/dosdevices/z:/home/<user>/repos/LinVst/TestVst/testvst.exe.so: wrong ELF class: ELFCLASS64
0b48:warn:module:load_so_dll failed to load .so lib L"\\??\\Z:\\home\\<user>\\repos\\LinVst\\TestVst\\testvst.exe.so"
0b48:warn:module:load_dll Failed to load module L"Z:\\home\\<user>\\repos\\LinVst\\TestVst\\testvst.exe.so"; status=c000012f
LinVst Vst Test: "/home/<user>/wine/waves/drive_c/Program Files/VSTPlugIns/WaveShell2-VST 12.0_x64.dll"
0238:warn:module:load_builtin_dll cannot find builtin library for L"WaveShell2-VST 12.0_x64.dll"
0238:warn:module:import_dll No implementation for ole32.dll.RoGetAgileReference imported from L"C:\\Program Files\\VSTPlugIns\\WaveShell2-VST 12.0_x64.dll", setting to 0000000000810000
0238:fixme:win:RegisterTouchWindow (00000000004800C2 00000002): stub
0238:warn:module:load_builtin_dll cannot find builtin library for L"InnerProcessDictionary_x64.dll"
AEffectError

I installed ole32 with winetricks but it didn't help.

osxmidi commented 3 years ago

I'm using V12 Waves Central and plugins. After some hack with powershell, I was able to install Waves Central and some Waves plugins. I then tried all the VST bridging programs to wrap the "WavesShell2-VST 12.0_x64.dll" and only LinVst could work.

Most of the plugins run well in REAPER, except CLA-76, which only outputs a big crackle. Its GUI works fine though. I have tried to compile with wavesthread = 0 in lin-vst-server.cpp as suggested in another issue but even the GUI wouldn't work any more.

testvst.exe gives the following output.

>>> env WINEDEBUG=warn+module WINEPREFIX="${HOME}/wine/waves" ./testvst.exe ~/wine/waves/drive_c/Program\ Files/VSTPlugIns/WaveShell2-VST\ 12.0_x64.dll
0b48:warn:module:dlopen_dll failed to load .so lib "/home/<user>/wine/waves/dosdevices/z:/home/<user>/repos/LinVst/TestVst/testvst.exe.so": /home/<user>/wine/waves/dosdevices/z:/home/<user>/repos/LinVst/TestVst/testvst.exe.so: wrong ELF class: ELFCLASS64
0b48:warn:module:load_so_dll failed to load .so lib L"\\??\\Z:\\home\\<user>\\repos\\LinVst\\TestVst\\testvst.exe.so"
0b48:warn:module:load_dll Failed to load module L"Z:\\home\\<user>\\repos\\LinVst\\TestVst\\testvst.exe.so"; status=c000012f
LinVst Vst Test: "/home/<user>/wine/waves/drive_c/Program Files/VSTPlugIns/WaveShell2-VST 12.0_x64.dll"
0238:warn:module:load_builtin_dll cannot find builtin library for L"WaveShell2-VST 12.0_x64.dll"
0238:warn:module:import_dll No implementation for ole32.dll.RoGetAgileReference imported from L"C:\\Program Files\\VSTPlugIns\\WaveShell2-VST 12.0_x64.dll", setting to 0000000000810000
0238:fixme:win:RegisterTouchWindow (00000000004800C2 00000002): stub
0238:warn:module:load_builtin_dll cannot find builtin library for L"InnerProcessDictionary_x64.dll"
AEffectError

I installed ole32 with winetricks but it didn't help.

Hi,

That's the first I've heard of Powershell working with Waves Central.

How did you get Powershell working?

wavesthread is a flag that enables some Waves plugins workarounds (for a Windows message queue Waves bug) so I wouldn't recommend changing it.

I'd have to somehow install the Waves CLA-76 and test it out, but I've never been able to since Waves Central changed to Powershell, so if you could give me some tips on how to possibly get Powershell working then I'll try to see what the problem is.

cshao06 commented 3 years ago

Thanks for the timely reply. It's a bit tricky to get powershell work. I'm having a lengthy discussion with coolblinger (the author of yabridge) on reddit, if you are interested. They are trying to help me get Waves work with yabridge.

Basically, on top of the description in the Waves folder's README, you also need to install powershell from here. When I run the Waves Central installer, it would fail but it installs something in Program Files/Waves Central. Then I just run Waves Central.exe in that folder and that will fail at the permissionFixer.

To fix the permission of the folders, I first looked at the logs in drive_c/users//Application\ Data/Waves\ Audio/Waves\ Central/Logs/permissionFixer. I saw the exact folder that it failed at. Then I launched the powershell in the wine prefix and use Get-Acl and Set-Acl to fix the acl of the faulty folders.

Then run the Central app again, see what folder failed and fix it. Keep going until they are all fixed. I use this command: Get-Acl -Path "path_to_a_good_folder" | Set-Acl -Path "path_to_bad_folder" in powershell (wine powershell to launch a powershell).

Coolblinger has a cleaner way to do that.

After Central runs, I can download and install plugins without problem. I'm actually using linvstmanager as a GUI for all linvst series bridges. That shouldn't make any difference though. I'm also using an Arch based instead of Debian based system.

osxmidi commented 3 years ago

Thanks for the timely reply. It's a bit tricky to get powershell work. I'm having a lengthy discussion with coolblinger (the author of yabridge) on reddit, if you are interested. They are trying to help me get Waves work with yabridge.

Basically, on top of the description in the Waves folder's README, you also need to install powershell from here. When I run the Waves Central installer, it would fail but it installs something in Program Files/Waves Central. Then I just run Waves Central.exe in that folder and that will fail at the permissionFixer.

To fix the permission of the folders, I first looked at the logs in drive_c/users//Application\ Data/Waves\ Audio/Waves\ Central/Logs/permissionFixer. I saw the exact folder that it failed at. Then I launched the powershell in the wine prefix and use Get-Acl and Set-Acl to fix the acl of the faulty folders.

Then run the Central app again, see what folder failed and fix it. Keep going until they are all fixed. I use this command: Get-Acl -Path "path_to_a_good_folder" | Set-Acl -Path "path_to_bad_folder" in powershell (wine powershell to launch a powershell).

Coolblinger has a cleaner way to do that.

After Central runs, I can download and install plugins without problem. I'm actually using linvstmanager as a GUI for all linvst series bridges. That shouldn't make any difference though. I'm also using an Arch based instead of Debian based system.

ok, thanks.

I'll play around with it and see what happens.

osxmidi commented 3 years ago

I can't get Powershell working with MX Linux (Debian Buster) at the moment and I'm away from my other systems.

Waves CLA-76 used to work with LinVst/Reaper (SuperEB's post) https://forum.cockos.com/showthread.php?t=217855

Maybe it's a waves license issue.

It might be a Wine problem, what Wine version are you using?

A couple of things,

If Reaper is started from the terminal, then LinVst will output any errors to the terminal, so maybe that will give a clue about what is happening.

The other thing is to maybe enable double precision by adding -DDOUBLEP to the LinVst Makefile, just follow the same directions that are in the Makefile for -DEMBEDRESIZE (just add -DDOUBLEP instead of -DEMBEDRESIZE to the 2 Makefile lines).

I wouldn't expect double precision to make much difference, but who knows how the Waves programmers roll.

cshao06 commented 3 years ago

I'm using wine-staging 5.22. I saw that SuperEB's post and I'm stuck with Wave's latest V12 plugins so that could be the problem.

If it's a Waves license issue, why other Waves plugins in the same WavesShell dll work fine?

Also, I tried compiling with -DDOUBLEP and it didn't make any difference.

cshao06 commented 3 years ago

The terminal output is as follows. Those "PNG not found" are also seen with other working Waves plugins.

~/r/LinVst ❯❯❯ env WINEDEBUG=warn+all reaper
rtconfig: clear 'mcp.volume.margin' not found
rtconfig: clear 'mcp.volume.margin' not found
jack: created client
jack: setting TIME_CRITICAL = 19
Loading device INI files from /home/<user>/.config/REAPER ...
jack: activated client
Mackie HUI - Human User Interface: Starting...
Novation Launchkey Mini Mk3: Starting...
Mackie HUI - Human User Interface: Running.
Novation Launchkey Mini Mk3: Running.
[W][000204333.773900][pipewire-jack.c:1093 cycle_run()] jack-client 0x3103a30: missed 1 wakeups
0198:err:heap:HEAP_GetPtr Invalid heap 00000000!
0198:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\kernelbase.dll" not found (c0000034)
0198:warn:module:dlopen_dll failed to load .so lib "/home/<user>/wine/waves/dosdevices/z:/usr/bin/lin-vst-servertrack.exe.so": /home/<user>/wine/waves/dosdevices/z:/usr/bin/lin-vst-servertrack.exe.so: wrong ELF class: ELFCLASS64
0198:warn:module:load_so_dll failed to load .so lib L"\\??\\Z:\\usr\\bin\\lin-vst-servertrack.exe.so"
0198:warn:module:load_dll Failed to load module L"Z:\\usr\\bin\\lin-vst-servertrack.exe.so"; status=c000012f
012c:err:heap:HEAP_GetPtr Invalid heap 0000000000000000!
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\kernelbase.dll" not found (c0000034)
012c:warn:winediag:LdrInitializeThunk wine-staging 5.22 is a testing version containing experimental patches.
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\lin-vst-servertrack.exe.manifest" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\user32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\advapi32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\sechost.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\ucrtbase.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\gdi32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\setupapi.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\rpcrt4.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\version.dll" not found (c0000034)
0344:err:heap:HEAP_GetPtr Invalid heap 0000000000000000!
0344:warn:winediag:LdrInitializeThunk wine-staging 5.22 is a testing version containing experimental patches.
0344:warn:file:NtCreateFile L"\\??\\C:\\windows\\system32\\conhost.exe.manifest" not found (c0000034)
0344:warn:file:server_ioctl_file Unsupported ioctl 504000 (device=50 access=1 func=0 method=0)
0344:warn:file:CreateFileW Unable to create file L"CONIN$" (status c0000008)
0344:warn:file:CreateFileW Unable to create file L"CONOUT$" (status c0000008)
0344:warn:msvcrt:msvcrt_init_console :Console handle Initialisation FAILED!
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\imm32.dll" not found (c0000034)
DSSI VST plugin server v0.986
Copyright (c) 2012-2013 Filipe Coelho
Copyright (c) 2010-2011 Kristian Amlie
Copyright (c) 2004-2006 Chris Cannam
LinVst version 3.2
Loading  /home/<user>/wine/waves/drive_c/Program Files/VSTPlugIns/WaveShell2-VST 12.0_x64.dll
012c:warn:module:load_builtin_dll cannot find builtin library for L"WaveShell2-VST 12.0_x64.dll"
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\SHELL32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\shlwapi.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\shcore.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\ole32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\combase.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\aclui.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\comctl32.dll" not found (c0000034)
012c:warn:module:import_dll No implementation for ole32.dll.RoGetAgileReference imported from L"C:\\Program Files\\VSTPlugIns\\WaveShell2-VST 12.0_x64.dll", setting to 00000000006E0000
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\IPHLPAPI.DLL" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\OPENGL32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\MSVCP140.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\VCRUNTIME140.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-runtime-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-heap-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-string-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-stdio-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-convert-l1-1-0.dll" not found (c0000034)
0344:warn:msvcrt:_configure_wide_argv (1) stub
0344:warn:msvcrt:_initialize_wide_environment stub
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\VCRUNTIME140_1.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-locale-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-filesystem-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-time-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-environment-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-math-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-crt-utility-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\WS2_32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\USERENV.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-core-winrt-string-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-core-winrt-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\api-ms-win-core-winrt-error-l1-1-0.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\OLEAUT32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\bcrypt.dll" not found (c0000034)
012c:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems.
012c:warn:x11drv:get_work_area _GTK_WORKAREAS is not supported, fallback to _NET_WORKAREA. Work areas may be incorrect on multi-monitor systems.
012c:warn:keyboard:X11DRV_KEYBOARD_DetectLayout 7 keysyms per keycode not supported, set to 4
012c:warn:keyboard:X11DRV_KEYBOARD_DetectLayout Using closest match (United States keyboard layout (phantom key version)) for scan/virtual codes mapping.
012c:warn:keyboard:X11DRV_InitKeyboard vkey 0003 is being used by more than one keycode
012c:warn:keyboard:X11DRV_InitKeyboard No more vkeys available!
012c:warn:class:CLASS_RegisterClass Win extra bytes 80 is > 40
012c:warn:file:NtCreateFile L"\\??\\Z:\\usr\\bin\\uxtheme.dll" not found (c0000034)
012c:warn:bcrypt:gnutls_initialize Setting GNUTLS_SYSTEM_PRIORITY_FILE to "/dev/null".
012c:fixme:win:RegisterTouchWindow (00000000009B00B0 00000002): stub
012c:warn:module:load_builtin_dll cannot find builtin library for L"InnerProcessDictionary_x64.dll"
012c:warn:file:NtCreateFile L"\\??\\C:\\ProgramData\\Waves Audio\\Modules\\MSVCP110.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\C:\\ProgramData\\Waves Audio\\Modules\\msvcr110.dll" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\ProgramData\\Waves Audio\\Redis\\waves-redis-server.conf" not found (c000003a)
012c:warn:winsock:wsaErrno errno 115, (Operation now in progress).
012c:warn:module:load_builtin_dll cannot find builtin library for L"WavesLicenseEngine.dll"
012c:warn:file:NtCreateFile L"\\??\\C:\\ProgramData\\Waves Audio\\Modules\\WavesLicenseEngine.bundle\\Contents\\Win64\\CRYPT32.dll" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\C:\\ProgramData\\Waves Audio\\Modules\\AdditionalDLLs_x64\\CRYPT32.dll" not found (c0000034)
012c:warn:crypt:gnutls_initialize GNUTLS_SYSTEM_PRIORITY_FILE is "/dev/null".
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\WaveShell2-VST 12.0_x64.dll_ScanView.txt" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\ScanView\\prd_12.0_Release_V12PluginFolder_ScanView.txt" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\ScanView.txt" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML\\1001!76CM;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML\\1001!76CS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\AlgXML\\1001!MXVS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\AlgXML\\1001!MXVM;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\RVox.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\AlgXML\\1001!SCHS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\AlgXML\\1001!SCHM;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\SSL E-Channel.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML\\1001!RDRS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML\\1001!RDRM;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML\\1001!LRDS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML\\1001!LRDM;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Vocal Rider.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\C:\\.windows-label" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\D:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\E:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\F:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\G:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\H:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\I:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\J:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\K:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\L:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\M:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\N:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\O:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\P:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\Q:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\R:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\S:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\T:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\U:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\V:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\W:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\X:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\Y:\\" not found (c000003a)
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial are not available.
012c:warn:file:NtCreateFile L"\\??\\Z:\\.windows-label" not found (c0000034)
012c:warn:file:CreateFileW Unable to create file L"\\\\.\\Z:" (status c0000022)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\ProgramData\\Waves Audio\\Modules\\noautowlesync.txt" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\noautowlesync.txt" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:module:load_builtin_dll cannot find builtin library for L"WavesLib2.0_12.0_Win64.dll"
012c:warn:module:import_dll No implementation for ole32.dll.RoGetAgileReference imported from L"C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\WavesLib2.0_12.0_Win64.dll", setting to 00000000006E0024
012c:warn:module:load_builtin_dll cannot find builtin library for L"CLA-76.dll"
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\ProgramData\\Waves Audio\\Redis\\waves-redis-server.conf" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\C:\\.windows-label" not found (c0000034)
012c:warn:file:NtCreateFile L"\\??\\D:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\E:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\F:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\G:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\H:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\I:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\J:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\K:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\L:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\M:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\N:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\O:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\P:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\Q:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\R:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\S:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\T:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\U:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\V:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\W:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\X:\\" not found (c000003a)
012c:warn:file:NtCreateFile L"\\??\\Y:\\" not found (c000003a)
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial are not available.
012c:warn:file:NtCreateFile L"\\??\\Z:\\.windows-label" not found (c0000034)
012c:warn:file:CreateFileW Unable to create file L"\\\\.\\Z:" (status c0000022)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML\\1001!76CS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\AlgXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Diagnostics\\zero_seed" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Diagnostics\\zero_seed" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\Diagnostics\\zero_seed" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\ParamXML\\1000!76CS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\ParamXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\ParamXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\GUIXML\\1000!76CS;raPI;VST2.xml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\GUIXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\GUIXML.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Diagnostics\\ControlDump" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Diagnostics\\ControlDump" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\Diagnostics\\ControlDump" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Diagnostics\\EnableWavesEditMode" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Diagnostics\\EnableWavesEditMode" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\Diagnostics\\EnableWavesEditMode" not found (c000003a)
012c:warn:virtual:free_ranges_insert_view range 0x18a0000 - 0x18b0000 is already mapped
0b44:warn:winediag:LdrInitializeThunk wine-staging 5.22 is a testing version containing experimental patches.
012c:warn:virtual:free_ranges_insert_view range 0x19b0000 - 0x19c0000 is already mapped
012c:warn:virtual:free_ranges_insert_view range 0x1ac0000 - 0x1ad0000 is already mapped
02d4:warn:winediag:LdrInitializeThunk wine-staging 5.22 is a testing version containing experimental patches.
0274:warn:winediag:LdrInitializeThunk wine-staging 5.22 is a testing version containing experimental patches.
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\ProgramData\\Waves Audio\\no_context_sharing.txt" not found (c0000034)
012c:warn:cursor:get_icon_ptr icon handle 00000000007A00A8 from other process
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\HTML\\Preset Browser\\onlp_local_search.html" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\HTML\\Preset Browser\\onlp_local_save.html" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML\\1000.xml" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\InfoXML" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Diagnostics\\dump_xmls" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Diagnostics\\dump_xmls" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\Diagnostics\\dump_xmls" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\Skin" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\Skin.zip" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Diagnostics\\generic_multicore_processor" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Diagnostics\\generic_multicore_processor" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\Diagnostics\\generic_multicore_processor" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Win64\\AVXProcessor.dll" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Win64\\GenericWinProcess.dll" not found (c0000034)
012c:warn:module:load_builtin_dll cannot find builtin library for L"GenericMultiCoreProcessor.dll"
012c:warn:file:NtCreateFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Win64\\libmmd.dll" not found (c0000034)
012c:warn:module:load_builtin_dll cannot find builtin library for L"libmmd.dll"
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\Public\\Waves Audio\\Plug-In Settings\\CLA-76 Startup Preset.xps" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\Public\\Waves Audio\\Plug-In Settings\\CLA-76 MidiMapStartup.xps" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\Data" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Data\\Presets\\CLA-76" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Data\\Presets\\CLA-76" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:fixme:win:RegisterTouchWindow (00000000007800AA 00000002): stub
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\15001.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\15004.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\400.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\402.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\404.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\408.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\411.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\412.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\414.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\416.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10226.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10343.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10417.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10425.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\660.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\661.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\665.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\680.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\681.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\685.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\690.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\691.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\695.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10700.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\650.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\651.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\655.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\800.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\675.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\670.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10746.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10748.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\669.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10499.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\699.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\15000.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\698.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\406.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10738.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10747.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10737.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10741.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\Program Files (x86)\\Waves\\Plug-Ins V12\\CLA-76.bundle\\Contents\\Resources\\PNG_\\10745.png" not found (c000003a)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
012c:warn:file:NtQueryAttributesFile L"\\??\\C:\\users\\<user>\\Application Data\\Waves Audio\\Preferences\\FeatureFlags.yaml" not found (c0000034)
osxmidi commented 3 years ago

Can you post the output from a working Waves plugin, so I can compare the outputs?

Waves seems to have multiple copy protection triggers and they could result in the plugin not loading or the plugin loading with the audio not enabled etc etc.

Maybe try to reinstall the plugin(s) using Waves Central and check that their licences are ok.

It could be a lot of things, Wine and/or Waves license issues.

Basically LinVst just loads the plugin and services requests between the Daw and plugin and that has worked for previous versions of Waves, so it seems to be a Wine Waves licence issue maybe, hard to be sure.

cshao06 commented 3 years ago

None of the Waves plugins work any more. Their GUI won't load somehow. However, they started to work with yabridge but CLA-76 still has the same behavior.

osxmidi commented 3 years ago

None of the Waves plugins work any more. Their GUI won't load somehow. However, they started to work with yabridge but CLA-76 still has the same behavior.

It's probably not going to be any different with whatever bridge.

I think that it's probably due to Waves license and the state of Wine and it's prefix.

It's amazing that you got as far as you did.

Maybe deleting the wineprefix and starting everything over again might result in a more stable Waves installation.

cshao06 commented 3 years ago

It's too much pain to install Waves Central again. I keep all other plugins in other prefixes so the current prefix should be pretty clean. I'm happy with the current state (only CLA-76 not working) and will just keep using the current prefix until it breaks.

cshao06 commented 3 years ago

I installed wine-tkg with FSYNC enabled and CLA-76 works now.