| 218 | } |
| 219 | |
| 220 | void Abyss::Streams::AudioStream::pause() { |
| 221 | std::lock_guard lock(_mutex); |
| 222 | |
| 223 | _isPaused = true; |
| 224 | } |
| 225 | |
| 226 | void Abyss::Streams::AudioStream::play() { |
| 227 | std::lock_guard lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected