Strange assertion in message thread...
-
I'm currently facing an assertion in the debugger. Although this doesn't seem to be a problem in the exported app.
- It happens when I change anything in the audio interface setting like In/Out, samplerate, buffer size...
- I bypassed all modules (even the master)
- All scripts are commented out
So the only things that are staying are the
Content.makeFrontInterface()
, all the interface components and a stock floating tile to access the audio settings...But I can't reproduce it in a new project !
-
@ustk If you can't reproduce it in a new project could it be some setting in the project's XML?
-
@d-healey Thanks, that's what I thought, I will scrutinise it again...
-
Alright so the step before shows that it asserts only in DEBUG.
Though I don't like this and mostly because I don't understand what is happening that could be so "thread dependent" with this call.
Any thought @Christoph-Hart ? -
@ustk An assertion is not a failure, it's just a hint that something is unexpected. In this case it's just that it's calling prepareToPlay without locking the audio thread (however the standalone wrapper has a synchronization mechanism in place on a higher level so this will never cause a real issue).
-
@Christoph-Hart Hmm good to know ! I just spent a full night on this