mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
CubebStream: implement SetRunning
This commit is contained in:
parent
28f9034536
commit
ad4a89d64b
2 changed files with 16 additions and 4 deletions
|
@ -76,12 +76,23 @@ bool CubebStream::Start()
|
|||
return true;
|
||||
}
|
||||
|
||||
void CubebStream::SetRunning(bool running)
|
||||
{
|
||||
if (running)
|
||||
{
|
||||
if (cubeb_stream_start(m_stream) != CUBEB_OK)
|
||||
ERROR_LOG(AUDIO, "Error starting cubeb stream");
|
||||
}
|
||||
else
|
||||
{
|
||||
if (cubeb_stream_stop(m_stream) != CUBEB_OK)
|
||||
ERROR_LOG(AUDIO, "Error stopping cubeb stream");
|
||||
}
|
||||
}
|
||||
|
||||
void CubebStream::Stop()
|
||||
{
|
||||
if (cubeb_stream_stop(m_stream) != CUBEB_OK)
|
||||
{
|
||||
ERROR_LOG(AUDIO, "Error stopping cubeb stream");
|
||||
}
|
||||
SetRunning(false);
|
||||
cubeb_stream_destroy(m_stream);
|
||||
m_ctx.reset();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue