| 36 | } |
| 37 | |
| 38 | float CompressorInstance::GetLatencyMs() const |
| 39 | { |
| 40 | return mSlaves.empty() ? |
| 41 | mCompressor->GetSettings().lookaheadMs : |
| 42 | mSlaves.front().mCompressor->GetSettings().lookaheadMs; |
| 43 | } |
| 44 | |
| 45 | void CompressorInstance::SetOutputQueue( |
| 46 | std::weak_ptr<DynamicRangeProcessorOutputPacketQueue> outputQueue) |
no test coverage detected