blob: 87a2eab7d24919744fc8603dc4c37e3586b90acf [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/audio/audio_thread_impl.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/default_tick_clock.h"
#include "build/build_config.h"
#include "media/audio/audio_thread_hang_monitor.h"
namespace media {
AudioThreadImpl::AudioThreadImpl()
: thread_("AudioThread"),
hang_monitor_(nullptr, base::OnTaskRunnerDeleter(nullptr)) {
base::Thread::Options thread_options;
#if defined(OS_WIN)
thread_.init_com_with_mta(true);
#elif defined(OS_FUCHSIA)
// FIDL-based APIs require async_t, which is initialized on IO thread.
thread_options.message_loop_type = base::MessageLoop::TYPE_IO;
#endif
CHECK(thread_.StartWithOptions(thread_options));
#if defined(OS_MACOSX)
// On Mac, the audio task runner must belong to the main thread.
// See http://crbug.com/158170.
task_runner_ = base::ThreadTaskRunnerHandle::Get();
#else
task_runner_ = thread_.task_runner();
#endif
worker_task_runner_ = thread_.task_runner();
#if !defined(OS_MACOSX)
// Since we run on the main thread on Mac, we don't need a hang monitor.
hang_monitor_ = AudioThreadHangMonitor::Create(
false, base::DefaultTickClock::GetInstance(), task_runner_);
#endif
}
AudioThreadImpl::~AudioThreadImpl() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
}
void AudioThreadImpl::Stop() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
hang_monitor_.reset();
// Note that on MACOSX, we can still have tasks posted on the |task_runner_|,
// since it is the main thread task runner and we do not stop the main thread.
// But this is fine becuase none of those tasks will actually run.
thread_.Stop();
}
bool AudioThreadImpl::IsHung() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
#if defined(OS_MACOSX)
return false;
#else
return hang_monitor_->IsAudioThreadHung();
#endif
}
base::SingleThreadTaskRunner* AudioThreadImpl::GetTaskRunner() {
return task_runner_.get();
}
base::SingleThreadTaskRunner* AudioThreadImpl::GetWorkerTaskRunner() {
return worker_task_runner_.get();
}
} // namespace media