summaryrefslogtreecommitdiff
path: root/libs/ardour/caimportable.cc
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/caimportable.cc
parent365f6d633731229e7bc5d37a5fe2c9107b527e28 (diff)
Implement missing required virtual fn -- fix Mac builds
Diffstat (limited to 'libs/ardour/caimportable.cc')
-rw-r--r--libs/ardour/caimportable.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/ardour/caimportable.cc b/libs/ardour/caimportable.cc
index 9b6f4919e6..6553a398a9 100644
--- a/libs/ardour/caimportable.cc
+++ b/libs/ardour/caimportable.cc
@@ -136,4 +136,9 @@ CAImportableSource::seek (samplepos_t pos)
}
-
+samplepos_t
+CAImportableSource::natural_position ()
+{
+ // TODO: extract timecode, if any
+ return 0;
+}