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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index 7d5c5626e3..b5e5d89cc1 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -75,6 +75,7 @@ namespace ARDOUR {
static const framepos_t max_framepos = INT64_MAX;
static const framecnt_t max_framecnt = INT64_MAX;
+ static const layer_t max_layer = UINT32_MAX;
// a set of (time) intervals: first of pair is the offset of the start within the region, second is the offset of the end
typedef std::list<std::pair<frameoffset_t, frameoffset_t> > AudioIntervalResult;
@@ -410,7 +411,7 @@ namespace ARDOUR {
enum LayerModel {
LaterHigher,
- MoveAddHigher,
+ AddOrBoundsChangeHigher,
AddHigher
};
@@ -591,6 +592,11 @@ namespace ARDOUR {
FadeLogB
};
+ enum LayerOp {
+ LayerOpAdd,
+ LayerOpBoundsChange
+ };
+
} // namespace ARDOUR