remove no-longer used PostTransportWork bits and renumber the rest

This commit is contained in:
Paul Davis 2020-01-22 11:16:26 -07:00
parent 9b7db16a0b
commit 31db7e91d8

View File

@ -1127,19 +1127,15 @@ public:
enum PostTransportWork { enum PostTransportWork {
PostTransportStop = 0x1, PostTransportStop = 0x1,
/* PostTransportDuration */ PostTransportLocate = 0x2,
PostTransportLocate = 0x4, PostTransportRoll = 0x4,
PostTransportRoll = 0x8, PostTransportAbort = 0x8,
PostTransportAbort = 0x10, PostTransportOverWrite = 0x10,
PostTransportOverWrite = 0x20, PostTransportAudition = 0x20,
/* PostTransportSpeed = 0x40, */ PostTransportReverse = 0x40,
PostTransportAudition = 0x80, PostTransportClearSubstate = 0x80,
PostTransportReverse = 0x100, PostTransportAdjustPlaybackBuffering = 0x100,
/* PostTransportInputChange = 0x200, */ PostTransportAdjustCaptureBuffering = 0x200
/*PostTransportCurveRealloc = 0x400, */
PostTransportClearSubstate = 0x800,
PostTransportAdjustPlaybackBuffering = 0x1000,
PostTransportAdjustCaptureBuffering = 0x2000
}; };
boost::shared_ptr<SessionPlaylists> playlists () const { return _playlists; } boost::shared_ptr<SessionPlaylists> playlists () const { return _playlists; }