forward port 2.X changes up to and including rev 6714
[ardour.git] / libs / ardour / ardour / importable_source.h
index a33cf567e7b79331885effe2aecb5958ace333b2..7df346a782ddde412cfa1d7f42e0fbfd3880d065 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Paul Davis 
+    Copyright (C) 2007 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -20,8 +20,8 @@
 #ifndef __ardour_importable_source_h__
 #define __ardour_importable_source_h__
 
-#include <pbd/failed_constructor.h>
-#include <ardour/types.h>
+#include "pbd/failed_constructor.h"
+#include "ardour/types.h"
 
 namespace ARDOUR {
 
@@ -36,6 +36,9 @@ public:
        virtual nframes_t length() const = 0;
        virtual nframes_t samplerate() const = 0;
        virtual void      seek (nframes_t pos) = 0;
+       virtual nframes64_t natural_position() const = 0;
+
+       virtual bool clamped_at_unity () const = 0;
 };
 
 }