Home
last modified time | relevance | path

Searched refs:soundParserThreadPool_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/frameworks/native/soundpool/
H A Dsound_id_manager.cpp60 if (soundParserThreadPool_ != nullptr) { in ~SoundIDManager()
61 soundParserThreadPool_->Stop(); in ~SoundIDManager()
72 soundParserThreadPool_ = std::make_unique<ThreadPool>(THREAD_POOL_NAME); in InitThreadPool()
73 …CHECK_AND_RETURN_RET_LOG(soundParserThreadPool_ != nullptr, MSERR_INVALID_VAL, "Failed to obtain T… in InitThreadPool()
74 soundParserThreadPool_->Start(MAX_THREADS_NUM); in InitThreadPool()
149 …CHECK_AND_RETURN_RET_LOG(soundParserThreadPool_ != nullptr, MSERR_INVALID_VAL, "Failed to obtain T… in DoLoad()
151 soundParserThreadPool_->AddTask(soundParsingTask); in DoLoad()
H A Dsound_id_manager.h54 std::unique_ptr<ThreadPool> soundParserThreadPool_; variable