View Issue Details

IDProjectCategoryView StatusLast Update
0004774ardourbugspublic2012-06-25 19:40
Reporter317wurst Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status confirmedResolutionopen 
Product Version3.0-beta3 
Target Version3.0 
Summary0004774: NI Maschine doesn't pass plugin scan
DescriptionNI Maschine (1.7.2 public release) doesn't pass plugin scan in Ardour 3 beta.
When Ardour is launchedand the plug-ins are scanned, there's an infinite loop and a parsing error MsgBox is thrown.
Additional InformationOSX 10.7.3, reproduced on 3 different systems (iMac, Mac Mini, MacBook Pro)
TagsNo tags attached.

Activities

2012-03-16 10:07

 

parsingError.png (18,244 bytes)   
parsingError.png (18,244 bytes)   

317wurst

2012-03-16 10:10

reporter   ~0012942

This is tracked as issue MAS-7876 at Native Instruments

paul

2012-03-17 14:40

administrator   ~0012951

Do you know how to run Apple's own AU validation tool (auval)? It would be worth checking to see if that works correctly on 10.7.3 with this plugin. I can explain the process if you don't know ...

317wurst

2012-03-19 01:10

reporter   ~0012967

Running auval is a standard test case.
Maschine 1.7.2 passes auval without errors.

paul

2012-06-19 16:32

administrator   ~0013615

Tom - although Mantis works OK as a communication medium, it might be helpful to start an email conversation about this since issues with NI plugins appear to extend beyond Maschine, and I'm starting to look seriously at this now. paul@linuxaudiosystems.com

paul

2012-06-19 18:29

administrator   ~0013623

probably unrelated error: i get this crash trying to open Battery's GUI editor:

0 Battery 3.MusicDevice.component 0x0ee90769 NI::Battery::FormManager::SetEngineRef(BEngine*) + 25
1 Battery 3.MusicDevice.component 0x0e347ae4 BEngine::InitFormManager(BFormManager*) + 36
2 Battery 3.MusicDevice.component 0x0e2405d9 BPluginEditor::createAndAddForms() + 57
3 Battery 3.MusicDevice.component 0x0ee7d3e8 NI::AU::EditorNGL::create(NIAUCocoaView*) + 24
4 Battery 3.MusicDevice.component 0x0e244f11 -[NIBattery3AUCocoaViewFactory uiViewForAudioUnit:withSize:] + 145
5 ardour-3.0 0x00fd51c4 AUPluginUI::create_cocoa_view() + 4448 (au_pluginui.mm:370)
6 ardour-3.0 0x00fd918a AUPluginUI::AUPluginUI(boost::shared_ptr<ARDOUR::PluginInsert>) + 3426 (au_pluginui.mm:184)
7 ardour-3.0 0x00fd9b6a create_au_gui(boost::shared_ptr<ARDOUR::PluginInsert>, Gtk::VBox**) + 90 (au_pluginui.mm:743)

this looks to me like a clear case of plugin error, but it could also be a memory/pointer walk somewhere in ardour (since there is another crash when inserting Battery into a MIDI track, more details on that coming up).

paul

2012-06-19 18:48

administrator   ~0013624

it appears that at least NI Battery has some different ideas about how to use an AudioBufferList than every other plugin that we've tested so far.

Thread 11 Crashed:
0 libsystem_c.dylib 0x905699e4 memmove$VARIANT$sse42 + 39
1 Battery 3.MusicDevice.component 0x0eb2a804 AUBufferList::SetBufferList(AudioBufferList const&) + 112
2 Battery 3.MusicDevice.component 0x0eb2a962 AUBase::DoRenderBus(unsigned long&, AudioTimeStamp const&, unsigned long, AUOutputElement*, unsigned long, AudioBufferList&) + 180
3 Battery 3.MusicDevice.component 0x0eb2961e AUBase::DoRender(unsigned long&, AudioTimeStamp const&, unsigned long, unsigned long, AudioBufferList&) + 408
4 Battery 3.MusicDevice.component 0x0eb2e96d AudioUnitBaseRender(AUBase*, unsigned long*, AudioTimeStamp const*, unsigned long, unsigned long, AudioBufferList*) + 85
5 libappleutility.dylib 0x0553e0a0 CAAudioUnit::AUState::Render(unsigned long*, AudioTimeStamp const*, unsigned long, unsigned long, AudioBufferList*) + 114 (CAAudioUnit.cpp:114)
6 libappleutility.dylib 0x0553a12f CAAudioUnit::Render(unsigned long*, AudioTimeStamp const*, unsigned long, unsigned long, AudioBufferList*) + 105 (CAAudioUnit.cpp:1129)
7 libardour.dylib 0x036b4502 ARDOUR::AUPlugin::connect_and_run(ARDOUR::BufferSet&, ARDOUR::ChanMapping, ARDOUR::ChanMapping, unsigned int, long long) + 2802 (audio_unit.cc:1371)
8 libardour.dylib 0x0335878b ARDOUR::PluginInsert::connect_and_run(ARDOUR::BufferSet&, unsigned int, long long, bool, long long) + 2811 (plugin_insert.cc:397)
9 libardour.dylib 0x03359674 ARDOUR::PluginInsert::run(ARDOUR::BufferSet&, long long, long long, unsigned int, bool) + 210 (plugin_insert.cc:461)

is there a good way of debugging this with a demo version?

paul

2012-06-19 20:47

administrator   ~0013626

ok, so the AudioBufferList crash is reasonably clear. its a case of "perfectly configurable plugin meets perfectly configurable track and ... BOOM!". your plugin(s) offer up to 32 outputs. the ardour track (which is currently MIDI in and MIDI out, no audio) is completely configurable and is trying to determine how many audio outputs it should have to deal with the output of the plugin.

there's no good answer: Ardour can handle any number, the plugin can handle any reasonable number, there's no basis on which to pick any value in particular.

it turns out that the code i was testing picked the same number as the number of audio inputs (which was zero), and passed this as the mNumberBuffers field of an AudioBufferList. your plugin then blows up because the host (ardour) gave it no buffers, apparently.

it would be nicer if it didn't crash, but fundamentally there's a need for ardour to find some rationale for picking a particular plugin output configuration when everything is totally configurable.

paul

2012-06-20 03:31

administrator   ~0013633

ok, ardour now uses the following rule when attempting to use an instrument plugin (no audio input, some audio output) that has variable output options: use the number of inputs for the master bus, if there is no master bus, use 2.

this fixes the crash in Battery during rendering.

the crash when attempting to create the GUI is still an issue.

BenSpector

2012-06-20 10:04

reporter   ~0013635

Last edited: 2012-06-20 10:05

This is the crash log I get when trying to load "Reaktor" on a midi track.



Process: ardour-3.0 [16291]
Path: /Volumes/VOLUME/*/ardour-3.0
Identifier: ardour-3.0
Version: ??? (???)
Code Type: X86-64 (Native)
Parent Process: bash [16286]

Date/Time: 2012-06-20 13:00:54.390 +0300
OS Version: Mac OS X Server 10.7.4 (11E53)
Report Version: 9

Interval Since Last Report: 1945371 sec
Crashes Since Last Report: 105
Per-App Crashes Since Last Report: 25
Anonymous UUID: D0ABFAB8-AF71-47FA-AFD3-57CA8EFA729F

Crashed Thread: 10

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:
-->
    __TEXT 000000010f570000-0000000110c2e000 [ 22.7M] r-x/rwx SM=COW /Volumes/VOLUME/*/*.0

Application Specific Information:
objc[16291]: garbage collection is OFF

