Add ARDOUR::ladspa_search_path function to get LADSPA module directories
[ardour.git] / libs / ardour / ardour / caimportable.h
index dbf93dbb732a7fb62b982f85e05dad557eee2569..1ed8676ee63fd5e4473472d9beda459e11d04496 100644 (file)
@@ -33,12 +33,13 @@ class CAImportableSource : public ImportableSource {
        CAImportableSource (const std::string& path);
        virtual ~CAImportableSource();
 
-       nframes_t read (Sample* buffer, nframes_t nframes);
+       framecnt_t read (Sample* buffer, framecnt_t nframes);
        uint32_t  channels() const;
-       nframes_t length() const;
-       nframes_t samplerate() const;
-       void      seek (nframes_t pos);
-       nframes64_t natural_position() const { return 0; }
+       framecnt_t length() const;
+       framecnt_t samplerate() const;
+       void      seek (framepos_t pos);
+       framepos_t natural_position() const { return 0; }
+       bool clamped_at_unity () const { return false; }
 
    protected:
        mutable CAAudioFile af;