summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-01-22 11:16:26 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-01-23 14:25:38 -0700
commit31db7e91d8399058863cf34ac3b3cfce40350224 (patch)
tree90ce1e6b658a7aa22f462f8f4be5d7807c19906b /libs/ardour/ardour/session.h
parent9b7db16a0b4ae3a482b455ff9acbf9612676777f (diff)
remove no-longer used PostTransportWork bits and renumber the rest
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h22
1 files changed, 9 insertions, 13 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 9969e35c5f..59e7d53048 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -1127,19 +1127,15 @@ public:
enum PostTransportWork {
PostTransportStop = 0x1,
- /* PostTransportDuration */
- PostTransportLocate = 0x4,
- PostTransportRoll = 0x8,
- PostTransportAbort = 0x10,
- PostTransportOverWrite = 0x20,
- /* PostTransportSpeed = 0x40, */
- PostTransportAudition = 0x80,
- PostTransportReverse = 0x100,
- /* PostTransportInputChange = 0x200, */
- /*PostTransportCurveRealloc = 0x400, */
- PostTransportClearSubstate = 0x800,
- PostTransportAdjustPlaybackBuffering = 0x1000,
- PostTransportAdjustCaptureBuffering = 0x2000
+ PostTransportLocate = 0x2,
+ PostTransportRoll = 0x4,
+ PostTransportAbort = 0x8,
+ PostTransportOverWrite = 0x10,
+ PostTransportAudition = 0x20,
+ PostTransportReverse = 0x40,
+ PostTransportClearSubstate = 0x80,
+ PostTransportAdjustPlaybackBuffering = 0x100,
+ PostTransportAdjustCaptureBuffering = 0x200
};
boost::shared_ptr<SessionPlaylists> playlists () const { return _playlists; }