Loading media/jni/soundpool/SoundPool.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -185,7 +185,7 @@ void SoundPool::stop(int32_t streamID) auto apiLock = kUseApiLock ? std::make_unique<std::lock_guard<std::mutex>>(mApiLock) : nullptr; soundpool::Stream* stream = mStreamManager.findStream(streamID); if (stream != nullptr && stream->requestStop(streamID)) { mStreamManager.moveToRestartQueue(stream); mStreamManager.moveToRestartQueue(stream, streamID); } } Loading Loading
media/jni/soundpool/SoundPool.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -185,7 +185,7 @@ void SoundPool::stop(int32_t streamID) auto apiLock = kUseApiLock ? std::make_unique<std::lock_guard<std::mutex>>(mApiLock) : nullptr; soundpool::Stream* stream = mStreamManager.findStream(streamID); if (stream != nullptr && stream->requestStop(streamID)) { mStreamManager.moveToRestartQueue(stream); mStreamManager.moveToRestartQueue(stream, streamID); } } Loading