Thread 0:: Dispatch queue: com.apple.main-thread
0 libgobject-2.0.0.dylib 0x00000001155f84ac type_node_check_conformities_UorL + 28
1 libgobject-2.0.0.dylib 0x00000001155f8be4 g_type_check_instance_is_a + 148
2 libgobject-2.0.0.dylib 0x00000001155e39c6 g_object_unref + 54
3 ardour-3.0 0x000000010f58cf7a Glib::RefPtr<Gdk::Pixbuf>::~RefPtr() + 106 (refptr.h:208)
4 libgtkmm2ext.dylib 0x0000000114c2ac95 Gtkmm2ext::SliderController::SliderController(Glib::RefPtr<Gdk::Pixbuf>, Glib::RefPtr<Gdk::Pixbuf>, Gtk::Adjustment*, int, int) + 241 (slider_controller.cc:39)
5 libgtkmm2ext.dylib 0x0000000114c2b595 Gtkmm2ext::HSliderController::HSliderController(Glib::RefPtr<Gdk::Pixbuf>, Glib::RefPtr<Gdk::Pixbuf>, Gtk::Adjustment*, int, bool) + 337 (slider_controller.cc:82)
6 ardour-3.0 0x0000000110040939 ProcessorEntry::Control::Control(Glib::RefPtr<Gdk::Pixbuf>, Glib::RefPtr<Gdk::Pixbuf>, boost::shared_ptr<ARDOUR::AutomationControl>, std::string const&) + 597 (processor_box.cc:418)
7 ardour-3.0 0x000000011004a8e7 ProcessorEntry::ProcessorEntry(ProcessorBox*, boost::shared_ptr<ARDOUR::Processor>, Width) + 2889 (processor_box.cc:130)
8 ardour-3.0 0x000000011004b559 PluginInsertProcessorEntry::PluginInsertProcessorEntry(ProcessorBox*, boost::shared_ptr<ARDOUR::PluginInsert>, Width) + 137 (processor_box.cc:617)
9 ardour-3.0 0x000000011004bcc2 ProcessorBox::add_processor_to_display(boost::weak_ptr<ARDOUR::Processor>) + 432 (processor_box.cc:1490)
10 ardour-3.0 0x000000011005e5aa sigc::bound_mem_functor1<void, ProcessorBox, boost::weak_ptr<ARDOUR::Processor> >::operator()(boost::weak_ptr<ARDOUR::Processor> const&) const + 180 (mem_fun.h:1851)
11 ardour-3.0 0x000000011005e64e boost::detail::function::void_function_obj_invoker1<sigc::bound_mem_functor1<void, ProcessorBox, boost::weak_ptr<ARDOUR::Processor> >, void, boost::weak_ptr<ARDOUR::Processor> >::invoke(boost::detail::function::function_buffer&, boost::weak_ptr<ARDOUR::Processor>) + 46 (function_template.hpp:153)
12 ardour-3.0 0x000000010ffc8e40 boost::function1<void, boost::weak_ptr<ARDOUR::Processor> >::operator()(boost::weak_ptr<ARDOUR::Processor>) const + 184 (function_template.hpp:760)
13 ardour-3.0 0x000000010fe758db ARDOUR::Route::foreach_processor(boost::function<void ()(boost::weak_ptr<ARDOUR::Processor>)>) + 265 (route.h:196)
14 ardour-3.0 0x000000011004ccfb ProcessorBox::redisplay_processors() + 1009 (processor_box.cc:1374)
15 ardour-3.0 0x000000011004e844 ProcessorBox::route_processors_changed(ARDOUR::RouteProcessorChange) + 52 (processor_box.cc:1344)
16 ardour-3.0 0x000000011005a62c boost::_mfi::mf1<void, ProcessorBox, ARDOUR::RouteProcessorChange>::operator()(ProcessorBox*, ARDOUR::RouteProcessorChange) const + 148 (mem_fn_template.hpp:165)
17 ardour-3.0 0x000000011005bfb4 void boost::_bi::list2<boost::_bi::value<ProcessorBox*>, boost::arg<1> >::operator()<boost::_mfi::mf1<void, ProcessorBox, ARDOUR::RouteProcessorChange>, boost::_bi::list1<ARDOUR::RouteProcessorChange&> >(boost::_bi::type<void>, boost::_mfi::mf1<void, ProcessorBox, ARDOUR::RouteProcessorChange>&, boost::_bi::list1<ARDOUR::RouteProcessorChange&>&, int) + 114 (bind.hpp:313)
18 ardour-3.0 0x000000011005c021 void boost::_bi::bind_t<void, boost::_mfi::mf1<void, ProcessorBox, ARDOUR::RouteProcessorChange>, boost::_bi::list2<boost::_bi::value<ProcessorBox*>, boost::arg<1> > >::operator()<ARDOUR::RouteProcessorChange>(ARDOUR::RouteProcessorChange&) + 103 (bind_template.hpp:32)
19 ardour-3.0 0x000000011005a8fb boost::detail::function::void_function_obj_invoker1<boost::_bi::bind_t<void, boost::_mfi::mf1<void, ProcessorBox, ARDOUR::RouteProcessorChange>, boost::_bi::list2<boost::_bi::value<ProcessorBox*>, boost::arg<1> > >, void, ARDOUR::RouteProcessorChange>::invoke(boost::detail::function::function_buffer&, ARDOUR::RouteProcessorChange) + 43 (function_template.hpp:153)
20 ardour-3.0 0x0000000110073aaa boost::function1<void, ARDOUR::RouteProcessorChange>::operator()(ARDOUR::RouteProcessorChange) const + 166 (function_template.hpp:760)
21 ardour-3.0 0x0000000110073b1d void boost::_bi::list1<boost::_bi::value<ARDOUR::RouteProcessorChange> >::operator()<boost::function<void ()(ARDOUR::RouteProcessorChange)>, boost::_bi::list0>(boost::_bi::type<void>, boost::function<void ()(ARDOUR::RouteProcessorChange)>&, boost::_bi::list0&, int) + 81 (bind.hpp:253)
22 ardour-3.0 0x0000000110073b80 boost::_bi::bind_t<boost::_bi::unspecified, boost::function<void ()(ARDOUR::RouteProcessorChange)>, boost::_bi::list1<boost::_bi::value<ARDOUR::RouteProcessorChange> > >::operator()() + 92 (bind_template.hpp:20)
23 ardour-3.0 0x000000010fdf31e3 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<boost::_bi::unspecified, boost::function<void ()(ARDOUR::RouteProcessorChange)>, boost::_bi::list1<boost::_bi::value<ARDOUR::RouteProcessorChange> > >, void>::invoke(boost::detail::function::function_buffer&) + 35 (function_template.hpp:153)
24 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
25 libgtkmm2ext.dylib 0x0000000114bdc9c6 AbstractUI<Gtkmm2ext::UIRequest>::call_slot(PBD::EventLoop::InvalidationRecord*, boost::function<void ()()> const&) + 712 (abstract_ui.h:342)
26 ardour-3.0 0x000000010fdf3416 PBD::Signal1<void, ARDOUR::RouteProcessorChange, PBD::OptionalLastValue<void> >::compositor(boost::function<void ()(ARDOUR::RouteProcessorChange)>, PBD::EventLoop*, PBD::EventLoop::InvalidationRecord*, ARDOUR::RouteProcessorChange) + 182 (signals_generated.h:532)
27 ardour-3.0 0x000000010fdf22ec void boost::_bi::list4<boost::_bi::value<boost::function<void ()(ARDOUR::RouteProcessorChange)> >, boost::_bi::value<PBD::EventLoop*>, boost::_bi::value<PBD::EventLoop::InvalidationRecord*>, boost::arg<1> >::operator()<void (*)(boost::function<void ()(ARDOUR::RouteProcessorChange)>, PBD::EventLoop*, PBD::EventLoop::InvalidationRecord*, ARDOUR::RouteProcessorChange), boost::_bi::list1<ARDOUR::RouteProcessorChange&> >(boost::_bi::type<void>, void (*&)(boost::function<void ()(ARDOUR::RouteProcessorChange)>, PBD::EventLoop*, PBD::EventLoop::InvalidationRecord*, ARDOUR::RouteProcessorChange), boost::_bi::list1<ARDOUR::RouteProcessorChange&>&, int) + 226 (bind.hpp:457)
28 ardour-3.0 0x000000010fdf23cb void boost::_bi::bind_t<void, void (*)(boost::function<void ()(ARDOUR::RouteProcessorChange)>, PBD::EventLoop*, PBD::EventLoop::InvalidationRecord*, ARDOUR::RouteProcessorChange), boost::_bi::list4<boost::_bi::value<boost::function<void ()(ARDOUR::RouteProcessorChange)> >, boost::_bi::value<PBD::EventLoop*>, boost::_bi::value<PBD::EventLoop::InvalidationRecord*>, boost::arg<1> > >::operator()<ARDOUR::RouteProcessorChange>(ARDOUR::RouteProcessorChange&) + 103 (bind_template.hpp:32)
29 ardour-3.0 0x000000010fdf240e boost::detail::function::void_function_obj_invoker1<boost::_bi::bind_t<void, void (*)(boost::function<void ()(ARDOUR::RouteProcessorChange)>, PBD::EventLoop*, PBD::EventLoop::InvalidationRecord*, ARDOUR::RouteProcessorChange), boost::_bi::list4<boost::_bi::value<boost::function<void ()(ARDOUR::RouteProcessorChange)> >, boost::_bi::value<PBD::EventLoop*>, boost::_bi::value<PBD::EventLoop::InvalidationRecord*>, boost::arg<1> > >, void, ARDOUR::RouteProcessorChange>::invoke(boost::detail::function::function_buffer&, ARDOUR::RouteProcessorChange) + 46 (function_template.hpp:153)
30 ardour-3.0 0x0000000110073aaa boost::function1<void, ARDOUR::RouteProcessorChange>::operator()(ARDOUR::RouteProcessorChange) const + 166 (function_template.hpp:760)
31 libardour.dylib 0x0000000112fdc33b PBD::Signal1<void, ARDOUR::RouteProcessorChange, PBD::OptionalLastValue<void> >::operator()(ARDOUR::RouteProcessorChange) + 579 (signals_generated.h:641)
32 libardour.dylib 0x0000000112f9f9cb ARDOUR::Route::add_processor(boost::shared_ptr<ARDOUR::Processor>, boost::shared_ptr<ARDOUR::Processor>, ARDOUR::Route::ProcessorStreams*, bool) + 4169 (route.cc:1021)
33 libardour.dylib 0x0000000112fa0b2f ARDOUR::Route::add_processor(boost::shared_ptr<ARDOUR::Processor>, ARDOUR::Placement, ARDOUR::Route::ProcessorStreams*, bool) + 151 (route.cc:920)
34 libardour.dylib 0x0000000113037cfe ARDOUR::Session::new_midi_track(boost::shared_ptr<ARDOUR::PluginInfo>, ARDOUR::TrackMode, ARDOUR::RouteGroup*, unsigned int, std::string) + 5332 (session.cc:1654)
35 ardour-3.0 0x000000010f5e11b3 ARDOUR_UI::session_add_midi_route(bool, ARDOUR::RouteGroup*, unsigned int, std::string const&, boost::shared_ptr<ARDOUR::PluginInfo>) + 505 (ardour_ui.cc:1381)
36 ardour-3.0 0x000000010f63cc9f ARDOUR_UI::session_add_midi_track(ARDOUR::RouteGroup*, unsigned int, std::string const&, boost::shared_ptr<ARDOUR::PluginInfo>) + 95 (ardour_ui.h:231)
37 ardour-3.0 0x000000010f5eba90 ARDOUR_UI::add_route(Gtk::Window*) + 1402 (ardour_ui.cc:3145)
38 ardour-3.0 0x000000010f7eb9a2 Editor::edit_controls_button_release(_GdkEventButton*) + 66 (editor.cc:3523)
39 ardour-3.0 0x000000010fac7de4 sigc::bound_mem_functor1<bool, Editor, _GdkEventButton*>::operator()(_GdkEventButton* const&) const + 164 (mem_fun.h:1851)
40 ardour-3.0 0x000000010f871214 sigc::adaptor_functor<sigc::bound_mem_functor1<bool, Editor, _GdkEventButton*> >::deduce_result_type<_GdkEventButton* const&, void, void, void, void, void, void>::type sigc::adaptor_functor<sigc::bound_mem_functor1<bool, Editor, _GdkEventButton*> >::operator()<_GdkEventButton* const&>(_GdkEventButton* const&) const + 48 (adaptor_trait.h:84)
41 ardour-3.0 0x000000010f864028 sigc::internal::slot_call1<sigc::bound_mem_functor1<bool, Editor, _GdkEventButton*>, bool, _GdkEventButton*>::call_it(sigc::internal::slot_rep*, _GdkEventButton* const&) + 56 (slot.h:137)
42 libgtkmm-2.4.1.dylib 0x00000001160b776d _ZN12_GLOBAL__N_1L43Widget_signal_button_release_event_callbackEP10_GtkWidgetP15_GdkEventButtonPv + 61
43 libgtk-quartz-2.0.0.dylib 0x0000000115847379 _gtk_marshal_BOOLEAN__BOXED + 169
44 libgobject-2.0.0.dylib 0x00000001155dfe24 g_closure_invoke + 308
45 libgobject-2.0.0.dylib 0x00000001155efabc signal_emit_unlocked_R + 2444
46 libgobject-2.0.0.dylib 0x00000001155f092d g_signal_emit_valist + 3229
47 libgobject-2.0.0.dylib 0x00000001155f0e44 g_signal_emit + 116
48 libgtk-quartz-2.0.0.dylib 0x0000000115970808 gtk_widget_event_internal + 664
49 libgtk-quartz-2.0.0.dylib 0x000000011584416e gtk_propagate_event + 366
50 libgtk-quartz-2.0.0.dylib 0x00000001158453ea gtk_main_do_event + 1450
51 libgdk-quartz-2.0.0.dylib 0x0000000115c3c597 gdk_event_dispatch + 87
52 libglib-2.0.0.dylib 0x000000011566943e g_main_context_dispatch + 446
53 libglib-2.0.0.dylib 0x000000011566b17e g_main_context_iterate + 510
54 libglib-2.0.0.dylib 0x000000011566c74f g_main_loop_run + 287
55 libgtk-quartz-2.0.0.dylib 0x0000000115845780 gtk_main + 176
56 libgtkmm2ext.dylib 0x0000000114bc73f8 Gtkmm2ext::UI::run(Receiver&) + 494 (gtk_ui.cc:269)
57 ardour-3.0 0x000000010fd1cf81 main + 2081 (main.cc:456)
58 ardour-3.0 0x000000010f583334 start + 52

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff966af7e6 kevent + 10
1 libdispatch.dylib 0x00007fff8a3dd78a _dispatch_mgr_invoke + 923
2 libdispatch.dylib 0x00007fff8a3dc31a _dispatch_mgr_thread + 54

Thread 2:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libglib-2.0.0.dylib 0x00000001156aa5f7 g_cond_wait + 87
3 libardour.dylib 0x00000001131d7633 _ZL16peak_thread_workv + 291 (source_factory.cc:71)
4 ardour-3.0 0x00000001100589d3 sigc::pointer_functor0<void>::operator()() const + 21 (ptr_fun.h:77)
5 ardour-3.0 0x00000001100589ff sigc::adaptor_functor<sigc::pointer_functor0<void> >::operator()() const + 37 (adaptor_trait.h:251)
6 ardour-3.0 0x0000000110054e6d sigc::internal::slot_call0<sigc::pointer_functor0<void>, void>::call_it(sigc::internal::slot_rep*) + 45 (slot.h:103)
7 libglibmm-2.4.1.dylib 0x000000011556c4d6 call_thread_entry_slot + 38
8 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
9 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
10 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libglib-2.0.0.dylib 0x00000001156aa5f7 g_cond_wait + 87
3 libardour.dylib 0x00000001131d7633 _ZL16peak_thread_workv + 291 (source_factory.cc:71)
4 ardour-3.0 0x00000001100589d3 sigc::pointer_functor0<void>::operator()() const + 21 (ptr_fun.h:77)
5 ardour-3.0 0x00000001100589ff sigc::adaptor_functor<sigc::pointer_functor0<void> >::operator()() const + 37 (adaptor_trait.h:251)
6 ardour-3.0 0x0000000110054e6d sigc::internal::slot_call0<sigc::pointer_functor0<void>, void>::call_it(sigc::internal::slot_rep*) + 45 (slot.h:103)
7 libglibmm-2.4.1.dylib 0x000000011556c4d6 call_thread_entry_slot + 38
8 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
9 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
10 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libglib-2.0.0.dylib 0x00000001156aa5f7 g_cond_wait + 87
3 libardour.dylib 0x00000001129f31eb ARDOUR::Analyser::work() + 327 (analyser.cc:85)
4 libardour.dylib 0x00000001129f3589 _ZL13analyser_workv + 9 (analyser.cc:47)
5 ardour-3.0 0x00000001100589d3 sigc::pointer_functor0<void>::operator()() const + 21 (ptr_fun.h:77)
6 ardour-3.0 0x00000001100589ff sigc::adaptor_functor<sigc::pointer_functor0<void> >::operator()() const + 37 (adaptor_trait.h:251)
7 ardour-3.0 0x0000000110054e6d sigc::internal::slot_call0<sigc::pointer_functor0<void>, void>::call_it(sigc::internal::slot_rep*) + 45 (slot.h:103)
8 libglibmm-2.4.1.dylib 0x000000011556c4d6 call_thread_entry_slot + 38
9 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff966af192 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8eee1594 _pthread_wqthread + 758
2 libsystem_c.dylib 0x00007fff8eee2b85 start_wqthread + 13

