O(1) - returns pre-computed cached value
| 138 | |
| 139 | // O(1) - returns pre-computed cached value |
| 140 | float Sample::rms() const { |
| 141 | if (!isValid()) { |
| 142 | return 0.0f; |
| 143 | } |
| 144 | return mImpl->rms(); |
| 145 | } |
| 146 | |
| 147 | SoundLevelMeter::SoundLevelMeter(double spl_floor, double smoothing_alpha) |
| 148 | : mSplFloor(spl_floor), mSmoothingAlpha(smoothing_alpha), |
no outgoing calls
no test coverage detected