| 215 | } |
| 216 | |
| 217 | float AudioBus::maxAbsValue() const |
| 218 | { |
| 219 | float max = 0.0f; |
| 220 | for (int i = 0; i < numberOfChannels(); ++i) |
| 221 | { |
| 222 | max = std::max(max, channel(i)->maxAbsValue()); |
| 223 | } |
| 224 | |
| 225 | return max; |
| 226 | } |
| 227 | |
| 228 | void AudioBus::normalize() |
| 229 | { |
nothing calls this directly
no outgoing calls
no test coverage detected