summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/caimportable.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-04 01:37:36 +0200
committerRobin Gareus <robin@gareus.org>2019-08-04 01:37:36 +0200
commit183d3fb4932b94378debea32f3114c9793bef567 (patch)
treea4306b2b88d2e8a86ff2bd7927db02e6530acdde /libs/ardour/ardour/caimportable.h
parent365f6d633731229e7bc5d37a5fe2c9107b527e28 (diff)
Implement missing required virtual fn -- fix Mac builds
Diffstat (limited to 'libs/ardour/ardour/caimportable.h')
-rw-r--r--libs/ardour/ardour/caimportable.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/ardour/ardour/caimportable.h b/libs/ardour/ardour/caimportable.h
index 82f36f9ab6..446dd70b09 100644
--- a/libs/ardour/ardour/caimportable.h
+++ b/libs/ardour/ardour/caimportable.h
@@ -39,11 +39,12 @@ class LIBARDOUR_API CAImportableSource : public ImportableSource {
virtual ~CAImportableSource();
samplecnt_t read (Sample* buffer, samplecnt_t nframes);
- uint32_t channels() const;
+ uint32_t channels() const;
samplecnt_t length() const;
samplecnt_t samplerate() const;
- void seek (samplepos_t pos);
- bool clamped_at_unity () const { return false; }
+ void seek (samplepos_t pos);
+ samplepos_t natural_position ();
+ bool clamped_at_unity () const { return false; }
protected:
#ifdef COREAUDIO105