| 85 | } |
| 86 | |
| 87 | void ProjectAudioIO::SetPlaybackMeter( |
| 88 | const std::shared_ptr<Meter> &playback) |
| 89 | { |
| 90 | auto &project = mProject; |
| 91 | mPlaybackMeter = playback; |
| 92 | auto gAudioIO = AudioIOBase::Get(); |
| 93 | if (gAudioIO) |
| 94 | { |
| 95 | gAudioIO->SetPlaybackMeter( project.shared_from_this() , mPlaybackMeter ); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | const std::shared_ptr<Meter> &ProjectAudioIO::GetCaptureMeter() const |
| 100 | { |
no test coverage detected