summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/types.h')
-rw-r--r--libs/ardour/ardour/types.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index 435cf8d416..f91b67bb5a 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -20,14 +20,11 @@
#ifndef __ardour_types_h__
#define __ardour_types_h__
-#ifndef __STDC_FORMAT_MACROS
-#define __STDC_FORMAT_MACROS /* PRI<foo>; C++ requires explicit requesting of these */
-#endif
-
#include <istream>
#include <vector>
#include <boost/shared_ptr.hpp>
#include <sys/types.h>
+#include <stdint.h>
#include <inttypes.h>
#include <jack/types.h>
@@ -58,12 +55,6 @@ namespace ARDOUR {
typedef uint32_t nframes_t;
typedef int64_t nframes64_t;
-
- /** "Session frames", frames relative to the session timeline.
- * Everything related to transport position etc. should be of this type.
- * We might want to make this a compile time option for 32-bitters who
- * don't want to pay for extremely long session times they don't need...
- */
typedef int64_t sframes_t;
typedef int64_t framepos_t;
/* any offset from a framepos_t, measured in audio frames */
@@ -71,6 +62,9 @@ namespace ARDOUR {
/* any count of audio frames */
typedef int64_t framecnt_t;
+ static const framepos_t max_framepos = INT64_MAX;
+ static const framecnt_t max_framecnt = INT64_MAX;
+
struct IOChange {
enum Type {