| 231 | } |
| 232 | |
| 233 | void Abyss::Streams::AudioStream::stop() { |
| 234 | std::lock_guard lock(_mutex); |
| 235 | |
| 236 | _isPlaying = false; |
| 237 | _isPaused = false; |
| 238 | av_seek_frame(_avFormatContext, _audioStreamIdx, 0, AVSEEK_FLAG_FRAME); |
| 239 | } |
nothing calls this directly
no outgoing calls
no test coverage detected