Change the feedback alert to a flashing button; works
[ardour.git] / libs / ardour / ardour / audiosource.h
index c9eb3bfc45f72c4146d3de45db62e769385f7703..1d811bbfa3a8746550fc255871f0cefbcef5bfcd 100644 (file)
@@ -67,10 +67,6 @@ class AudioSource : virtual public Source,
        void set_captured_for (std::string str) { _captured_for = str; }
        std::string captured_for() const { return _captured_for; }
 
-       uint32_t read_data_count() const { return _read_data_count; }
-       uint32_t write_data_count() const { return _write_data_count; }
-       void dec_read_data_count (framecnt_t);
-
        int read_peaks (PeakData *peaks, framecnt_t npeaks,
                        framepos_t start, framecnt_t cnt, double samples_per_visual_peak) const;
 
@@ -131,9 +127,6 @@ class AudioSource : virtual public Source,
        std::string         peakpath;
        std::string        _captured_for;
 
-       mutable uint32_t _read_data_count;  // modified in read()
-       mutable uint32_t _write_data_count; // modified in write()
-
        int initialize_peakfile (bool newfile, std::string path);
        int build_peaks_from_scratch ();
        int compute_and_write_peaks (Sample* buf, framecnt_t first_frame, framecnt_t cnt,