add name() method to VCA
[ardour.git] / libs / ardour / ardour / srcfilesource.h
index 78564c8b8893a7562ce2c1cb72c189c9f8e6b923..3dc1590dda498061ab57e38be32684e680912c15 100644 (file)
@@ -52,6 +52,7 @@ public:
        bool clamped_at_unity() const { return false; }
 
 protected:
+       void close ();
        framecnt_t read_unlocked (Sample *dst, framepos_t start, framecnt_t cnt) const;
        framecnt_t write_unlocked (Sample */*dst*/, framecnt_t /*cnt*/) { return 0; }
 
@@ -62,7 +63,7 @@ protected:
        }
 
 private:
-       static const uint32_t blocksize;
+       static const uint32_t max_blocksize;
        boost::shared_ptr<AudioFileSource> _source;
 
        mutable SRC_STATE* _src_state;