Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_device/win/
Dcore_audio_base_win.cc554 RTC_DCHECK(audio_thread_); in Start()
559 if (!audio_thread_) { in Start()
560 audio_thread_ = std::make_unique<rtc::PlatformThread>( in Start()
563 RTC_DCHECK(audio_thread_); in Start()
564 audio_thread_->Start(); in Start()
565 if (!audio_thread_->IsRunning()) { in Start()
570 RTC_DLOG(INFO) << "Started thread with name: " << audio_thread_->name() in Start()
571 << " and id: " << audio_thread_->GetThreadRef(); in Start()
698 if (audio_thread_) { in StopThread()
699 if (audio_thread_->IsRunning()) { in StopThread()
[all …]
Dcore_audio_base_win.h161 std::unique_ptr<rtc::PlatformThread> audio_thread_; variable