move gui_changed() signal from Route to Stripable
[ardour.git] / libs / ardour / ardour / silentfilesource.h
index 27d0efd9943a26fb57b6e03406f3cce17bfcbbde..80f4b361b233517693003840722d45967ab46f86 100644 (file)
@@ -32,6 +32,7 @@ public:
        float sample_rate () const { return _sample_rate; }
 
        void set_length (framecnt_t len) { _length = len; }
+       void flush () {}
 
        bool destructive() const { return false; }
        bool can_be_analysed() const { return false; }
@@ -39,6 +40,7 @@ public:
        bool clamped_at_unity() const { return false; }
 
 protected:
+       void close() {}
        friend class SourceFactory;
 
        SilentFileSource (Session& s, const XMLNode& x, framecnt_t len, float srate)
@@ -59,7 +61,7 @@ protected:
        void set_header_timeline_position () {}
 
        int read_peaks_with_fpp (PeakData *peaks, framecnt_t npeaks, framepos_t /*start*/, framecnt_t /*cnt*/,
-                                double /*samples_per_unit*/, framecnt_t /*fpp*/) const {
+                                double /*frames_per_pixel*/, framecnt_t /*fpp*/) const {
                memset (peaks, 0, sizeof (PeakData) * npeaks);
                return 0;
        }