-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Constant Frequency (as opposed to constant note) pitch shift #865
Comments
There's a workaround for now; you can set the Unison Spread to be an absolute detune in Hz, just right click on it. It would mean that both oscillators must have the same waveform and the detune happens in both directions from the center frequency (maybe?). If you have .kbm support you'll need to make a master pitch reference anyway, so then it's just a matter of exposing that to the GUI. |
Thank you for your response! Is it possible to send the two oscillators output to separate audio channels? Thanks again for your insights! |
with absolute detune for the unison setting, the "wide" filter configuration will pan the unison voice across the stereo field, so in theory for a unison count of two one of them will pan hard left and one hard right. if you are doing things by seperate oscillators, try the L-R filter configuration and send one oscillator to each filter. These two should get you one tuning per stereo channel. |
Hi Paul, just wanted to say again thank you for your advice and guidance to find a solution to my challenge with 4 Hz constant detune between two oscillators. |
OK so taking a look at this issue again and these are more "notes to myself before I go to bed so I remember my research" not "actionable items for either you guys - sorry! Parameter.h has a method can_be_absolute which allows the Absolute trigger. This is how, on the uni-spread, you can set the spread in absolute hz (do RMB/Absolute then drag goes to hz rather than notes). This would actually work for us now if uni-1 took the spread as a detune but of course it doesn't. Parameter.cpp makes it clear that osc_spread is the only parameter that supports absolute. So I think the trick here is 1: Make the "pitch" slider support absolute. That's actually really easy (you just add it to the enumeration in can_be_absolute in Parameter.cpp). That should right away get you to seeing hz rather than notes I think 2: This is the hard part. Make the oscillators read that value rather than interpreting the slider as midi note in absolute mode. I think this is well identified code (I mean, it is basically the same code I just played around with for the tuning changes but a bit different) but probably will require me to visit each of the oscillators
So there go you. I think I'll turn to this one next in the nightlies, mostly because opening up the patch format is a big and ugly change which I am putting off, and the vocoder-as-standalone is a fun bit of code but requires a bit more concentrated time, which I will probably have end of month. |
OK so just a further note before I'm done for the day so I remember SurgeVoice is where all the note construction happens. Happens in 7 places (look for pitch.extend_range). It passes a midi note into the oscillators which then call storage->note_to_pitch (which is what the alternative tuning mechanism whacks). So there's a couple of choices I have
So I think I'll do the second. But like I said still just research notes to myself so I don't forget em. |
Addressing surge-synthesizer#865, we want to be able to shift pitch by either a relative (note space) frequency or an absolute (frequency space) frequency amount. This change is incomplete, and edit this when rebasing but here we do the following 1. Make the pitch parameter allow absolute for pitch_semi_7b 2. Make sure the absolute property saves and restores 3. In SurgeVoice plumb through a note-setter function which will allow us to find the note equivalent to the absolute shift from a base We do not in this change find that note equivalent. So absolute right now is same as pitch = 0 in an oscillator.
Addressing surge-synthesizer#865, we want to be able to shift pitch by either a relative (note space) frequency or an absolute (frequency space) frequency amount. The implementation works as follows: 1. Make the pitch parameter allow absolute for pitch_semi_7b 2. Make sure the absolute property saves and restores 3. In SurgeVoice plumb through a note-setter function which will allow us to find the note equivalent to the absolute shift from a base 4. An implementation of constant pitch shift to note which uses the current tuning table to interpolate in absolute mode and just adds in normal mode
Addressing #865, we want to be able to shift pitch by either a relative (note space) frequency or an absolute (frequency space) frequency amount. The implementation works as follows: 1. Make the pitch parameter allow absolute for pitch_semi_7b 2. Make sure the absolute property saves and restores 3. In SurgeVoice plumb through a note-setter function which will allow us to find the note equivalent to the absolute shift from a base 4. An implementation of constant pitch shift to note which uses the current tuning table to interpolate in absolute mode and just adds in normal mode
@lewisizer hi! I just implemented this constant frequency request. Here's how to do it
I'm going to leave this issue open until I hear from you or @bit-101010 that you've confirmed it behaves as you expect. It was slightly tricky but I did test it against a tuner and indeed, middle c + 10hz gives me 271hz etc... and c an octave up goes from 522 to 532 or what not, as opposed to 522 to 542 which a relative retune would yield. Thanks! |
The nightly now contains this feature. Let me know if it works for you! Thanks |
Hi Paul,
Just got your thread..I’ve been traveling in the air and airports all day.
Don’t know when I’ll be able to try your new discovery until I return home next weekend.
Thanks for the update. If by chance I have a break, I will report my findings.
Thanks so much for your efforts!
All the best!
Making Music to Create Peace and Harmony,
Don
Don Lewis Music
POB 1588
Pleasanton, CA 94566
925-846-9783 • Office
925-872-1215 • Cell
[email protected] • E-mail
donlewismusic.com • URL
theballadofdonlewis.com • Documentary URL
… On Jul 13, 2019, at 9:48 PM, Paul ***@***.***> wrote:
The nightly now contains this feature. Let me know if it works for you! Thanks
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#865?email_source=notifications&email_token=AC4RSKJOIOQB6K2AR6ZWZZLP7KAX3A5CNFSM4HK2BV72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZ34PGI#issuecomment-511166361>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AC4RSKI2P342S7CGIQMXYR3P7KAX3ANCNFSM4HK2BV7Q>.
|
Safe travels and absolutely no rush! |
Again this is more of a note to self. I implemented this in a way that it works with non-standard tuning pitch tables which is great. But for standard tuning I can use an analytic since I know the pitch formula to figure out the calculation. But that means I need to know we are in standard tuning. So let me link this with #828 so i don’t forget. It won’t change the user-side implementation of the feature, so still appreciate a test whenever anyone has time, but might make it a couple of hundred instructions faster in standard tuning mode. (Although it also might not; I would have to do a logarithm to figure out the analytic so I may also not do this). |
OK with last nights tuning fix, I am now convinced that this is correct in all situations, so I'm going to close this issue to help me manage GitHub issues as we approach 1.6.2. @lewisizer all that means is "it doesn't show up on my list requiring work". If you find bugs in the feature we can reopen the issue easily. |
Hi Paul,
Just tried out the latest 1.0.0 version
It crashed after I assigned a MIDI parameter to FX 6
I also noticed that I can not duplicate or/copy and paste the channel strip if Surge FX is present in the strip.
Thanks a lot for your efforts to make this work.
Crash report:
Process: MainStage 3 [14530]
Path: /Applications/MainStage 3.app/Contents/MacOS/MainStage 3
Identifier: com.apple.mainstage3
Version: 3.4.3 (4948.89)
Build Info: MAMainStage-4948089000000000~2
App Item ID: 634159523
App External ID: 830336538
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: MainStage 3 [14530]
User ID: 501
PlugIn Path: /Library/Audio/Plug-Ins/Components/surge-fx.component/Contents/MacOS/surge-fx
PlugIn Identifier: com.SurgeSynthTeam.surgefx
PlugIn Version: 1.0.0 (1.0.0)
Date/Time: 2019-09-13 14:49:20.499 -0700
OS Version: Mac OS X 10.14.6 (18G95)
Report Version: 12
Anonymous UUID: BD5E920C-5C89-EBA2-48B3-F0F0282EAD89
Sleep/Wake UUID: 409FB4D1-3D0E-4D5F-AFBE-64F574732904
Time Awake Since Boot: 51000 seconds
Time Since Wake: 12000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [14530]
Application Specific Information:
MAMonterey | 5febea963d2417014fd7473d7665b14f0cb8068ad2d048cb7ac659965395f4c5 | f5fa0dcc8fe607213793d8c6e0e16b7f0210051e | 2019-07-09_10:14:01
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.SurgeSynthTeam.surgefx 0x000000012f46abda std::__1::__function::__func<SurgefxAudioProcessorEditor::SurgefxAudioProcessorEditor(SurgefxAudioProcessor&)::$_5, std::__1::allocator<SurgefxAudioProcessorEditor::SurgefxAudioProcessorEditor(SurgefxAudioProcessor&)::$_5>, void ()>::operator()() + 42
1 com.SurgeSynthTeam.surgefx 0x000000012f45bf5f SurgefxAudioProcessor::handleAsyncUpdate() + 31
2 com.SurgeSynthTeam.surgefx 0x000000012f4ab12c juce::MessageQueue::deliverNextMessage() + 236
3 com.SurgeSynthTeam.surgefx 0x000000012f4aafee juce::MessageQueue::runLoopSourceCallback(void*) + 14
4 com.apple.CoreFoundation 0x00007fff45002683 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
5 com.apple.CoreFoundation 0x00007fff45002629 __CFRunLoopDoSource0 + 108
6 com.apple.CoreFoundation 0x00007fff44fe5feb __CFRunLoopDoSources0 + 195
7 com.apple.CoreFoundation 0x00007fff44fe55b5 __CFRunLoopRun + 1189
8 com.apple.CoreFoundation 0x00007fff44fe4ebe CFRunLoopRunSpecific + 455
9 com.apple.HIToolbox 0x00007fff442441ab RunCurrentEventLoopInMode + 292
10 com.apple.HIToolbox 0x00007fff44243ee5 ReceiveNextEventCommon + 603
11 com.apple.HIToolbox 0x00007fff44243c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64
12 com.apple.AppKit 0x00007fff425dc79d _DPSNextEvent + 1135
13 com.apple.AppKit 0x00007fff425db48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
14 com.apple.AppKit 0x00007fff425d55a8 -[NSApplication run] + 699
15 com.apple.AppKit 0x00007fff425c4ae8 NSApplicationMain + 777
16 com.apple.mainstage3 0x000000010b275d2d 0x10b270000 + 23853
17 libdyld.dylib 0x00007fff70f3a3d5 start + 1
Thread 1:: JavaScriptCore bmalloc scavenger
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 libc++.1.dylib 0x00007fff6e16ca0a std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3 com.apple.JavaScriptCore 0x00007fff484c4c42 void std::__1::condition_variable_any::wait<std::__1::unique_lock<bmalloc::Mutex> >(std::__1::unique_lock<bmalloc::Mutex>&) + 82
4 com.apple.JavaScriptCore 0x00007fff484c8d4b bmalloc::Scavenger::threadRunLoop() + 139
5 com.apple.JavaScriptCore 0x00007fff484c8579 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 9
6 com.apple.JavaScriptCore 0x00007fff484c9ee7 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(bmalloc::Scavenger*), bmalloc::Scavenger*> >(void*) + 39
7 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 2:: ExtendedAudioFileScheduler::WorkerThreadProc
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAFiles 0x000000011007012b ExtendedAudioFileScheduler::WorkerThreadProc() + 123
3 com.apple.music.apps.MAFiles 0x00000001100700a9 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 3:: ExtendedAudioFileScheduler::WorkerThreadProc
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAFiles 0x000000011007012b ExtendedAudioFileScheduler::WorkerThreadProc() + 123
3 com.apple.music.apps.MAFiles 0x00000001100700a9 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 4:: CVDisplayLink
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff711315a1 _pthread_cond_wait + 773
2 com.apple.CoreVideo 0x00007fff46d52797 CVDisplayLink::waitUntil(unsigned long long) + 229
3 com.apple.CoreVideo 0x00007fff46d51d46 CVDisplayLink::runIOThread() + 482
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 5:: MTStream+MTThreadStage LIVE Processing: 0
0 com.apple.JavaScriptCore 0x00007fff48f31e7a JSC::VMEntryScope::~VMEntryScope() + 218
1 com.apple.JavaScriptCore 0x00007fff482db8a7 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 567
2 com.apple.JavaScriptCore 0x00007fff48d9a2f4 JSC::profiledCall(JSC::ExecState*, JSC::ProfilingReason, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 196
3 com.apple.JavaScriptCore 0x00007fff482db508 JSObjectCallAsFunction + 488
4 com.apple.music.apps.MADSP 0x000000010da70dcd CJavaScriptMidiProcessor::HandleMIDI(CMidiProcessorEvent const&) + 925
5 com.apple.music.apps.MACore 0x000000010b73a88a CMidiProcessor::CallHandleMIDI(unsigned char, unsigned char, unsigned char, unsigned char, long, unsigned char, bool, double) + 106
6 com.apple.music.apps.MADSP 0x000000010d12b6ed CMidiScriptsBaseShell::HandleMIDILoop(CMidiEventQueue&, long, long) + 781
7 com.apple.music.apps.MADSP 0x000000010d12a0f6 CMidiScriptsBaseShell::ProcessMidi(CMidiEventQueue&, CMidiEventQueue&, long, long) + 582
8 com.apple.music.apps.MADSP 0x000000010da136f6 CMidiPlugInShell::OnExecute(TProcessInfo*) + 70
9 com.apple.music.apps.MADSP 0x000000010d124d2a CPlugInShell::Execute(TProcessInfo*) + 634
10 com.apple.music.apps.MAAudioEngine 0x000000010cba4276 MDPlugSteffan::Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 822
11 com.apple.music.apps.MAAudioEngine 0x000000010cb9c1a0 MDPlug::_Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 1424
12 com.apple.music.apps.MAAudioEngine 0x000000010cc25441 MTStream::processPlugIn(int, unsigned long long, long, long, MDPlug*, TAudioBusFormat, float* (*) [11], float* (*) [11], bool*) + 3201
13 com.apple.music.apps.MAAudioEngine 0x000000010cc241e8 MTStream::processChannel(unsigned long long, float* (**) [11], float* (**) [11], int, long, long, TAudioBusFormat*, MTStreamProcessArgs*) + 1000
14 com.apple.music.apps.MAAudioEngine 0x000000010cc2e02b MTAbstractStream::processChunk(int, unsigned long long, long, long, MTStreamProcessArgs*) + 571
15 com.apple.music.apps.MAAudioEngine 0x000000010cc26968 MTSubStream::process(int, unsigned long long, MTStreamProcessArgs*) + 440
16 com.apple.music.apps.MAAudioEngine 0x000000010cc1e614 MTThreadStage::processThread() + 1444
17 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
18 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
19 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
20 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 6:: MTStream+MTThreadStage LIVE Processing: 1
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e69c MTThreadStage::processThread() + 1580
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 7:: MTStream+MTThreadStage LIVE Processing: 2
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e69c MTThreadStage::processThread() + 1580
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 8:: MTStream+MTThreadStage LIVE Processing: 3
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e69c MTThreadStage::processThread() + 1580
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 9:: MTStream+MTThreadStage LIVE Processing: 4
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e5ec MTThreadStage::processThread() + 1404
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 10:: MTStream+MTThreadStage LIVE Processing: 5
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e69c MTThreadStage::processThread() + 1580
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 11:: MTStream+MTThreadStage LIVE Processing: 6
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e5ec MTThreadStage::processThread() + 1404
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 12:: MTStream+MTThreadStage LIVE Processing: 7
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.music.apps.MAAudioEngine 0x000000010cc2675b MTSubStream::didFinishProcessing() + 91
3 com.apple.music.apps.MAAudioEngine 0x000000010cc26602 MTSubStream::readyToProcess(bool) + 178
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1e69c MTThreadStage::processThread() + 1580
5 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 13:: MTStream+MTThreadStage SLOW Processing: 0
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 14:: MTStream+MTThreadStage SLOW Processing: 1
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 15:: MTStream+MTThreadStage SLOW Processing: 2
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 16:: MTStream+MTThreadStage SLOW Processing: 3
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 17:: MTStream+MTThreadStage SLOW Processing: 4
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 18:: MTStream+MTThreadStage SLOW Processing: 5
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 19:: MTStream+MTThreadStage SLOW Processing: 6
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 20:: MTStream+MTThreadStage SLOW Processing: 7
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc2cb62 MTWarpTracker::waitOnSemaphore(MTThreadStage*, unsigned long long) + 370
2 com.apple.music.apps.MAAudioEngine 0x000000010cc1e26f MTThreadStage::processThread() + 511
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1e03b MTThreadStage::processThreadFunc(MTThreadStage*) + 107
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 21:: FileIOThread 1
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cb8e7c2 0x10cb3f000 + 325570
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 22:: MTFinalStage High Latency Thread
0 libsystem_kernel.dylib 0x00007fff71072f32 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff70ffe914 nanosleep + 199
2 libsystem_c.dylib 0x00007fff70ffe808 usleep + 53
3 com.apple.music.apps.MAAudioEngine 0x000000010cc1bc6a MTFinalStage::process() + 842
4 com.apple.music.apps.MAAudioEngine 0x000000010cc1b90e MTFinalStage::processThreadFunc(MTFinalStage*) + 62
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 23:: MTFeederStage High Latency Thread
0 libsystem_kernel.dylib 0x00007fff7106f27e semaphore_timedwait_trap + 10
1 com.apple.music.apps.MAAudioEngine 0x000000010cc1860b MTFeederStage::processThread() + 4171
2 com.apple.music.apps.MAAudioEngine 0x000000010cc175ae MTFeederStage::processThreadFunc(MTFeederStage*) + 62
3 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
5 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 24:: com.apple.mainstage:CoreMIDI Notification Dispatcher
0 libsystem_kernel.dylib 0x00007fff7106f22a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7106f76c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff44fe61ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff44fe575c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff44fe4ebe CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff4724932f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.apple.Foundation 0x00007fff47249204 -[NSRunLoop(NSRunLoop) run] + 76
7 com.apple.MainStageCore 0x000000010cedc357 0x10ce59000 + 537431
8 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 25:: com.apple.mainstage:MIDI Clock Sender
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.apple.MainStageCore 0x000000010cedc8c3 0x10ce59000 + 538819
3 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
5 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 26:: com.apple.mainstage:CoreMIDI Received MIDI
0 libsystem_kernel.dylib 0x00007fff7106f22a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7106f76c mach_msg + 60
2 com.apple.audio.midi.CoreMIDI 0x00007fff45e2e3e5 XServerMachPort::ReceiveMessage(int&, void*, int&) + 95
3 com.apple.audio.midi.CoreMIDI 0x00007fff45e4a8d3 MIDIProcess::RunMIDIInThread() + 333
4 com.apple.audio.midi.CoreMIDI 0x00007fff45e60af4 XThread::RunHelper(void*) + 10
5 com.apple.audio.midi.CoreMIDI 0x00007fff45e6597d CAPThread::Entry(CAPThread*) + 77
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 27:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff7107661a __select + 10
1 com.apple.CoreFoundation 0x00007fff45013b72 __CFSocketManager + 635
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 28:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff7106f22a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7106f76c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff44fe61ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff44fe575c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff44fe4ebe CFRunLoopRunSpecific + 455
5 com.apple.AppKit 0x00007fff425e44c2 _NSEventThread + 175
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 29:: SeqTimer 2
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff711315a1 _pthread_cond_wait + 773
2 com.apple.CoreServices.CarbonCore 0x00007fff4631d724 TSWaitOnConditionTimedRelative + 147
3 com.apple.CoreServices.CarbonCore 0x00007fff4631d31e TSWaitOnSemaphoreCommon + 410
4 com.apple.CoreServices.CarbonCore 0x00007fff46304571 TimerThread + 270
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 30:: MetronomeUItriggerThread
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.music.apps.LogicPro 0x000000010e6413f3 0x10e5c1000 + 525299
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 31:
0 libsystem_kernel.dylib 0x00007fff71072f32 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff70ffe914 nanosleep + 199
2 libsystem_c.dylib 0x00007fff70ffe808 usleep + 53
3 com.WavesAudio.WaveShell2-AU.9.91.59 0x000000012c61b1e5 wvWavesV9_91_Lib4::wvThread::WCIdleCommandDispatcher::threadMain(void*) + 29
4 com.WavesAudio.WaveShell2-AU.9.91.59 0x000000012c5c71f8 wvWavesV9_91_Lib4::wvThread::ThreadWrapper(void*) + 30
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 32:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 33:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 34:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 35:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 36:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 37:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 38:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 39:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 40:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 41:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 42:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 43:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 44:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 45:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 46:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 47:
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.eastwest.Play 0x000000012d2e3ffc 0x12cf68000 + 3653628
2 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 48:: Prime1
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 49:: Prime2
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 50:: Prime3
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 51:: Prime4
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 52:: Prime5
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 53:: Prime6
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 54:: Prime7
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012d368d44 0x12cf68000 + 4197700
3 com.eastwest.Play 0x000000012d367b3e 0x12cf68000 + 4193086
4 com.eastwest.Play 0x000000012d233c01 0x12cf68000 + 2931713
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 55:: Juce Timer
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.eastwest.Play 0x000000012cfddf5e 0x12cf68000 + 483166
3 com.eastwest.Play 0x000000012d00e8e1 0x12cf68000 + 682209
4 com.eastwest.Play 0x000000012cfde983 0x12cf68000 + 485763
5 com.eastwest.Play 0x000000012cff4aaa 0x12cf68000 + 576170
6 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 56:: com.apple.mainstage.midiengine.0x7ff9096c0000
0 libsystem_kernel.dylib 0x00007fff7106f27e semaphore_timedwait_trap + 10
1 com.apple.MainStageCore 0x000000010cfa92c2 0x10ce59000 + 1376962
2 com.apple.Foundation 0x00007fff4723f112 __NSThread__start__ + 1194
3 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
5 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 57:: com.apple.mainstage.workspace.draw.0x7ff9096c0000
0 libsystem_kernel.dylib 0x00007fff7106f266 semaphore_wait_trap + 10
1 com.apple.mainstage3 0x000000010b305cfc 0x10b270000 + 613628
2 com.apple.music.apps.MAWorkspace 0x000000010ca3fa1a 0x10c9c2000 + 514586
3 com.apple.Foundation 0x00007fff4723f112 __NSThread__start__ + 1194
4 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 58:: com.apple.mainstage.workspace.calculate.0x7ff9096c0000
0 libsystem_kernel.dylib 0x00007fff7106f22a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7106f76c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff44fe61ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff44fe575c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff44fe4ebe CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff4724932f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.apple.music.apps.MAWorkspace 0x000000010ca3fd32 0x10c9c2000 + 515378
7 com.apple.mainstage3 0x000000010b302727 0x10b270000 + 599847
8 com.apple.Foundation 0x00007fff4723f112 __NSThread__start__ + 1194
9 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
11 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 59:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x00007fff7106f22a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7106f76c mach_msg + 60
2 com.apple.audio.CoreAudio 0x00007fff44a55eda HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 122
3 com.apple.audio.CoreAudio 0x00007fff44a55e4f HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 45
4 com.apple.audio.CoreAudio 0x00007fff44a5239f HALC_ProxyIOContext::IOWorkLoop() + 1017
5 com.apple.audio.CoreAudio 0x00007fff44a51df4 HALC_ProxyIOContext::IOThreadEntry(void*) + 122
6 com.apple.audio.CoreAudio 0x00007fff44a51956 HALB_IOThread::Entry(void*) + 72
7 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 60:: JUCE Timer
0 libsystem_kernel.dylib 0x00007fff7107286a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7113156e _pthread_cond_wait + 722
2 com.SurgeSynthTeam.surgefx 0x000000012f4893ce juce::WaitableEvent::wait(int) const + 190
3 com.SurgeSynthTeam.surgefx 0x000000012f4ac41b juce::Timer::TimerThread::run() + 171
4 com.SurgeSynthTeam.surgefx 0x000000012f49034c threadEntryProc + 348
5 libsystem_pthread.dylib 0x00007fff7112e2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71131249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7112d40d thread_start + 13
Thread 61:
0 libsystem_pthread.dylib 0x00007fff7112d3f0 start_wqthread + 0
Thread 62:
0 libsystem_pthread.dylib 0x00007fff7112d3f0 start_wqthread + 0
Thread 63:
0 libsystem_pthread.dylib 0x00007fff7112d3f0 start_wqthread + 0
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x001df603001db5a2 rbx: 0x00007ff8f8c84200 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rdi: 0x00007ff8f8c84590 rsi: 0x00000000000120a9 rbp: 0x00007ffee498e390 rsp: 0x00007ffee498e2f0
r8: 0x00000000000130a9 r9: 0x00006000112c2e10 r10: 0x0000000000000000 r11: 0x00006000112c2e08
r12: 0x0000000600002e88 r13: 0x0000600000564310 r14: 0x00007ff91a0ef000 r15: 0x0000000000000000
rip: 0x000000012f46abda rfl: 0x0000000000010206 cr2: 0x0000000112011000
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 13
Binary Images:
0x10b270000 - 0x10b510fff com.apple.mainstage3 (3.4.3 - 4948.89) <2C9D1847-4369-3558-BE61-63708A829930> /Applications/MainStage 3.app/Contents/MacOS/MainStage 3
0x10b5d4000 - 0x10b5d6ff3 com.apple.music.apps.MAResourcesLg (10.3.2 - 4948.89) <431DFECD-50CA-33E6-9852-03303CBB193D> /Applications/MainStage 3.app/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
0x10b5de000 - 0x10b84bff7 com.apple.music.apps.MACore (10.3.2 - 4948.89) <B9744A20-0638-35E8-A8FD-040F0213B818> /Applications/MainStage 3.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
0x10b9b2000 - 0x10ba03ffb com.apple.LogicUIKitHighLevel (10.3.2 - 4948.89) <9950AF61-150E-3C11-BD95-55E5D016985A> /Applications/MainStage 3.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHighLevel
0x10ba31000 - 0x10be1cff7 com.apple.LogicUIKit (10.3.2 - 4948.89) <73F29452-B9D0-3E90-8478-4575A8BFD2A7> /Applications/MainStage 3.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
0x10bf80000 - 0x10c63afff com.apple.music.apps.MAKeymap (10.3.2 - 4948.89) <811BD506-3B73-34C9-BE14-A46A25249680> /Applications/MainStage 3.app/Contents/Frameworks/MAKeymap.framework/Versions/A/MAKeymap
0x10c9b9000 - 0x10c9bbfff com.apple.music.apps.MAResourcesPlugInsShared (10.3.2 - 4948.89) <9EFCC200-509A-3816-954B-2E488AA9E68E> /Applications/MainStage 3.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResourcesPlugInsShared
0x10c9c2000 - 0x10cad4fff com.apple.music.apps.MAWorkspace (10.3.2 - 4948.89) <B089B8CA-5850-3114-9751-8534D811304F> /Applications/MainStage 3.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
0x10cb3f000 - 0x10cc8bfff com.apple.music.apps.MAAudioEngine (10.3.2 - 4948.89) <017AAC53-318C-36B9-8790-EE99ED1189CD> /Applications/MainStage 3.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
0x10ce4d000 - 0x10ce51ff7 com.apple.music.apps.MAResources (10.3.2 - 4948.89) <33361DC4-E7AA-39E9-AB67-1DEF5FC28D04> /Applications/MainStage 3.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
0x10ce59000 - 0x10d05bfff com.apple.MainStageCore (3.4.3 - 4948.89) <3BA70245-0372-3385-9976-9236A6F61384> /Applications/MainStage 3.app/Contents/Frameworks/MainStageCore.framework/Versions/A/MainStageCore
0x10d0e5000 - 0x10d0e7ff3 com.apple.music.apps.MAResourcesMainStage (10.3.2 - 4948.89) <67DB477A-ABFA-3145-80C2-79AE0D91C9C5> /Applications/MainStage 3.app/Contents/Frameworks/MAResourcesMainStage.framework/Versions/A/MAResourcesMainStage
0x10d0f1000 - 0x10dc73fff com.apple.music.apps.MADSP (10.3.2 - 4948.89) <2928CE5A-D753-35F9-99C4-1218247FBB55> /Applications/MainStage 3.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
0x10e5c1000 - 0x10f031fff com.apple.music.apps.LogicPro (10.3.2 - 4948.89) <F3B865F0-6BF9-3F48-9CA7-C6B07E7DE890> /Applications/MainStage 3.app/Contents/Frameworks/LogicPro.framework/Versions/A/LogicPro
0x10f3a3000 - 0x10faeffff com.apple.music.apps.MAPlugInGUI (10.3.2 - 4948.89) <513C5440-3CB4-389B-9A36-6D49367E29B7> /Applications/MainStage 3.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
0x10fe64000 - 0x10feabff7 com.apple.music.apps.MALoopManagement (10.3.2 - 4948.89) <3CA29737-55DB-3167-BA9D-5D820032B85E> /Applications/MainStage 3.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagement
0x10fed8000 - 0x10fffbfff com.apple.music.apps.MAHarmony (10.3.2 - 4948.89) <8FF5FA0D-4D7D-365E-A93C-80B97FB9F8F1> /Applications/MainStage 3.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
0x11003d000 - 0x110128fff com.apple.music.apps.MAFiles (10.3.2 - 4948.89) <9BBD0BED-3AFB-3F94-B436-75056F029A7D> /Applications/MainStage 3.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
0x110171000 - 0x110188fff com.apple.music.apps.MAAudioUnitSupport (10.3.2 - 4948.89) <903E22EF-339E-3967-AC33-E3698A468B82> /Applications/MainStage 3.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSupport
0x11019c000 - 0x11093bff7 com.apple.music.apps.MAAlchemy (10.3.2 - 4948.89) <7EFB671C-A806-3842-AB88-FADE6D3C1C4B> /Applications/MainStage 3.app/Contents/Frameworks/MAAlchemy.framework/Versions/A/MAAlchemy
0x110bbd000 - 0x110be4ff3 com.apple.music.apps.MALoopBrowser (10.3.2 - 4948.89) <892F070E-8841-3247-912B-A1F0344BFEBB> /Applications/MainStage 3.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
0x110bff000 - 0x110d45ffb com.apple.music.apps.MAVectorUIKit (10.3.2 - 4948.89) <D2885301-9579-3E6F-AE92-A5558EF906CE> /Applications/MainStage 3.app/Contents/Frameworks/MAVectorUIKit.framework/Versions/A/MAVectorUIKit
0x110db7000 - 0x110dba047 libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib
0x110dbe000 - 0x110dc0ff3 com.apple.music.apps.MAContentDownloading (10.3.2 - 4948.89) <04FE28B2-C54A-3FB0-B38E-3A88ED3FF21D> /Applications/MainStage 3.app/Contents/Frameworks/MAContentDownloading.framework/Versions/A/MAContentDownloading
0x11547c000 - 0x115480ffb com.apple.audio.AppleHDAHALPlugIn (282.54 - 282.54) <207D25F0-B094-3569-AA6D-09B4EDD72861> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x115486000 - 0x11548affb com.apple.audio.AppleGFXHDAHALPlugIn (100.1.414 - 100.1.414) <8C81D6E5-9975-3FE1-841A-AFC9FCB87630> /System/Library/Extensions/AppleGFXHDA.kext/Contents/PlugIns/AppleGFXHDAHALPlugIn.bundle/Contents/MacOS/AppleGFXHDAHALPlugIn
0x115490000 - 0x115492ff3 com.apple.music.apps.evd6.resources (10.3.2 - 4948.89) <5DAC7F35-2ADE-33B4-9386-EB602B483ABB> /Applications/MainStage 3.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
0x1156a1000 - 0x1156a3ff3 com.apple.music.apps.ebp.resources (10.3.2 - 4948.89) <90C50EE3-F3CD-3CE4-89A4-784D2E29DDB2> /Applications/MainStage 3.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
0x1156ab000 - 0x1156adff3 com.apple.music.apps.pedalboard.resources (10.3.2 - 4948.89) <5111666D-8514-371A-9266-83364611260F> /Applications/MainStage 3.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
0x1156b5000 - 0x1156b7ff3 com.apple.music.apps.emx.resources (10.3.2 - 4948.89) <BD5FB3F7-ADE1-3861-AA93-3F843D520204> /Applications/MainStage 3.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
0x1156bf000 - 0x1156c1ff3 com.apple.music.apps.efx.resources (10.3.2 - 4948.89) <9E7CBA01-1089-3B68-8F2B-01B99A74D67B> /Applications/MainStage 3.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
0x1156c9000 - 0x1156cbfff com.apple.music.apps.guitarcontrols.resources (10.3.2 - 4948.89) <824144D6-E7CD-3D84-9517-810CCD71B86A> /Applications/MainStage 3.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
0x1156d4000 - 0x1156d6fff com.apple.music.apps.evp88.resources (10.3.2 - 4948.89) <126B3442-D9D7-30A8-9082-10C64A7855A0> /Applications/MainStage 3.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
0x1156de000 - 0x1156e0ff3 com.apple.music.apps.evoc.resources (10.3.2 - 4948.89) <59B6736B-2FBF-3382-BDB6-52AD61419A1E> /Applications/MainStage 3.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
0x1156e8000 - 0x1156eaff3 com.apple.music.apps.evb3.resources (10.3.2 - 4948.89) <4F469EEE-6677-3AFE-A4A5-926794AF6D5D> /Applications/MainStage 3.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
0x1156f2000 - 0x1156f4fff com.apple.music.apps.sphere.resources (10.3.2 - 4948.89) <A0E68178-4788-3774-81D4-BA97BB226438> /Applications/MainStage 3.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
0x1156fc000 - 0x1156feff3 com.apple.music.apps.es1.resources (10.3.2 - 4948.89) <1709BA96-7B18-3C0A-9B7F-8C58B88FD878> /Applications/MainStage 3.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
0x115706000 - 0x115708ff3 com.apple.music.apps.esp.resources (10.3.2 - 4948.89) <196B5A7B-535A-304D-82ED-9CFE90AEDF9A> /Applications/MainStage 3.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
0x115710000 - 0x115712fff com.apple.music.apps.exs24.resources (10.3.2 - 4948.89) <10AC5421-50E2-31CF-B7B0-F94C96E99946> /Applications/MainStage 3.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
0x11571a000 - 0x11571cff3 com.apple.music.apps.egt.resources (10.3.2 - 4948.89) <95C4799F-E9F4-3254-9C66-BA1574CBFB0D> /Applications/MainStage 3.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
0x115724000 - 0x115726ff3 com.apple.music.apps.es2.resources (10.3.2 - 4948.89) <BB60F258-168F-3A29-9E58-748F32EB939E> /Applications/MainStage 3.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
0x11572e000 - 0x115730fff com.apple.music.apps.player.resources (10.3.2 - 4948.89) <ABDCEB89-0867-304B-9DEC-2FF8CC6F7E28> /Applications/MainStage 3.app/Contents/PlugIns/player.res/Contents/MacOS/player
0x11573d000 - 0x11573ffff com.apple.music.apps.revolver.resources (10.3.2 - 4948.89) <F2C4DDCB-26A7-391A-8800-73E2B9689A9C> /Applications/MainStage 3.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
0x115747000 - 0x115749fff com.apple.music.apps.common.resources (10.3.2 - 4948.89) <6E284CB8-E753-30AA-8532-E1061D5A2EE9> /Applications/MainStage 3.app/Contents/PlugIns/common.res/Contents/MacOS/common
0x115751000 - 0x115753fff com.apple.music.apps.mutapdel.resources (10.3.2 - 4948.89) <1460A8D0-0260-343E-8ACF-2B5ED029F937> /Applications/MainStage 3.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
0x11575b000 - 0x11575dfff com.apple.music.apps.looper.resources (10.3.2 - 4948.89) <0E8AC3DA-1DF7-32EF-A5D6-A5CA91EA2431> /Applications/MainStage 3.app/Contents/PlugIns/looper.res/Contents/MacOS/looper
0x1157a8000 - 0x1157aafff com.apple.music.apps.anvil.resources (10.3.2 - 4948.89) <B5316CC6-9182-3744-9AAD-B9D75E91DBB1> /Applications/MainStage 3.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
0x1178d6000 - 0x1178d7fff +com.Waves.Waveshell-AU-CocoaView (0) <33C85FF0-82ED-31B9-B23A-7F8F63952108> /Library/Audio/Plug-Ins/Components/WaveShell2-AU 9.91.component/Contents/Resources/WaveShell-AU-CocoaView.bundle/Contents/MacOS/WaveShell-AU-CocoaView
0x117930000 - 0x117936ff7 +InnerProcessDictionary.dylib (1.3) <EDD1128F-4573-ADD9-21D9-B3CF467C9BF8> /Library/Application Support/Waves/*/InnerProcessDictionary.dylib
0x11a2f6000 - 0x11a36070f dyld (655.1.1) <DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A> /usr/lib/dyld
0x11c1e9000 - 0x11c2b2ff7 com.apple.AMDRadeonX4000GLDriver (2.11.20 - 2.1.1) <0AD1C812-DBC2-3949-82E6-7DAEE291ED76> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
0x11c304000 - 0x11c309fff com.apple.URLMount.CIFSPlugin (7.2 - 7.2) <CC251937-C6E7-3D23-92E3-45C144A37D20> /System/Library/Filesystems/NetFSPlugins/smb.bundle/Contents/MacOS/smb
0x11c759000 - 0x11c80aff7 +com.WavesAudio.WavesLicenseEngine.1.1.7 (1.1.7 - 1.1.7.2) <FD7F0621-596E-3892-8B92-E71E30B07082> /Library/Application Support/Waves/*/WavesLicenseEngine.bundle/Contents/MacOS/WavesLicenseEngine
0x11c860000 - 0x11c887ff7 +com.WavesAudio.Brauer Motion.9.91.0 (9.91.0 - 9.91.0445) <13504480-B862-36AE-8F8D-255762E59248> /Applications/Waves/*/Brauer Motion.bundle/Contents/MacOS/Brauer Motion
0x11c8b5000 - 0x11c8cdfff +GenericMacIntel.dylib (0) <FAC93740-5552-39D5-B978-60A8E6C6CA53> /Applications/Waves/*/Brauer Motion.bundle/Contents/MacOS/GenericMacIntel.dylib
0x11ca84000 - 0x11ca9afff com.apple.security.csparser (3.0 - 58286.270.3.0.1) <215095F3-2B6A-3F8D-A8AB-5E29C3A861F6> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x121591000 - 0x1218b0fe7 +com.WavesAudio.WavesLib2_9.91.9.91.56 (9.91.56 - 9.91.562) <E05279EB-1E4E-3B26-81D9-4CB99F12C04F> /Applications/Waves/*/WavesLib2_9.91.framework/Versions/A/WavesLib
0x12bee0000 - 0x12c855fef +com.WavesAudio.WaveShell2-AU.9.91.59 (9.91.59 - 9.91.5919) <94DF9495-5638-3313-BF7E-B25C2447B0F0> /Library/Audio/Plug-Ins/Components/WaveShell2-AU 9.91.component/Contents/MacOS/WaveShell2-AU
0x12cf68000 - 0x12e9dfff7 +com.eastwest.Play (6.1.2 - 6.1.2) <198248BF-085F-3A51-9DE4-AD4DC6FA8F1B> /Library/Audio/Plug-Ins/Components/Play.component/Contents/MacOS/Play
0x12f3f5000 - 0x12f5d1ffb +com.SurgeSynthTeam.surgefx (1.0.0 - 1.0.0) <388C3078-B0BF-3446-BDD3-FCD1B5BC1F4D> /Library/Audio/Plug-Ins/Components/surge-fx.component/Contents/MacOS/surge-fx
0x1576ea000 - 0x1579b2fff +com.eastwest.midi.wordbuildervstplayj (2.0 - 0) <6E54D3C3-7B8D-3F2A-921D-0D0ECFA36C4B> /Library/Application Support/East West/*/WordBuilderPlay.bundle/Contents/MacOS/WordBuilderPlay
0x1583f9000 - 0x1587c1fef +com.Ohm Force.Ohmicide.Macho.Vst (1.0) <0282CB2C-1B62-3820-F82A-444FD956D60D> /Library/Application Support/East West/*/Ohmicide-eastwest-funky-VST2
0x7fff3970c000 - 0x7fff39a65fff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) <AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff39a68000 - 0x7fff39b74fff com.apple.AMDMTLBronzeDriver (2.11.20 - 2.1.1) <1D8E8E3B-88F4-35B1-8E83-AE74B558C26C> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
0x7fff39b75000 - 0x7fff3a51aff3 ATIRadeonX4000SCLib.dylib (2.11.20) <13C8B1DC-87F9-3F99-88E8-F7719F98D99E> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib
0x7fff40fdf000 - 0x7fff40fe3fff com.apple.agl (3.3.2 - AGL-3.3.2) <03320890-819C-38A2-AD45-78F1473E693F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x7fff40fe4000 - 0x7fff411c0ffb com.apple.avfoundation (2.0 - 1550.4) <5854207B-6106-3DA4-80B6-36C42D042F26> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff411c1000 - 0x7fff41286fff com.apple.audio.AVFAudio (1.0 - ???) <D454A339-2FC6-3EF6-992F-D676046612DB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff4138e000 - 0x7fff4138efff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff4138f000 - 0x7fff413a5ff7 libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff413a6000 - 0x7fff41a3ffef com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff41a40000 - 0x7fff41cb9ff3 libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff41cba000 - 0x7fff41d2cffb libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff41d2d000 - 0x7fff420d6ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff420d7000 - 0x7fff420ecfeb libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff420ed000 - 0x7fff420f2ff3 libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff420f3000 - 0x7fff4216fff3 libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff42170000 - 0x7fff42183fe3 libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff42184000 - 0x7fff4236bff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff4236c000 - 0x7fff4241fff7 libvMisc.dylib (671.250.4) <D5BA4812-BFFC-3CD0-B382-905CD8555DA6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff42420000 - 0x7fff42420fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff42421000 - 0x7fff4247bfff com.apple.Accounts (113 - 113) <251A1CB1-F972-3F60-8662-85459EAD6318> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff4247e000 - 0x7fff425c1fff com.apple.AddressBook.framework (11.0 - 1894) <3FFCAE6B-4CD2-3B8D-AE27-0A3693C9470F> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff425c2000 - 0x7fff43377ffb com.apple.AppKit (6.9 - 1671.60.107) <2F7E5984-E89A-3451-A3DF-FAAA509CF884> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff433c9000 - 0x7fff433c9fff com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff433ca000 - 0x7fff43435fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff434ce000 - 0x7fff435e5fff libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff435e6000 - 0x7fff43628fff libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff43682000 - 0x7fff436b4fff libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff43719000 - 0x7fff4371dff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <C0D9E23C-ABA0-39DE-A4EB-5A41C5499056> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff437b8000 - 0x7fff4380aff7 com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff4380b000 - 0x7fff4381afff com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff4381b000 - 0x7fff43864ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff43865000 - 0x7fff4389eff7 com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff4389f000 - 0x7fff438abfff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff438ac000 - 0x7fff43b23ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <04F482F1-E1C1-3955-8A6C-8AA152AA06F3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff43b25000 - 0x7fff43b25fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <ABC54269-002D-310D-9654-46CF960F863E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff43b26000 - 0x7fff43c5fffb com.apple.AudioVideoBridging (760.6 - 760.6) <4A6F4637-F849-3A5D-92F4-C7213AB10561> /System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/AudioVideoBridging
0x7fff43e7e000 - 0x7fff4421ffff com.apple.CFNetwork (978.0.7 - 978.0.7) <B2133D0D-1399-3F17-80F0-313E3A241C89> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff44234000 - 0x7fff44234fff com.apple.Carbon (158 - 158) <56AD06AA-7BB4-3F0B-AEF7-9768D0B
|
Hi Don I renamed the plugin in the latest release - it is now called “SurgeEffectsBank”. From this stack trace it looks like you are still using the old “surge-fx” one. So I think you need to uninstall that and install the newplugin To uninstall from a terminal you can just “sudo rm -rf /Library/Audio/Plug-Ins/Components/surge-fx.component” Then grab a new version of the nightly installer from surge-synthesizer.github.io and you should see a version called “SurgeEffectsBank” which will have the fix to this problem and several other installed. I’m sorry I should have made the rename clearer. But the name “surge-fx” conflicted with a couple of important use cases on Windows so we kind of had to bite the bullet. Let me know if you have trouble getting the new version installed Best |
Again with Don Lewis on #surge-irc
He wanted to have OSC2 4hz off from OSC1 but a constant 4HZ. So A4 is 444 and A5 is 884 not 888.
The pitch adjustment right now is in note space. So If you set a 1% pitch drift you get 444 and 884
So really a 'master tuning in frequency space' control. This amounts to using the note table I whack around in the .scl code with an offset per osc.
The text was updated successfully, but these errors were encountered: