Mercurial > hg > apm
comparison AccessiblePeakMeter.h @ 2:33aaa48d4d16 tip
changed "meter type" to "sonification type"
author | Fiore Martin <f.martin@qmul.ac.uk> |
---|---|
date | Sat, 13 Jun 2015 15:14:20 +0100 |
parents | c0ead20bda4d |
children |
comparison
equal
deleted
inserted
replaced
1:a30304ca3ea5 | 2:33aaa48d4d16 |
---|---|
30 void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames); | 30 void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames); |
31 bool HostRequestingAboutBox(); | 31 bool HostRequestingAboutBox(); |
32 | 32 |
33 private: | 33 private: |
34 static const double DRYWET_DEFAULT; | 34 static const double DRYWET_DEFAULT; |
35 static const int METERTYPE_DEFAULT; | 35 static const int SONIFICATION_TYPE_DEFAULT; |
36 static const double METERDECAY_DEFAULT; | 36 static const double METERDECAY_DEFAULT; |
37 static const double THRESHOLD_DEFAULT; | 37 static const double THRESHOLD_DEFAULT; |
38 static const double BEEP_TIME; | 38 static const double BEEP_TIME; |
39 static const double DB_RANGE; | 39 static const double DB_RANGE; |
40 static const double SONIFICATION_RANGE; | 40 static const double SONIFICATION_RANGE; |
107 cle.setSampleRate(srate); | 107 cle.setSampleRate(srate); |
108 } | 108 } |
109 } | 109 } |
110 } | 110 } |
111 | 111 |
112 Sonification() : type(METERTYPE_DEFAULT) { | 112 Sonification() : type(SONIFICATION_TYPE_DEFAULT) { |
113 reset(); | 113 reset(); |
114 } | 114 } |
115 | 115 |
116 } mSonification; | 116 } mSonification; |
117 | 117 |