I’m working on the two vcv files emulating “Moog Labyrinth”, from Omri Cohen and Davevenom.
VCV RAck crashes when I import these files, but also on my own patch at the moment I import the “Orange line” module.
It crashes about 15’’ after imported. Here is the log file. I can’t see anything special in it.
i can’t add any unique or additional info about this crash myself, other than to confirm that i, too, get an almost immediate crash when adding Orange Line “Morpheus” to my patch. my log file looks the same - no mention anywhere of any issues occurring, just a straight crash-to-desktop.
GDB is the GNU Debugger. You’d need to be familiar with using console based tools; if you are then it’s quite easy to use to find where a crash occured, which module etc.
Hello,
Want to let you know that I am aware that something is wrong but I cannot reproduce the crash on my computers. Both Linux and Windows 10 just working fine here with OrangeLine. Jim Aikin had the Effekt that everything is fine with 48khz but crashes with 44.1. Looks like race condition during module initialization. I’m looking through all my changes and will need some testing help to check whether possible changes work.
Regards
Dieter
Hi,
Furtther checking the code, the only change I find which affects all modules is the number of samples skipped to reduce cpu usage. Was a constant before and was changed to be dependent on the samplerate. It was defined to constant 35 samples which is ok for samplerates >= 44.1 but can lead to dropping of very short triggers on lower samplerates. So I changes it to be:
int(rack::settings::sampleRate / 1500)
If for samoe reason rack::settings::sampleRate is 0 during initialization this might lead to division by 0 in checking whether to skip or not. I added an additional check for that and pushed it to github.
Is there anyone out there experiencing the crash and is able to build the module from source ?
If so please checkout OrangeLine (Branch 2.0) and give it a try.
Regards
Dieter
My VCV Rack Patches that have Orange Line Modules crash immediatly I try to open them.
Also VCV Rack Crashes each time I try to add an Orange Line Module.
This started after the Latest Update of Orange Line Modules on the 22/09/2024
Very frustrating as I find these Modules very good.
I am no programmer but there is obviously a Bug Fix needed.
Any help greatly appreciated
I am on win10-vcv 2.4.1 and experiencing the crash , but unable to build from source, so if anyone can provide the build, i could test on my system.
Also noticed that if i only change to 48 on master audio module and leaving the engine on auto (in theory also 48) the crash still occurs-have to change directly on engine menu for working fine.