| 224 | } |
| 225 | |
| 226 | void Abyss::Streams::AudioStream::play() { |
| 227 | std::lock_guard lock(_mutex); |
| 228 | |
| 229 | _isPaused = false; |
| 230 | _isPlaying = true; |
| 231 | } |
| 232 | |
| 233 | void Abyss::Streams::AudioStream::stop() { |
| 234 | std::lock_guard lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected