Respond to MMC even when synced to JACK. Fixes #3700.
[ardour.git] / libs / ardour / ardour / processor.h
index 182208e5608cf455bcfbfe145fef1e5727feef76..9038088cf01edb5eb3732f703255496848ce6d3a 100644 (file)
@@ -84,6 +84,8 @@ class Processor : public SessionObject, public Automatable, public Latent
        virtual ChanCount input_streams () const { return _configured_input; }
        virtual ChanCount output_streams() const { return _configured_output; }
 
+       virtual void realtime_handle_transport_stopped () {}
+
        /* note: derived classes should implement state(), NOT get_state(), to allow
           us to merge C++ inheritance and XML lack-of-inheritance reasonably
           smoothly.