configurable midi audition synth
[ardour.git] / libs / ardour / ardour / diskstream.h
index bbc3a85dbe9f40cbbd0ae771c0efe7d7bc4492dc..7a4bccbb46b416989a8ab479b5b6ec1f275208fe 100644 (file)
@@ -49,6 +49,7 @@ class Source;
 class Session;
 class Track;
 class Location;
+class BufferSet;
 
 /** Parent class for classes which can stream data to and from disk.
  *  These are used by Tracks to get playback and put recorded data.
@@ -132,8 +133,8 @@ class Diskstream : public SessionObject, public PublicDiskstream
        virtual XMLNode& get_state(void);
        virtual int      set_state(const XMLNode&, int version);
 
-       virtual void request_jack_monitors_input (bool) {}
-       virtual void ensure_jack_monitors_input (bool) {}
+       virtual void request_input_monitoring (bool) {}
+       virtual void ensure_input_monitoring (bool) {}
 
        framecnt_t   capture_offset() const { return _capture_offset; }
        virtual void set_capture_offset ();
@@ -191,7 +192,8 @@ class Diskstream : public SessionObject, public PublicDiskstream
   protected:
        friend class Track;
 
-       virtual int  process (framepos_t transport_frame, pframes_t nframes, framecnt_t &) = 0;
+    virtual int  process (BufferSet&, framepos_t transport_frame, pframes_t nframes, framecnt_t &, bool need_disk_signal) = 0;
+    virtual frameoffset_t calculate_playback_distance (pframes_t nframes) = 0;
        virtual bool commit  (framecnt_t) = 0;
 
        //private:
@@ -243,6 +245,12 @@ class Diskstream : public SessionObject, public PublicDiskstream
        virtual void use_destructive_playlist () {}
        virtual void prepare_to_stop (framepos_t pos);
 
+       void engage_record_enable ();
+       void disengage_record_enable ();
+
+        virtual bool prep_record_enable () = 0;
+        virtual bool prep_record_disable () = 0;
+
        void calculate_record_range (
                Evoral::OverlapType ot, framepos_t transport_frame, framecnt_t nframes,
                framecnt_t& rec_nframes, framecnt_t& rec_offset
@@ -250,7 +258,7 @@ class Diskstream : public SessionObject, public PublicDiskstream
 
        static framecnt_t disk_io_chunk_frames;
        std::vector<CaptureInfo*> capture_info;
-       mutable Glib::Mutex capture_info_lock;
+       mutable Glib::Threads::Mutex capture_info_lock;
 
        uint32_t i_am_the_modifier;
 
@@ -301,7 +309,7 @@ class Diskstream : public SessionObject, public PublicDiskstream
 
        bool          in_set_state;
 
-       Glib::Mutex state_lock;
+       Glib::Threads::Mutex state_lock;
 
        PBD::ScopedConnectionList playlist_connections;