summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-05-30 17:46:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-05-30 17:46:33 +0000
commit1fedefc78592a1c1cde15891b699c75b384704f0 (patch)
treece29a2b4357aa0c70ae17cbb5aa578375071f678 /libs
parent1493c901e9733d1250d93beca1958d3decfd1928 (diff)
more use of int64_t to fix frame offset values
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@1931 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ardour/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index 05956336b6..7655f486e9 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -47,6 +47,12 @@ typedef int intptr_t;
typedef uint32_t nframes_t;
+/* eventually, we'd like everything (including JACK) to
+ move to this. for now, its a dedicated type.
+*/
+
+typedef int64_t nframes64_t;
+
namespace ARDOUR {
class Source;