Thread 6:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libgdk-quartz-2.0.0.dylib 0x0000000115c3cbab select_thread_func + 75
3 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
4 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 7:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libjack.0.dylib 0x00000001169c36e2 mb_thread_func + 114
3 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
4 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff966aedf2 __select + 10
1 libsystem_kernel.dylib 0x00007fff966ae284 select + 58
2 libjack.0.dylib 0x00000001169c27fa jack_client_core_wait + 106
3 libjack.0.dylib 0x00000001169bf8f9 jack_client_thread + 121
4 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
5 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112c9dedb ARDOUR::Graph::routes_no_roll(unsigned int, long long, long long, bool, int) + 915 (graph.cc:554)
3 libardour.dylib 0x0000000113121f73 ARDOUR::Session::no_roll(unsigned int) + 765 (session_process.cc:121)
4 libardour.dylib 0x000000011311f185 ARDOUR::Session::process_with_events(unsigned int) + 1693 (session_process.cc:367)
5 libardour.dylib 0x000000011312430c ARDOUR::Session::process(unsigned int) + 322 (session_process.cc:80)
6 libardour.dylib 0x0000000112a794bc ARDOUR::AudioEngine::process_callback(unsigned int) + 1274 (audioengine.cc:526)
7 libardour.dylib 0x0000000112a7bf99 ARDOUR::AudioEngine::process_thread() + 197 (audioengine.cc:439)
8 libardour.dylib 0x0000000112a7b3f6 ARDOUR::AudioEngine::_process_thread(void*) + 24 (audioengine.cc:335)
9 libjack.0.dylib 0x00000001169bfa3b jack_client_process_thread + 171
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 10 Crashed:
0 Reaktor5.MusicDevice.component 0x000000011d0abd3d AUBufferList::PrepareBuffer(CAStreamBasicDescription const&, unsigned int) + 65
1 Reaktor5.MusicDevice.component 0x000000011d0ab86a AUInputElement::PullInput(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int) + 156
2 Reaktor5.MusicDevice.component 0x000000011d2b3eeb NI::AB::InterfaceAU::Render(unsigned int&, AudioTimeStamp const&, unsigned int) + 1947
3 Reaktor5.MusicDevice.component 0x000000011d0a897c AUBase::DoRenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, AUOutputElement*, unsigned int, AudioBufferList&) + 124
4 Reaktor5.MusicDevice.component 0x000000011d0a7bee AUBase::DoRender(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int, AudioBufferList&) + 368
5 Reaktor5.MusicDevice.component 0x000000011d0ac119 AudioUnitBaseRender(AUBase*, unsigned int*, AudioTimeStamp const*, unsigned int, unsigned int, AudioBufferList*) + 53
6 libappleutility.dylib 0x00000001154ef914 CAAudioUnit::AUState::Render(unsigned int*, AudioTimeStamp const*, unsigned int, unsigned int, AudioBufferList*) + 102 (CAAudioUnit.cpp:114)
7 libappleutility.dylib 0x00000001154eb577 CAAudioUnit::Render(unsigned int*, AudioTimeStamp const*, unsigned int, unsigned int, AudioBufferList*) + 105 (CAAudioUnit.cpp:1129)
8 libardour.dylib 0x0000000113263ec9 ARDOUR::AUPlugin::connect_and_run(ARDOUR::BufferSet&, ARDOUR::ChanMapping, ARDOUR::ChanMapping, unsigned int, long long) + 3019 (audio_unit.cc:1371)
9 libardour.dylib 0x0000000112ea9ce7 ARDOUR::PluginInsert::connect_and_run(ARDOUR::BufferSet&, unsigned int, long long, bool, long long) + 2745 (plugin_insert.cc:397)
10 libardour.dylib 0x0000000112eaaafa ARDOUR::PluginInsert::run(ARDOUR::BufferSet&, long long, long long, unsigned int, bool) + 174 (plugin_insert.cc:461)
11 libardour.dylib 0x0000000112fa93fe ARDOUR::Route::process_output_buffers(ARDOUR::BufferSet&, long long, long long, unsigned int, int, bool) + 3548 (route.cc:533)
12 libardour.dylib 0x0000000112fa7f99 ARDOUR::Route::passthru(long long, long long, unsigned int, int) + 1537 (route.cc:582)
13 libardour.dylib 0x0000000113215f11 ARDOUR::Track::no_roll(unsigned int, long long, long long, bool) + 1239 (track.cc:428)
14 libardour.dylib 0x0000000112dde0e0 ARDOUR::MidiTrack::no_roll(unsigned int, long long, long long, bool) + 82 (midi_track.cc:394)
15 libardour.dylib 0x0000000112c9d98e ARDOUR::Graph::process_one_route(ARDOUR::Route*) + 868 (graph.cc:570)
16 libardour.dylib 0x0000000112cabd70 ARDOUR::GraphNode::process() + 126 (graphnode.cc:80)
17 libardour.dylib 0x0000000112ca0643 ARDOUR::Graph::run_one() + 2043 (graph.cc:394)
18 libardour.dylib 0x0000000112ca230c ARDOUR::Graph::main_thread() + 1152 (graph.cc:449)
19 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
20 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
21 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
22 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
23 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
24 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
25 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
26 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 11:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 12:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 13:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 14:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 15:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 16:
0 libsystem_kernel.dylib 0x00007fff966afc1e sem_wait + 10
1 libardour.dylib 0x0000000112ca9da4 PBD::ProcessSemaphore::wait() + 32 (semutils.h:41)
2 libardour.dylib 0x0000000112ca03b0 ARDOUR::Graph::run_one() + 1384 (graph.cc:381)
3 libardour.dylib 0x0000000112ca0b28 ARDOUR::Graph::helper_thread() + 124 (graph.cc:411)
4 libardour.dylib 0x0000000112ca6bdf boost::_mfi::mf0<void, ARDOUR::Graph>::operator()(ARDOUR::Graph*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112ca7008 void boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> >::operator()<boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::Graph>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112ca706a boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112ca6eb0 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::Graph>, boost::_bi::list1<boost::_bi::value<ARDOUR::Graph*> > >, void>::invoke(boost::detail::function::function_buffer&) + 32 (function_template.hpp:153)
8 ardour-3.0 0x000000010f71dedf boost::function0<void>::operator()() const + 143 (function_template.hpp:760)
9 libardour.dylib 0x0000000112a722d2 ARDOUR::AudioEngine::_start_process_thread(void*) + 108 (audioengine.cc:1510)
10 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
11 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 17:
0 libsystem_kernel.dylib 0x00007fff966afa7a poll + 10
1 libardour.dylib 0x0000000112b25af3 ARDOUR::Butler::thread_work() + 201 (butler.cc:150)
2 libardour.dylib 0x0000000112b2787a ARDOUR::Butler::_thread_work(void*) + 196 (butler.cc:134)
3 libpbd.dylib 0x0000000114f5c043 _ZL17fake_thread_startPv + 131 (pthread_utils.cc:81)
4 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
5 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 18:
0 libsystem_kernel.dylib 0x00007fff966aedf2 __select + 10
1 libsystem_kernel.dylib 0x00007fff966ae284 select + 58
2 libglib-2.0.0.dylib 0x0000000115678383 g_poll + 275
3 libglib-2.0.0.dylib 0x000000011566b125 g_main_context_iterate + 421
4 libglib-2.0.0.dylib 0x000000011566c74f g_main_loop_run + 287
5 libpbd.dylib 0x0000000114f12ae3 BaseUI::main_thread() + 1029 (base_ui.cc:81)
6 libpbd.dylib 0x0000000114f155c0 sigc::bound_mem_functor0<void, BaseUI>::operator()() const + 150 (mem_fun.h:1787)
7 libpbd.dylib 0x0000000114f155eb sigc::adaptor_functor<sigc::bound_mem_functor0<void, BaseUI> >::operator()() const + 37 (adaptor_trait.h:251)
8 libpbd.dylib 0x0000000114f150ad sigc::internal::slot_call0<sigc::bound_mem_functor0<void, BaseUI>, void>::call_it(sigc::internal::slot_rep*) + 45 (slot.h:103)
9 libglibmm-2.4.1.dylib 0x000000011556c4d6 call_thread_entry_slot + 38
10 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
11 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
12 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 19:
0 libsystem_kernel.dylib 0x00007fff966aee42 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff8ee95dea nanosleep + 164
2 libglib-2.0.0.dylib 0x000000011569047b g_usleep + 107
3 libardour.dylib 0x0000000112a77d75 ARDOUR::AudioEngine::meter_thread() + 45 (audioengine.cc:704)
4 libardour.dylib 0x0000000112a87dbf boost::_mfi::mf0<void, ARDOUR::AudioEngine>::operator()(ARDOUR::AudioEngine*) const + 125 (mem_fn_template.hpp:49)
5 libardour.dylib 0x0000000112a880c6 void boost::_bi::list1<boost::_bi::value<ARDOUR::AudioEngine*> >::operator()<boost::_mfi::mf0<void, ARDOUR::AudioEngine>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, ARDOUR::AudioEngine>&, boost::_bi::list0&, int) + 78 (bind.hpp:253)
6 libardour.dylib 0x0000000112a88128 boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::AudioEngine>, boost::_bi::list1<boost::_bi::value<ARDOUR::AudioEngine*> > >::operator()() + 92 (bind_template.hpp:20)
7 libardour.dylib 0x0000000112a88146 sigc::adaptor_functor<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::AudioEngine>, boost::_bi::list1<boost::_bi::value<ARDOUR::AudioEngine*> > > >::operator()() const + 24 (adaptor_trait.h:251)
8 libardour.dylib 0x0000000112a824bd sigc::internal::slot_call0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, ARDOUR::AudioEngine>, boost::_bi::list1<boost::_bi::value<ARDOUR::AudioEngine*> > >, void>::call_it(sigc::internal::slot_rep*) + 45 (slot.h:103)
9 libglibmm-2.4.1.dylib 0x000000011556c4d6 call_thread_entry_slot + 38
10 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
11 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
12 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 20:
0 libsystem_kernel.dylib 0x00007fff966af192 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8eee1594 _pthread_wqthread + 758
2 libsystem_c.dylib 0x00007fff8eee2b85 start_wqthread + 13

Thread 21:
0 libsystem_kernel.dylib 0x00007fff966af192 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8eee1594 _pthread_wqthread + 758
2 libsystem_c.dylib 0x00007fff8eee2b85 start_wqthread + 13

Thread 22:
0 libsystem_kernel.dylib 0x00007fff966aebca __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8eee3274 _pthread_cond_wait + 840
2 libglib-2.0.0.dylib 0x00000001156aa425 g_cond_wait_until + 149
3 libglib-2.0.0.dylib 0x000000011563ea4e g_async_queue_pop_intern_unlocked + 110
4 libglib-2.0.0.dylib 0x000000011563ec14 g_async_queue_timeout_pop + 52
5 libglib-2.0.0.dylib 0x000000011568fa98 g_thread_pool_thread_proxy + 488
6 libglib-2.0.0.dylib 0x000000011568ebda g_thread_proxy + 90
7 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
8 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 23:
0 libsystem_kernel.dylib 0x00007fff966ad6b6 semaphore_wait_trap + 10
1 Reaktor5.MusicDevice.component 0x000000011d48cd9c NI::SD::CompilerScheduler::runCompilerThread() + 60
2 Reaktor5.MusicDevice.component 0x000000011d0bf459 NI::GP::Thread::execute(void*) + 73
3 libsystem_c.dylib 0x00007fff8eedf8bf _pthread_start + 335
4 libsystem_c.dylib 0x00007fff8eee2b75 thread_start + 13

Thread 10 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000001 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000400
  rdi: 0x00007fa0b2c13650 rsi: 0x00007fa0b2c13628 rbp: 0x000000011bab94d0 rsp: 0x000000011bab94c0
   r8: 0x0000000000000400 r9: 0x00007fa0b2c13628 r10: 0x00007fa0a948a800 r11: 0x0000000000000001
  r12: 0x0000000000000400 r13: 0x000000011bab9a08 r14: 0x000000011bab9644 r15: 0x0000000000000000
  rip: 0x000000011d0abd3d rfl: 0x0000000000010246 cr2: 0x0000000000000000
Logical CPU: 4

