summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-27 05:01:07 +0200
committerRobin Gareus <robin@gareus.org>2015-04-27 17:19:57 +0200
commit36ee1681fe87d3f1d39fa52727e1dee5e2dd1322 (patch)
treea7594a7e1dd09e783d095992cc4e1cabbf1218f0 /libs/ardour/ardour/types.h
parentb7a711e385a6a8cbd4d170bae449b4785f890b23 (diff)
special case [optimize] RT processor reorder.
realtime processor re-ordering does not require a route resort nor latency compensation update. (which were done as callback in same thread)
Diffstat (limited to 'libs/ardour/ardour/types.h')
-rw-r--r--libs/ardour/ardour/types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index 3f95d0c239..a43eb0125d 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -557,7 +557,8 @@ namespace ARDOUR {
struct RouteProcessorChange {
enum Type {
GeneralChange = 0x0,
- MeterPointChange = 0x1
+ MeterPointChange = 0x1,
+ RealTimeChange = 0x2
};
RouteProcessorChange () : type (GeneralChange), meter_visibly_changed (true)