Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(777)

Side by Side Diff: chromecast/media/audio/cast_audio_manager.cc

Issue 1845783002: [chromecast] Pass media task runner to MediaPipelineBackendManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: fix a unittest Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromecast/media/audio/cast_audio_manager.h" 5 #include "chromecast/media/audio/cast_audio_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "chromecast/media/audio/cast_audio_output_stream.h" 10 #include "chromecast/media/audio/cast_audio_output_stream.h"
(...skipping 10 matching lines...) Expand all
21 // Note: These values are copied from AudioManagerPulse implementation. 21 // Note: These values are copied from AudioManagerPulse implementation.
22 // TODO(alokp): Query the preferred value from media backend. 22 // TODO(alokp): Query the preferred value from media backend.
23 static const int kMinimumOutputBufferSize = 512; 23 static const int kMinimumOutputBufferSize = 512;
24 static const int kMaximumOutputBufferSize = 8192; 24 static const int kMaximumOutputBufferSize = 8192;
25 static const int kDefaultOutputBufferSize = 2048; 25 static const int kDefaultOutputBufferSize = 2048;
26 } // namespace 26 } // namespace
27 27
28 namespace chromecast { 28 namespace chromecast {
29 namespace media { 29 namespace media {
30 30
31 CastAudioManager::CastAudioManager(::media::AudioLogFactory* audio_log_factory) 31 CastAudioManager::CastAudioManager(::media::AudioLogFactory* audio_log_factory,
32 : AudioManagerBase(audio_log_factory) {} 32 MediaPipelineBackendManager* backend_manager)
33 : AudioManagerBase(audio_log_factory), backend_manager_(backend_manager) {
34 }
33 35
34 CastAudioManager::~CastAudioManager() { 36 CastAudioManager::~CastAudioManager() {
35 Shutdown(); 37 Shutdown();
36 } 38 }
37 39
38 bool CastAudioManager::HasAudioOutputDevices() { 40 bool CastAudioManager::HasAudioOutputDevices() {
39 return true; 41 return true;
40 } 42 }
41 43
42 bool CastAudioManager::HasAudioInputDevices() { 44 bool CastAudioManager::HasAudioInputDevices() {
(...skipping 14 matching lines...) Expand all
57 const std::string& device_id) { 59 const std::string& device_id) {
58 LOG(WARNING) << "No support for input audio devices"; 60 LOG(WARNING) << "No support for input audio devices";
59 // Need to send a valid AudioParameters object even when it will unused. 61 // Need to send a valid AudioParameters object even when it will unused.
60 return ::media::AudioParameters( 62 return ::media::AudioParameters(
61 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY, 63 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY,
62 ::media::CHANNEL_LAYOUT_STEREO, 48000, 16, 1024); 64 ::media::CHANNEL_LAYOUT_STEREO, 48000, 16, 1024);
63 } 65 }
64 66
65 scoped_ptr<MediaPipelineBackend> CastAudioManager::CreateMediaPipelineBackend( 67 scoped_ptr<MediaPipelineBackend> CastAudioManager::CreateMediaPipelineBackend(
66 const MediaPipelineDeviceParams& params) { 68 const MediaPipelineDeviceParams& params) {
67 DCHECK(media::MediaMessageLoop::GetTaskRunner()->BelongsToCurrentThread()); 69 DCHECK(media::MediaMessageLoop::GetTaskRunner()->BelongsToCurrentThread());
alokp 2016/03/31 04:37:24 Remove this check from here.
tianyuwang1 2016/03/31 18:14:53 Done.
68 70
69 return scoped_ptr<MediaPipelineBackend>( 71 return scoped_ptr<MediaPipelineBackend>(
70 MediaPipelineBackendManager::CreateMediaPipelineBackend(params)); 72 backend_manager_->CreateMediaPipelineBackend(params));
71 } 73 }
72 74
73 ::media::AudioOutputStream* CastAudioManager::MakeLinearOutputStream( 75 ::media::AudioOutputStream* CastAudioManager::MakeLinearOutputStream(
74 const ::media::AudioParameters& params) { 76 const ::media::AudioParameters& params) {
75 DCHECK_EQ(::media::AudioParameters::AUDIO_PCM_LINEAR, params.format()); 77 DCHECK_EQ(::media::AudioParameters::AUDIO_PCM_LINEAR, params.format());
76 return new CastAudioOutputStream(params, this); 78 return new CastAudioOutputStream(params, this);
77 } 79 }
78 80
79 ::media::AudioOutputStream* CastAudioManager::MakeLowLatencyOutputStream( 81 ::media::AudioOutputStream* CastAudioManager::MakeLowLatencyOutputStream(
80 const ::media::AudioParameters& params, 82 const ::media::AudioParameters& params,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 118 }
117 119
118 ::media::AudioParameters output_params( 120 ::media::AudioParameters output_params(
119 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY, channel_layout, 121 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY, channel_layout,
120 sample_rate, bits_per_sample, buffer_size); 122 sample_rate, bits_per_sample, buffer_size);
121 return output_params; 123 return output_params;
122 } 124 }
123 125
124 } // namespace media 126 } // namespace media
125 } // namespace chromecast 127 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698