| 102 | } |
| 103 | |
| 104 | void ProjectAudioIO::SetCaptureMeter( |
| 105 | const std::shared_ptr<Meter> &capture) |
| 106 | { |
| 107 | auto &project = mProject; |
| 108 | mCaptureMeter = capture; |
| 109 | |
| 110 | auto gAudioIO = AudioIOBase::Get(); |
| 111 | if (gAudioIO) |
| 112 | { |
| 113 | gAudioIO->SetCaptureMeter( project.shared_from_this(), mCaptureMeter ); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void ProjectAudioIO::SetPlaySpeed(double value) |
| 118 | { |
no test coverage detected