summaryrefslogtreecommitdiffstats
path: root/media/cast/test/utility/standalone_cast_environment.cc
diff options
context:
space:
mode:
Diffstat (limited to 'media/cast/test/utility/standalone_cast_environment.cc')
-rw-r--r--media/cast/test/utility/standalone_cast_environment.cc59
1 files changed, 59 insertions, 0 deletions
diff --git a/media/cast/test/utility/standalone_cast_environment.cc b/media/cast/test/utility/standalone_cast_environment.cc
new file mode 100644
index 0000000..7e82620
--- /dev/null
+++ b/media/cast/test/utility/standalone_cast_environment.cc
@@ -0,0 +1,59 @@
+// Copyright 2014 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/cast/test/utility/standalone_cast_environment.h"
+
+#include "base/time/default_tick_clock.h"
+
+namespace media {
+namespace cast {
+
+StandaloneCastEnvironment::StandaloneCastEnvironment(
+ const CastLoggingConfig& logging_config)
+ : CastEnvironment(
+ make_scoped_ptr<base::TickClock>(new base::DefaultTickClock()),
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ logging_config),
+ main_thread_("StandaloneCastEnvironment Main"),
+ audio_encode_thread_("StandaloneCastEnvironment Audio Encode"),
+ audio_decode_thread_("StandaloneCastEnvironment Audio Decode"),
+ video_encode_thread_("StandaloneCastEnvironment Video Encode"),
+ video_decode_thread_("StandaloneCastEnvironment Video Decode"),
+ transport_thread_("StandaloneCastEnvironment Transport") {
+#define CREATE_TASK_RUNNER(name, options) \
+ name##_thread_.StartWithOptions(options); \
+ CastEnvironment::name##_thread_proxy_ = name##_thread_.message_loop_proxy()
+
+ CREATE_TASK_RUNNER(main,
+ base::Thread::Options(base::MessageLoop::TYPE_IO, 0));
+ CREATE_TASK_RUNNER(audio_encode, base::Thread::Options());
+ CREATE_TASK_RUNNER(audio_decode, base::Thread::Options());
+ CREATE_TASK_RUNNER(video_encode, base::Thread::Options());
+ CREATE_TASK_RUNNER(video_decode, base::Thread::Options());
+ CREATE_TASK_RUNNER(transport, base::Thread::Options());
+
+#undef CREATE_TASK_RUNNER
+}
+
+StandaloneCastEnvironment::~StandaloneCastEnvironment() {
+ DCHECK(CalledOnValidThread());
+}
+
+void StandaloneCastEnvironment::Shutdown() {
+ DCHECK(CalledOnValidThread());
+ main_thread_.Stop();
+ audio_encode_thread_.Stop();
+ audio_decode_thread_.Stop();
+ video_encode_thread_.Stop();
+ video_decode_thread_.Stop();
+ transport_thread_.Stop();
+}
+
+} // namespace cast
+} // namespace media