X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fmidi_track.h;h=d9a11540e4ae97ac33c8f944a0dd9431c75ace94;hb=21102b45d0d22f2761697b1b9fdfa92aafc25834;hp=ea6e4e3636ee4b27d11323c59ff656c960e70616;hpb=a4a87f56e9dc8e2351101439aeea7a87064fa146;p=ardour.git diff --git a/libs/ardour/ardour/midi_track.h b/libs/ardour/ardour/midi_track.h index ea6e4e3636..d9a11540e4 100644 --- a/libs/ardour/ardour/midi_track.h +++ b/libs/ardour/ardour/midi_track.h @@ -28,7 +28,6 @@ namespace ARDOUR { class InterThreadInfo; -class MidiDiskstream; class MidiPlaylist; class RouteGroup; class SMFSource; @@ -42,14 +41,8 @@ public: int init (); - int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler); - - void realtime_handle_transport_stopped (); void realtime_locate (); - void non_realtime_locate (framepos_t); - - boost::shared_ptr create_diskstream (); - void set_diskstream (boost::shared_ptr); + void non_realtime_locate (samplepos_t); bool can_be_record_enabled (); bool can_be_record_safe (); @@ -59,15 +52,15 @@ public: bool bounceable (boost::shared_ptr, bool) const { return false; } boost::shared_ptr bounce (InterThreadInfo&); - boost::shared_ptr bounce_range (framepos_t start, - framepos_t end, + boost::shared_ptr bounce_range (samplepos_t start, + samplepos_t end, InterThreadInfo& iti, boost::shared_ptr endpoint, bool include_endpoint); int export_stuff (BufferSet& bufs, - framepos_t start_frame, - framecnt_t end_frame, + samplepos_t start_sample, + samplecnt_t end_sample, boost::shared_ptr endpoint, bool include_endpoint, bool for_export, @@ -104,7 +97,7 @@ public: bool step_editing() const { return _step_editing; } void set_step_editing (bool yn); - MidiRingBuffer& step_edit_ring_buffer() { return _step_edit_ring_buffer; } + MidiRingBuffer& step_edit_ring_buffer() { return _step_edit_ring_buffer; } PBD::Signal1 StepEditStatusChange; @@ -124,51 +117,56 @@ public: MidiChannelFilter& playback_filter() { return _playback_filter; } MidiChannelFilter& capture_filter() { return _capture_filter; } + virtual void filter_input (BufferSet& bufs); + boost::shared_ptr midi_playlist (); PBD::Signal1 > DataRecorded; boost::shared_ptr get_gui_feed_buffer () const; MonitorState monitoring_state () const; + MonitorState get_auto_monitoring_state () const; + + MidiBuffer const& immediate_event_buffer () const { return _immediate_event_buffer; } void set_input_active (bool); bool input_active () const; PBD::Signal0 InputActiveChanged; protected: - XMLNode& state (bool full); + + XMLNode& state (bool save_template); void act_on_mute (); void monitoring_changed (bool, PBD::Controllable::GroupControlDisposition); -private: - MidiRingBuffer _immediate_events; - MidiRingBuffer _step_edit_ring_buffer; - NoteMode _note_mode; - bool _step_editing; - bool _input_active; - MidiChannelFilter _playback_filter; - MidiChannelFilter _capture_filter; + void snapshot_out_of_band_data (samplecnt_t nframes); + void write_out_of_band_data (BufferSet& bufs, samplecnt_t /* nframes */) const; - virtual boost::shared_ptr diskstream_factory (XMLNode const &); - void write_out_of_band_data (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, framecnt_t nframes); +private: + MidiRingBuffer _immediate_events; + MidiBuffer _immediate_event_buffer; + MidiRingBuffer _step_edit_ring_buffer; + NoteMode _note_mode; + bool _step_editing; + bool _input_active; + MidiChannelFilter _playback_filter; + MidiChannelFilter _capture_filter; void set_state_part_two (); void set_state_part_three (); - - int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, bool state_changing); - void push_midi_input_to_step_edit_ringbuffer (framecnt_t nframes); - - void diskstream_data_recorded (boost::weak_ptr); - PBD::ScopedConnection _diskstream_data_recorded_connection; + int no_roll_unlocked (pframes_t nframes, samplepos_t start_sample, samplepos_t end_sample, bool state_changing); + void push_midi_input_to_step_edit_ringbuffer (samplecnt_t nframes); void track_input_active (IOChange, void*); void map_input_active (bool); + void data_recorded (boost::weak_ptr src); + /** Update automation controls to reflect any changes in buffers. */ - void update_controls (const BufferSet& bufs); + void update_controls (BufferSet const& bufs); void restore_controls (); };