mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
make generic MIDI support handle SendFeedback() in process()-context, not in the MIDIControlUI event loop
git-svn-id: svn://localhost/ardour2/branches/3.0@12083 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
4e9173ff62
commit
2171bba037
1 changed files with 9 additions and 1 deletions
|
|
@ -75,7 +75,15 @@ GenericMidiControlProtocol::GenericMidiControlProtocol (Session& s)
|
||||||
Controllable::CreateBinding.connect_same_thread (*this, boost::bind (&GenericMidiControlProtocol::create_binding, this, _1, _2, _3));
|
Controllable::CreateBinding.connect_same_thread (*this, boost::bind (&GenericMidiControlProtocol::create_binding, this, _1, _2, _3));
|
||||||
Controllable::DeleteBinding.connect_same_thread (*this, boost::bind (&GenericMidiControlProtocol::delete_binding, this, _1));
|
Controllable::DeleteBinding.connect_same_thread (*this, boost::bind (&GenericMidiControlProtocol::delete_binding, this, _1));
|
||||||
|
|
||||||
Session::SendFeedback.connect (*this, MISSING_INVALIDATOR, ui_bind (&GenericMidiControlProtocol::send_feedback, this), midi_ui_context());;
|
/* this signal is emitted by the process() callback, and if
|
||||||
|
* send_feedback() is going to do anything, it should do it in the
|
||||||
|
* context of the process() callback itself.
|
||||||
|
*/
|
||||||
|
|
||||||
|
Session::SendFeedback.connect_same_thread (*this, boost::bind (&GenericMidiControlProtocol::send_feedback, this));
|
||||||
|
|
||||||
|
/* this one is cross-thread */
|
||||||
|
|
||||||
Route::RemoteControlIDChange.connect (*this, MISSING_INVALIDATOR, ui_bind (&GenericMidiControlProtocol::reset_controllables, this), midi_ui_context());
|
Route::RemoteControlIDChange.connect (*this, MISSING_INVALIDATOR, ui_bind (&GenericMidiControlProtocol::reset_controllables, this), midi_ui_context());
|
||||||
|
|
||||||
reload_maps ();
|
reload_maps ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue