OLD | NEW |
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" |
11 #include "chromecast/media/cma/backend/media_pipeline_backend_manager.h" | 11 #include "chromecast/media/cma/backend/media_pipeline_backend_manager.h" |
12 | 12 |
13 namespace { | 13 namespace { |
14 // TODO(alokp): Query the preferred value from media backend. | 14 // TODO(alokp): Query the preferred value from media backend. |
15 const int kDefaultSampleRate = 48000; | 15 const int kDefaultSampleRate = 48000; |
16 | 16 |
17 // Define bounds for the output buffer size (in frames). | 17 // Define bounds for the output buffer size (in frames). |
18 // Note: These values are copied from AudioManagerPulse implementation. | 18 // Note: These values are copied from AudioManagerPulse implementation. |
19 // TODO(alokp): Query the preferred value from media backend. | 19 // TODO(alokp): Query the preferred value from media backend. |
20 static const int kMinimumOutputBufferSize = 512; | 20 static const int kMinimumOutputBufferSize = 512; |
21 static const int kMaximumOutputBufferSize = 8192; | 21 static const int kMaximumOutputBufferSize = 8192; |
22 static const int kDefaultOutputBufferSize = 2048; | 22 static const int kDefaultOutputBufferSize = 2048; |
23 } // namespace | 23 } // namespace |
24 | 24 |
25 namespace chromecast { | 25 namespace chromecast { |
26 namespace media { | 26 namespace media { |
27 | 27 |
28 CastAudioManager::CastAudioManager( | 28 CastAudioManager::CastAudioManager(::media::AudioLogFactory* audio_log_factory, |
29 scoped_refptr<base::SingleThreadTaskRunner> task_runner, | 29 MediaPipelineBackendManager* backend_manager) |
30 scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner, | 30 : AudioManagerBase(audio_log_factory), backend_manager_(backend_manager) { |
31 ::media::AudioLogFactory* audio_log_factory, | 31 } |
32 MediaPipelineBackendManager* backend_manager) | |
33 : AudioManagerBase(std::move(task_runner), | |
34 std::move(worker_task_runner), | |
35 audio_log_factory), | |
36 backend_manager_(backend_manager) {} | |
37 | 32 |
38 CastAudioManager::~CastAudioManager() { | 33 CastAudioManager::~CastAudioManager() { |
39 Shutdown(); | 34 Shutdown(); |
40 } | 35 } |
41 | 36 |
42 bool CastAudioManager::HasAudioOutputDevices() { | 37 bool CastAudioManager::HasAudioOutputDevices() { |
43 return true; | 38 return true; |
44 } | 39 } |
45 | 40 |
46 bool CastAudioManager::HasAudioInputDevices() { | 41 bool CastAudioManager::HasAudioInputDevices() { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 } | 113 } |
119 | 114 |
120 ::media::AudioParameters output_params( | 115 ::media::AudioParameters output_params( |
121 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY, channel_layout, | 116 ::media::AudioParameters::AUDIO_PCM_LOW_LATENCY, channel_layout, |
122 sample_rate, bits_per_sample, buffer_size); | 117 sample_rate, bits_per_sample, buffer_size); |
123 return output_params; | 118 return output_params; |
124 } | 119 } |
125 | 120 |
126 } // namespace media | 121 } // namespace media |
127 } // namespace chromecast | 122 } // namespace chromecast |
OLD | NEW |