diff options
| author | JosJuice <josjuice@gmail.com> | 2024-06-04 19:32:04 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2024-06-04 19:32:04 +0200 |
| commit | a3c23353c05c6455e47889dc5338fe6ee494d813 (patch) | |
| tree | fe7519288578ddcb8f2fd1ab380ba9ac54e39087 /Source/Core/AudioCommon/OpenSLESStream.cpp | |
| parent | 2b386cdcdc5f05a34529f80edb132697f398edc7 (diff) | |
Android: Implement OpenSLESStream::SetRunning
Diffstat (limited to 'Source/Core/AudioCommon/OpenSLESStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/OpenSLESStream.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/OpenSLESStream.cpp b/Source/Core/AudioCommon/OpenSLESStream.cpp index a35b981017..a3f6308187 100644 --- a/Source/Core/AudioCommon/OpenSLESStream.cpp +++ b/Source/Core/AudioCommon/OpenSLESStream.cpp @@ -137,6 +137,12 @@ OpenSLESStream::~OpenSLESStream() } } +bool OpenSLESStream::SetRunning(bool running) +{ + SLuint32 new_state = running ? SL_PLAYSTATE_PLAYING : SL_PLAYSTATE_PAUSED; + return (*bqPlayerPlay)->SetPlayState(bqPlayerPlay, new_state) == SL_RESULT_SUCCESS; +} + void OpenSLESStream::SetVolume(int volume) { const SLmillibel attenuation = |
