summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-22 18:45:08 +0200
committerRobin Gareus <robin@gareus.org>2013-07-22 18:45:08 +0200
commit708edd586611c6b1132e4f25be4c2c0865ba4738 (patch)
tree501211154ef6f5cc06606874edfe3371f7049825 /libs/ardour/ardour/types.h
parent72aa1cd86cf04964f08e7ca0557f73afd1c96e83 (diff)
implement new meter types
Diffstat (limited to 'libs/ardour/ardour/types.h')
-rw-r--r--libs/ardour/ardour/types.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index df7209b581..7b396796ad 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -178,13 +178,17 @@ namespace ARDOUR {
};
enum MeterType {
- MeterMaxSignal = 0x01,
- MeterMaxPeak = 0x02,
- MeterPeak = 0x04,
- MeterKrms = 0x08,
- MeterIEC1 = 0x10,
- MeterIEC2 = 0x20,
- MeterVU = 0x40
+ MeterMaxSignal = 0x001,
+ MeterMaxPeak = 0x002,
+ MeterPeak = 0x004,
+ MeterRMS = 0x008,
+ MeterK20 = 0x010,
+ MeterK14 = 0x020,
+ MeterIEC1DIN = 0x040,
+ MeterIEC1NOR = 0x080,
+ MeterIEC2BBC = 0x100,
+ MeterIEC2EBU = 0x200,
+ MeterVU = 0x400
};
enum TrackMode {