| 350 | } |
| 351 | |
| 352 | bool SoundCaptureResult::GetStats(uint32_t& scaledAverage, uint32_t& currentMax, ColorRgb& averageColor, ColorRgb* fastColor, ColorRgb* slowColor) |
| 353 | { |
| 354 | scaledAverage = _scaledAverage; |
| 355 | averageColor = mtWorking._averageColor; |
| 356 | currentMax = _currentMax; |
| 357 | if (fastColor != NULL) |
| 358 | *fastColor = mtWorking._fastColor; |
| 359 | if (slowColor != NULL) |
| 360 | *slowColor = mtWorking._slowColor; |
| 361 | return _validData; |
| 362 | } |
| 363 | |
| 364 | uint32_t SoundCaptureResult::getResultIndex() |
| 365 | { |
no outgoing calls
no test coverage detected