Binary Images:
       0x10f570000 - 0x110c2dfef +ardour-3.0 (??? - ???) <6E98800D-F31F-3916-A49E-14E6DC174E3A> /Volumes/VOLUME/*/ardour-3.0
       0x112915000 - 0x112954ff7 +libardourcp.dylib (??? - ???) <5091D6E7-7BEE-303D-BA71-E154B0869FA4> /Volumes/VOLUME/*/libardourcp.dylib
       0x1129d8000 - 0x1135e2ff7 +libardour.dylib (??? - ???) <3A0D43F6-0C3A-365B-8C30-4BC91A12503F> /Volumes/VOLUME/*/libardour.dylib
       0x114669000 - 0x114750ff7 +libmidipp.dylib (??? - ???) <74FFF453-9B02-309F-B7FE-82094425080D> /Volumes/VOLUME/*/libmidipp.dylib
       0x11491a000 - 0x1149bafff +libevoral.dylib (??? - ???) <5A42D6FA-64BA-3517-AFA3-C00BAE32F937> /Volumes/VOLUME/*/libevoral.dylib
       0x114aaf000 - 0x114aedfff +libaudiographer.dylib (??? - ???) <9F2A16A1-5099-3A51-A883-1FCCCC003858> /Volumes/VOLUME/*/libaudiographer.dylib
       0x114b4b000 - 0x114b4cfff +pango-basic-coretext.so (??? - ???) <DA0B876B-E846-3397-B83E-0124F5BFED3D> /Users/USER/*/pango-basic-coretext.so
       0x114b50000 - 0x114cbcfff +libgtkmm2ext.dylib (??? - ???) <EA55F976-D6EB-3075-B1F1-E7DAFE6CA380> /Volumes/VOLUME/*/libgtkmm2ext.dylib
       0x114f0c000 - 0x114fdafff +libpbd.dylib (??? - ???) <4B9C657B-E7CA-3630-931B-299DA0FE6E0F> /Volumes/VOLUME/*/libpbd.dylib
       0x115133000 - 0x115135fff +libpixbufloader-png.so (??? - ???) <F150D957-3653-30D8-A8D5-E486DA5C9D34> /Users/USER/*/libpixbufloader-png.so
       0x115139000 - 0x115149ff7 +libsmf.dylib (??? - ???) <52794131-B7B8-33B0-BB71-695047246B16> /Volumes/VOLUME/*/libsmf.dylib
       0x115152000 - 0x115154ff7 +libtimecode.dylib (??? - ???) <5DA0CAB2-4409-36BD-86AA-FFE754F4E49B> /Volumes/VOLUME/*/libtimecode.dylib
       0x115159000 - 0x115222fff +libtaglib.dylib (??? - ???) <1D0F9623-D264-36D4-ADD2-10FC1A02E174> /Volumes/VOLUME/*/libtaglib.dylib
       0x1152f8000 - 0x1152f9fff com.digidesign.fwfamily.halplugin (9.0 - 9.0f121) <A0796ABF-E517-234E-3FCF-7471EBD8FD60> /System/Library/Extensions/DigidesignFireWireAudio.kext/Contents/PlugIns/DGFWHALPlugIn.bundle/Contents/MacOS/DGFWHALPlugIn
       0x1152fe000 - 0x115352fff +librubberband.dylib (??? - ???) <A6102157-8EBF-382C-A299-D81A874A6903> /Volumes/VOLUME/*/librubberband.dylib
       0x1153bd000 - 0x1153fcff7 +libvamphost.dylib (??? - ???) <DA2E4536-9F67-3096-AA98-5210080B6B1B> /Volumes/VOLUME/*/libvamphost.dylib
       0x11545d000 - 0x115487ff7 +libvampplugin.dylib (??? - ???) <DCA730B5-9D87-3D3B-8E47-CC388009D4C9> /Volumes/VOLUME/*/libvampplugin.dylib
       0x1154e1000 - 0x1154fffff +libappleutility.dylib (??? - ???) <4A6E01FA-4D43-3645-B405-B97D18CE2CE9> /Volumes/VOLUME/*/libappleutility.dylib
       0x11552b000 - 0x115552fef +libFLAC.8.dylib (11.0.0 - compatibility 11.0.0) <D526C641-BBB1-3914-B663-8F2BF7A468B0> /Users/USER/*/libFLAC.8.dylib
       0x11555f000 - 0x1155a7ff7 +libglibmm-2.4.1.dylib (5.0.0 - compatibility 5.0.0) <6614CFC8-BD0C-3C94-BEE1-DC2BA9B53315> /Users/USER/*/libglibmm-2.4.1.dylib
       0x1155da000 - 0x115616fef +libgobject-2.0.0.dylib (3201.2.0 - compatibility 3201.0.0) <38BF79B9-0310-32A1-85B5-0FADDEAE6306> /Users/USER/*/libgobject-2.0.0.dylib
       0x115630000 - 0x115633ff7 +libsigc-2.0.0.dylib (??? - ???) <7A35D96A-C64E-31AA-BF8A-9A86131CE1E9> /Users/USER/*/libsigc-2.0.0.dylib
       0x115639000 - 0x115740fef +libglib-2.0.0.dylib (3201.2.0 - compatibility 3201.0.0) <216A6695-1E29-3C6B-8852-AB69E84B2CFA> /Users/USER/*/libglib-2.0.0.dylib
       0x115766000 - 0x115766ff7 +libgthread-2.0.0.dylib (3201.2.0 - compatibility 3201.0.0) <7987784D-1838-3520-95BA-2F60990AAA4A> /Users/USER/*/libgthread-2.0.0.dylib
       0x11576a000 - 0x115b3afef +libgtk-quartz-2.0.0.dylib (2401.11.0 - compatibility 2401.0.0) <086D06D7-B862-3D88-B60D-4BB670117D5E> /Users/USER/*/libgtk-quartz-2.0.0.dylib
       0x115c03000 - 0x115c84fef +libgdk-quartz-2.0.0.dylib (2401.11.0 - compatibility 2401.0.0) <E653E4F3-CDB2-3E3B-9C28-2B58B7514FA7> /Users/USER/*/libgdk-quartz-2.0.0.dylib
       0x115cab000 - 0x115cc5fef +libatk-1.0.0.dylib (20210.1.0 - compatibility 20210.0.0) <E6F544E7-4E13-3471-9E35-F8CC0C07082C> /Users/USER/*/libatk-1.0.0.dylib
       0x115cd2000 - 0x115cd3ff7 +pango-basic-fc.so (??? - ???) <A5F987ED-F9DB-3BC1-AF53-91E36E100FE0> /Users/USER/*/pango-basic-fc.so
       0x115cd8000 - 0x115df7fe7 +libgio-2.0.0.dylib (3201.2.0 - compatibility 3201.0.0) <D577A612-009D-3A9C-B346-B11EF02448C5> /Users/USER/*/libgio-2.0.0.dylib
       0x115e4f000 - 0x115e5afe7 +libpangocairo-1.0.0.dylib (2906.0.0 - compatibility 2906.0.0) <2F0945B8-A9C8-3C4E-AB3F-FADD5FDFC84D> /Users/USER/*/libpangocairo-1.0.0.dylib
       0x115e63000 - 0x115e7aff7 +libgdk_pixbuf-2.0.0.dylib (2501.0.0 - compatibility 2501.0.0) <100AEA0E-6A51-3F02-B42E-050278ED304C> /Users/USER/*/libgdk_pixbuf-2.0.0.dylib
       0x115e84000 - 0x115ec1fe7 +libpango-1.0.0.dylib (2906.0.0 - compatibility 2906.0.0) <D8E415FA-0156-3B9D-ACD5-4D1665EB2D61> /Users/USER/*/libpango-1.0.0.dylib
       0x115ed3000 - 0x115f6eff7 +libcairo.2.dylib (11003.2.0 - compatibility 11003.0.0) <1B6B31E6-3423-3882-B23F-3C1417926AC5> /Users/USER/*/libcairo.2.dylib
       0x115f95000 - 0x115f99ff7 +libogg.0.dylib (9.0.0 - compatibility 9.0.0) <E6D9CFF4-F17E-3BF3-8D69-5BE37163BBB3> /Users/USER/*/libogg.0.dylib
       0x115f9c000 - 0x115fe9ff7 +libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <7D28D4B3-C37E-3FAD-A1E5-F6C8609A6959> /Users/USER/*/libcurl.4.dylib
       0x115ffa000 - 0x1161caff7 +libgtkmm-2.4.1.dylib (3.0.0 - compatibility 3.0.0) <5E3F00CA-DED3-3FE7-A72E-BE35BE5F7388> /Users/USER/*/libgtkmm-2.4.1.dylib
       0x1163dd000 - 0x116409ff7 +libatkmm-1.6.1.dylib (3.0.0 - compatibility 3.0.0) <D9A57991-CAD3-3486-B1E8-76E26B1217E0> /Users/USER/*/libatkmm-1.6.1.dylib
       0x11642d000 - 0x11645afff +libgdkmm-2.4.1.dylib (3.0.0 - compatibility 3.0.0) <123C83BF-8901-31BF-AACA-C60914BD85AE> /Users/USER/*/libgdkmm-2.4.1.dylib
       0x11647e000 - 0x11653dfff +libgiomm-2.4.1.dylib (5.0.0 - compatibility 5.0.0) <27B64E71-1770-3340-BD16-5A53705A3F33> /Users/USER/*/libgiomm-2.4.1.dylib
       0x1165ca000 - 0x1165e1ff7 +libpangomm-1.4.1.dylib (2.30.0 - compatibility 2.0.0) <8562AE72-4912-3DBA-A211-06085C4246CE> /Users/USER/*/libpangomm-1.4.1.dylib
       0x1165fe000 - 0x116613fff +libcairomm-1.0.1.dylib (6.0.0 - compatibility 6.0.0) <FD24806E-1C7B-3F54-94AB-35A64B12FD31> /Users/USER/*/libcairomm-1.0.1.dylib
       0x116628000 - 0x11664bff7 +libgnomecanvasmm-2.6.1.dylib (2.6.0 - compatibility 2.0.0) <8DB2C9B6-03E6-3C02-9812-86145F6B0B48> /Users/USER/*/libgnomecanvasmm-2.6.1.dylib
       0x116674000 - 0x11669ffff +libgnomecanvas-2.0.dylib (3001.3.0 - compatibility 3001.0.0) <01818BB6-8141-3350-B738-C0B2F4B43E19> /Users/USER/*/libgnomecanvas-2.0.dylib
       0x1166b4000 - 0x1166c8ff7 +libart_lgpl_2.2.dylib (6.21.0 - compatibility 6.0.0) <D81F07A6-9F34-3FCF-941D-3C6C869B7108> /Users/USER/*/libart_lgpl_2.2.dylib
       0x1166d0000 - 0x1166f1fe7 +libpangoft2-1.0.0.dylib (2906.0.0 - compatibility 2906.0.0) <4DB4EF8C-3369-30D1-BCB5-37B512558EA5> /Users/USER/*/libpangoft2-1.0.0.dylib
       0x116703000 - 0x116784fef +libfreetype.6.dylib (15.0.0 - compatibility 15.0.0) <515B67B5-4344-365A-8744-5803B86DA309> /Users/USER/*/libfreetype.6.dylib
       0x116799000 - 0x1167cbfff +libfontconfig.1.dylib (6.4.0 - compatibility 6.0.0) <B7AB505B-C3C8-38F1-B07B-44CF301B88AB> /Users/USER/*/libfontconfig.1.dylib
       0x1167da000 - 0x1167dbfff +libsuil-0.dylib (??? - ???) <2EB9AB2F-9077-36C6-BD19-C0A2BC71967E> /Users/USER/*/libsuil-0.dylib
       0x1167e2000 - 0x11691eff7 +libxml2.2.dylib (10.8.0 - compatibility 10.0.0) <F15F8BAE-A915-3C66-9A14-590575642350> /Users/USER/*/libxml2.2.dylib
       0x116951000 - 0x1169aafef +libsndfile.1.dylib (2.25.0 - compatibility 2.0.0) <0504227B-09E2-3B37-BB6F-3E1C8D1E509C> /Users/USER/*/libsndfile.1.dylib
       0x1169be000 - 0x1169cbff7 +libjack.0.dylib (1.28.0 - compatibility 1.0.0) <07D9FB6C-7FB7-365E-99D6-68BACCA82FFA> /usr/local/lib/libjack.0.dylib
       0x1169d9000 - 0x1169dbfff com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
       0x1169e0000 - 0x1169ebff7 +libaubio.2.dylib (4.1.0 - compatibility 4.0.0) <FB25F38C-B6B2-33D8-AC9B-AAD273C95B2A> /Users/USER/*/libaubio.2.dylib
       0x1169f2000 - 0x116b5bfff +libsamplerate.0.dylib (2.8.0 - compatibility 2.0.0) <C9DCCFAE-AE98-3B7C-90DA-91F22B18599D> /Users/USER/*/libsamplerate.0.dylib
       0x116b65000 - 0x116b69ff7 +liblrdf.2.dylib (3.0.0 - compatibility 3.0.0) <E9B4FEC5-6708-3C7B-8565-17D03BE7E1EB> /Users/USER/*/liblrdf.2.dylib
       0x116b7b000 - 0x116b91fef +liblilv-0.dylib (??? - ???) <66A4373F-38FB-365D-9724-DD74BF703C40> /Users/USER/*/liblilv-0.dylib
       0x116b9e000 - 0x116ba5fef +libsratom-0.dylib (??? - ???) <5C1E797E-5FEA-3EA7-9A3C-FE19D0F58323> /Users/USER/*/libsratom-0.dylib
       0x116bab000 - 0x116bb2fe7 +libsord-0.dylib (??? - ???) <9A08B7F0-9C60-3F24-863E-A95468B60990> /Users/USER/*/libsord-0.dylib
       0x116bbd000 - 0x116bcdfef +libserd-0.dylib (??? - ???) <2D056125-4F12-3A5A-BAA9-7A439585596B> /Users/USER/*/libserd-0.dylib
       0x116bd2000 - 0x116cc5ff7 +libfftw3.3.dylib (7.1.0 - compatibility 7.0.0) <597A5BC9-9B2E-33BD-8A6A-BB95521396BC> /Users/USER/*/libfftw3.3.dylib
       0x116ce2000 - 0x116dcafe7 +libfftw3f.3.dylib (7.1.0 - compatibility 7.0.0) <99CB6E65-ADC4-33D2-9645-7C94DF8E6881> /Users/USER/*/libfftw3f.3.dylib
       0x116de5000 - 0x116e13ff7 com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <FF3E72F7-8076-3FCA-A7B9-6A8D869520C9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
       0x116e2d000 - 0x116e36fff +libintl.8.dylib (10.1.0 - compatibility 10.0.0) <059981EC-AE16-32FA-ACC6-212B63F795C6> /Users/USER/*/libintl.8.dylib
       0x116e3b000 - 0x116f1aff7 +libiconv.2.dylib (8.1.0 - compatibility 8.0.0) <10D13A5F-41D7-320F-9C26-D45C9418314C> /Users/USER/*/libiconv.2.dylib
       0x116f28000 - 0x116f29fff +libgmodule-2.0.0.dylib (3201.2.0 - compatibility 3201.0.0) <34683E2F-08E6-3B96-83E4-A834EE658492> /Users/USER/*/libgmodule-2.0.0.dylib
       0x116f2e000 - 0x116f30ff7 +libffi.5.dylib (6.10.0 - compatibility 6.0.0) <941207B1-81C6-3435-812D-2018D35048DA> /Users/USER/*/libffi.5.dylib
       0x116f34000 - 0x116f47fef +libz.1.dylib (1.2.6 - compatibility 1.0.0) <373ABE20-11DF-3A27-9723-EE5100E34E04> /Users/USER/*/libz.1.dylib
       0x116f4b000 - 0x1171c1fff +libvorbisenc.2.dylib (3.8.0 - compatibility 3.0.0) <551562DB-286C-34F8-8F0D-464B95EA847D> /Users/USER/*/libvorbisenc.2.dylib
       0x11720a000 - 0x117232fe7 +libvorbis.0.dylib (5.5.0 - compatibility 5.0.0) <C70ACA6B-3131-3B60-A71B-5D7448DFDBBF> /Users/USER/*/libvorbis.0.dylib
       0x11723b000 - 0x11723bfff libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
       0x117242000 - 0x117290fff +libraptor2.0.dylib (??? - ???) <D3D11221-A0A1-3440-9C71-418DA35DB5B9> /Users/USER/*/libraptor2.0.dylib
       0x1172a3000 - 0x1172d3fff +libxslt.1.dylib (3.26.0 - compatibility 3.0.0) <C712596B-3AD9-3BDF-A1B3-0CD43D45AAB2> /Users/USER/*/libxslt.1.dylib
       0x1172dc000 - 0x11734ffe7 +libpixman-1.0.dylib (25.4.0 - compatibility 25.0.0) <8A5AC69C-53DD-3857-8239-A28BABA26445> /Users/USER/*/libpixman-1.0.dylib
       0x117368000 - 0x117386ff7 +libexpat.1.dylib (8.0.0 - compatibility 8.0.0) <22BFB669-1322-3CA0-870B-776CA3826E7C> /Users/USER/*/libexpat.1.dylib
       0x117392000 - 0x1173b6ff7 +libpng15.15.dylib (26.0.0 - compatibility 26.0.0) <CB83ED41-F51C-3583-9708-A7DB0514C0EE> /Users/USER/*/libpng15.15.dylib
       0x1173c1000 - 0x1173c5ff7 +libgailutil.18.dylib (19.1.0 - compatibility 19.0.0) <A5B02D6C-ED7F-34C0-8AF6-29866F7D3670> /Users/USER/*/libgailutil.18.dylib
       0x117626000 - 0x117660ff7 +libclearlooks.dylib (??? - ???) <AA14ED74-5997-3E41-91B3-561726113A8A> /Volumes/VOLUME/*/libclearlooks.dylib
       0x117775000 - 0x117779fff com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
       0x118ade000 - 0x118b02fff +libpan2in2out.dylib (??? - ???) <F290A4F7-33D6-32D1-92B6-8C69DCBA8FDA> /Volumes/VOLUME/*/libpan2in2out.dylib
       0x118b3a000 - 0x118b5eff7 +libpan1in2out.dylib (??? - ???) <C15B9C6D-CBF1-3955-A3ED-8D316299D0EC> /Volumes/VOLUME/*/libpan1in2out.dylib
       0x118b96000 - 0x118bd8ff7 +libpanvbap.dylib (??? - ???) <E1205B5E-D813-3059-A13C-604C5B6E77BE> /Volumes/VOLUME/*/libpanvbap.dylib
       0x118c40000 - 0x118c91ff7 com.apple.audio.midi.CoreMIDI (1.8 - 42) <10BAC42F-ACFE-3EBC-869A-2847A0770CE8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
       0x118d8c000 - 0x118d91fff com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x118d96000 - 0x118dc4fff +com.avid.avid.AvidCoreAudioPlugIn (10.2.0.140 - 10.2.0f140) <D82E0B18-D463-38C7-43D2-4AEB0F6E98C2> /Library/Audio/Plug-Ins/HAL/Avid CoreAudio.plugin/Contents/MacOS/Avid CoreAudio
       0x11cc38000 - 0x11e38aff7 +Reaktor5.MusicDevice.component (5.6.2 [R11367] - 5.6.2 [R11367], Copyright © 2011 Native Instruments) <7EE21F7E-1A29-4F56-7F32-3407DBDEB9CE> /Library/Audio/Plug-Ins/Components/Reaktor5.component/Contents/MacOS/Reaktor5
    0x7fff6f170000 - 0x7fff6f1a4baf dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
    0x7fff8a2ee000 - 0x7fff8a356ff7 com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <C6703B2E-62F2-37C4-A4DE-28AF9C81CB44> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8a3da000 - 0x7fff8a3e8fff libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
    0x7fff8a406000 - 0x7fff8a445ff7 libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8a446000 - 0x7fff8a5e5ff7 com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8a5e6000 - 0x7fff8a60ffff libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8a610000 - 0x7fff8a615fff libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8a885000 - 0x7fff8a8fbfff libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
    0x7fff8a8fc000 - 0x7fff8a909fff libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8a90a000 - 0x7fff8a914ff7 liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
    0x7fff8ab51000 - 0x7fff8acaafff com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8acb9000 - 0x7fff8accefff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8accf000 - 0x7fff8aef9fe7 com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8aefa000 - 0x7fff8aefbfff libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff8aff2000 - 0x7fff8b05bfff com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8b05e000 - 0x7fff8b0c0ff7 com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8b0c1000 - 0x7fff8b0c9fff libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b421000 - 0x7fff8c027ff7 com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8c028000 - 0x7fff8c05bff7 com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8c05c000 - 0x7fff8c06aff7 libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
    0x7fff8c0f3000 - 0x7fff8c1d7fff com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8c1d8000 - 0x7fff8c1d8fff com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8c1d9000 - 0x7fff8c1daff7 libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8c1db000 - 0x7fff8c1eeff7 libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff8c6fd000 - 0x7fff8c7e1e5f libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8c7e2000 - 0x7fff8c9e4fff libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff8d687000 - 0x7fff8d6d3ff7 com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff8d737000 - 0x7fff8d73dff7 libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff8d788000 - 0x7fff8d7a7fff libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff8d7a8000 - 0x7fff8d7cefff com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff8d7cf000 - 0x7fff8d7fcfe7 libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
    0x7fff8db22000 - 0x7fff8db2dff7 com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8db2e000 - 0x7fff8db86fff libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8dbca000 - 0x7fff8dbcbfff liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff8e05d000 - 0x7fff8e088ff7 com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff8e0e4000 - 0x7fff8e1fdfff com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8e44b000 - 0x7fff8e54dfff libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff8e54e000 - 0x7fff8e589fff libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff8e61e000 - 0x7fff8e61ffff libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8e620000 - 0x7fff8e93cfff com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff8e93d000 - 0x7fff8ed6afff libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff8ed6b000 - 0x7fff8ed6cfff libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8ee62000 - 0x7fff8ee8afff com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8ee8b000 - 0x7fff8ee90fff libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff8ee91000 - 0x7fff8ef6efef libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff8efe0000 - 0x7fff8f0e5fff libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8f0e6000 - 0x7fff8f134fff libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff8f161000 - 0x7fff8f3d4fff com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8fde0000 - 0x7fff8fe00fff libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8fe01000 - 0x7fff8fe07fff IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8fe08000 - 0x7fff8fe0cff7 com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff8fe0d000 - 0x7fff8fe83fff com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8ffa0000 - 0x7fff8ffb7fff com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8ffe0000 - 0x7fff90019fe7 libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
    0x7fff9001a000 - 0x7fff9001dfff libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff90020000 - 0x7fff90062ff7 libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff90063000 - 0x7fff9008cfff com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff9008d000 - 0x7fff900a3ff7 com.apple.ImageCapture

paul

2012-06-20 12:02

administrator   ~0013637

Ben- that's the same crash that I posted above, and I believe that its occuring because you haven't updated and rebuilt your ardour 3.0 setup. Let me know.

BenSpector

2012-06-20 13:25

reporter   ~0013638

I've updated to rev 12972 just before posting.
Now I see there's 12973, is the fix there?

paul

2012-06-20 13:32

administrator   ~0013639

hmm. i see. there doesn't seem to be a demo version of reaktor available. can you do a run where you add -D audiounits to the command line, and paste *just* that output? perhaps there is some similar bug that continues to exist, but that does not affect Battery.

paul

2012-06-20 14:25

administrator   ~0013641

Tom - i'm happy to report that Guitar Rig not only loads and runs fine now, but the GUI also works without errors. This seems odd because I would have expected all NI plugins to use very common code for the GUI. But GR appears fine.

paul

2012-06-21 21:22

administrator   ~0013649

The crash with Reaktor is similar to the Battery crash - too much configurability colliding with itself.

Reaktor will provide 0..16 inputs and 0..16 outputs. Ardour ends up mistakenly picking 0 inputs + 16 outputs as the configuration to use, which causes Reaktor to crash. Arguably, the ranges are really 1..16, not 0..16 ...

Ardour will be fixed presently.

paul

2012-06-21 21:24

administrator   ~0013650

btw, NI guys, the AU docs @ https://developer.apple.com/library/mac/#documentation/MusicAudio/Conceptual/AudioUnitProgrammingGuide/TheAudioUnit/TheAudioUnit.html seem to me to indicate that "any number" should include zero. But your reading of this could be different. Apple's docs don't really pin it down.

paul

2012-06-22 01:56

administrator   ~0013651

OK, rev 12816 will load Reaktor into a "mixed" track (audio+MIDI).

however, it crashes when attempting to open the GUI. here is the backtrace:

0 libsystem_c.dylib 0x905699e4 memmove$VARIANT$sse42 + 39
1 Reaktor5.MusicDevice.component 0x0e69e42a NI::UIA::Picture::copyAreaUC_SCALAR(int, int, int, int, NI::UIA::Picture const&, int,$
2 Reaktor5.MusicDevice.component 0x0e6a1c05 NI::UIA::Picture::copyAreaRepeated(int, int, int, int, NI::UIA::Picture const&, int, $
3 Reaktor5.MusicDevice.component 0x0e6a8088 NI::UIA::Picture::putStretched(NI::GP::Rect const&, NI::UIA::Picture const&, unsigned$
4 Reaktor5.MusicDevice.component 0x0e7b2b80 NI::NGL::DETAIL::PanelItem::draw(NI::UIA::Picture&, NI::GP::Rect const&, unsigned int$
5 Reaktor5.MusicDevice.component 0x0e7cce51 NI::NGL::Form::onDrawBackground(NI::UIA::Picture&, NI::GP::Rect const&, NI::GP::Rect $
6 Reaktor5.MusicDevice.component 0x0e7d0c06 NI::NGL::Form::onDrawBackground(NI::UIA::Picture&, NI::GP::Region const&) + 406
7 Reaktor5.MusicDevice.component 0x0e7d0145 NI::NGL::Form::onDraw(NI::UIA::Picture&, NI::GP::Region const&) + 117
8 Reaktor5.MusicDevice.component 0x0e7d8a4f bool NI::NGL::FormManager::onDrawImpl<NI::NGL::FormManager::tDrawRgn>(bool, NI::NGL::$
9 Reaktor5.MusicDevice.component 0x0e7d72df NI::NGL::FormManager::onDraw(NI::UIA::Picture&, bool) + 47
10 Reaktor5.MusicDevice.component 0x0e25bf1a ReaktorFormManagerBase::fullRedraw() + 106
11 Reaktor5.MusicDevice.component 0x0e25ca5f ReaktorFormManagerBase::doLayout(NI::NGL::Form const*) + 175
12 Reaktor5.MusicDevice.component 0x0e25d06c ReaktorFormManagerBase::onWindowSizeChanged(NI::GP::Point const&, bool) + 108
13 Reaktor5.MusicDevice.component 0x0e25e846 ReaktorFormManagerBase::onEvent(unsigned int, NI::UIA::EventData*) + 1622
14 Reaktor5.MusicDevice.component 0x0e21d348 PlugInFormManager::onEvent(unsigned int, NI::UIA::EventData*) + 104
15 Reaktor5.MusicDevice.component 0x0e7d6fe6 NI::NGL::FormManager::sendEvent(unsigned int, NI::UIA::EventData*) + 86
16 Reaktor5.MusicDevice.component 0x0ea0298a NI::NGL::Window<NI::UIA::AUWindow>::onEvent(unsigned int, NI::UIA::EventData*) + 106
17 Reaktor5.MusicDevice.component 0x0ea023fd NI::AU::EditorNGL::onEvent(unsigned int, NI::UIA::EventData*) + 45
18 Reaktor5.MusicDevice.component 0x0e699a1f NI::UIA::EventTarget::sendEvent(unsigned int, NI::UIA::EventData*) + 31
19 Reaktor5.MusicDevice.component 0x0e6f502f NI::UIA::DETAIL::WindowImpl::sendEvent(unsigned int, NI::UIA::EventData*, bool) + 47
20 Reaktor5.MusicDevice.component 0x0e683841 _ZN2NI3UIA5COCOA4ViewL15frameDidChangedEP11objc_objectP13objc_selectorP14NSNotificati$
21 com.apple.Foundation 0x98fa4e25 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
22 com.apple.CoreFoundation 0x92f23cb3 ___CFXNotificationPost_block_invoke_1 + 275
23 com.apple.CoreFoundation 0x92eeea38 _CFXNotificationPost + 2776
24 com.apple.Foundation 0x98f90012 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
25 com.apple.Foundation 0x98fa52a6 -[NSNotificationCenter postNotificationName:object:] + 55
26 com.apple.AppKit 0x9369f051 -[NSView _postFrameChangeNotification] + 223
27 com.apple.AppKit 0x935c08de -[NSView setFrameSize:] + 950
28 Reaktor5.MusicDevice.component 0x0e6829f4 _ZN2NI3UIA5COCOA4ViewL12setFrameSizeEP11objc_objectP13objc_selector7_NSSize + 84
29 com.apple.AppKit 0x935c027a -[NSView setFrame:] + 254
30 com.apple.AppKit 0x9369e7fe -[NSView resizeWithOldSuperviewSize:] + 1062
31 com.apple.AppKit 0x9369e3af -[NSView resizeSubviewsWithOldSize:] + 193
32 com.apple.AppKit 0x935c087b -[NSView setFrameSize:] + 851
33 com.apple.AppKit 0x936d6e38 -[NSWindow _oldPlaceWindow:] + 1071
34 com.apple.AppKit 0x9368097a -[NSWindow _setFrameCommon:display:stashSize:] + 1657
35 com.apple.AppKit 0x936802fa -[NSWindow setFrame:display:] + 71
36 libgdk-quartz-2.0.0.dylib 0x05d0609e move_resize_window_internal + 524
37 libgdk-quartz-2.0.0.dylib 0x05ceb829 gdk_window_move_resize_internal + 419
38 libgtk-quartz-2.0.0.dylib 0x05ad45da gtk_window_show + 296
39 ardour-3.0 0x009f4f3d PluginUIWindow::on_show() + 241 (plugin_u

paul

2012-06-22 02:01

administrator   ~0013652

note to ardour devs: we need warnings when a user tries to add a "music effect" plugin like Reaktor to either an audio track or a MIDI track. ardour can reconfigure itself to match the I/O needs of the plugin (i.e. by adding one or more audio or MIDI ports) but our plugin i/o configuration process doesn't provide any way for this to happen - we're asking the plugin "if we give you the following inputs, can you support it, and what would you output configuration look like?" ... we do not ask if it would prefer a different configuration, for example one with audio or MIDI added to the nominal/current MIDI- or audio-only setup.

BenSpector

2012-06-25 11:48

reporter   ~0013691

Paul, could you please explain more about the new "Mixed" tracks?
Thanx

Issue History

Date Modified Username Field Change
2012-03-16 10:07 317wurst New Issue
2012-03-16 10:07 317wurst File Added: parsingError.png
2012-03-16 10:10 317wurst Note Added: 0012942
2012-03-17 14:40 paul Note Added: 0012951
2012-03-17 23:33 cth103 cost => 0.00
2012-03-17 23:33 cth103 Target Version => 3.0 beta4
2012-03-19 01:10 317wurst Note Added: 0012967
2012-05-23 15:08 cth103 Target Version 3.0 beta4 => 3.0
2012-06-19 16:32 paul Note Added: 0013615
2012-06-19 18:29 paul Note Added: 0013623
2012-06-19 18:48 paul Note Added: 0013624
2012-06-19 20:47 paul Note Added: 0013626
2012-06-20 03:31 paul Note Added: 0013633
2012-06-20 10:04 BenSpector Note Added: 0013635
2012-06-20 10:05 BenSpector Note Edited: 0013635
2012-06-20 12:02 paul Note Added: 0013637
2012-06-20 13:25 BenSpector Note Added: 0013638
2012-06-20 13:32 paul Note Added: 0013639
2012-06-20 14:25 paul Note Added: 0013641
2012-06-21 21:22 paul Note Added: 0013649
2012-06-21 21:24 paul Note Added: 0013650
2012-06-22 01:56 paul Note Added: 0013651
2012-06-22 02:01 paul Note Added: 0013652
2012-06-25 11:48 BenSpector Note Added: 0013691
2012-06-25 19:40 cth103 Status new => confirmed