OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "media/audio/audio_output_stream_sink.h" | 5 #include "media/audio/audio_output_stream_sink.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 bool AudioOutputStreamSink::SetVolume(double volume) { | 70 bool AudioOutputStreamSink::SetVolume(double volume) { |
71 audio_task_runner_->PostTask( | 71 audio_task_runner_->PostTask( |
72 FROM_HERE, base::Bind(&AudioOutputStreamSink::DoSetVolume, this, volume)); | 72 FROM_HERE, base::Bind(&AudioOutputStreamSink::DoSetVolume, this, volume)); |
73 return true; | 73 return true; |
74 } | 74 } |
75 | 75 |
76 OutputDeviceInfo AudioOutputStreamSink::GetOutputDeviceInfo() { | 76 OutputDeviceInfo AudioOutputStreamSink::GetOutputDeviceInfo() { |
77 return OutputDeviceInfo(); | 77 return OutputDeviceInfo(); |
78 } | 78 } |
79 | 79 |
| 80 bool AudioOutputStreamSink::CurrentThreadIsRenderingThread() { |
| 81 NOTIMPLEMENTED(); |
| 82 return false; |
| 83 } |
| 84 |
80 int AudioOutputStreamSink::OnMoreData(AudioBus* dest, | 85 int AudioOutputStreamSink::OnMoreData(AudioBus* dest, |
81 uint32_t total_bytes_delay, | 86 uint32_t total_bytes_delay, |
82 uint32_t frames_skipped) { | 87 uint32_t frames_skipped) { |
83 // Note: Runs on the audio thread created by the OS. | 88 // Note: Runs on the audio thread created by the OS. |
84 base::AutoLock al(callback_lock_); | 89 base::AutoLock al(callback_lock_); |
85 if (!active_render_callback_) | 90 if (!active_render_callback_) |
86 return 0; | 91 return 0; |
87 | 92 |
88 uint32_t frames_delayed = std::round(static_cast<double>(total_bytes_delay) / | 93 uint32_t frames_delayed = std::round(static_cast<double>(total_bytes_delay) / |
89 active_params_.GetBytesPerFrame()); | 94 active_params_.GetBytesPerFrame()); |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 DCHECK(audio_task_runner_->BelongsToCurrentThread()); | 148 DCHECK(audio_task_runner_->BelongsToCurrentThread()); |
144 stream_->SetVolume(volume); | 149 stream_->SetVolume(volume); |
145 } | 150 } |
146 | 151 |
147 void AudioOutputStreamSink::ClearCallback() { | 152 void AudioOutputStreamSink::ClearCallback() { |
148 base::AutoLock al(callback_lock_); | 153 base::AutoLock al(callback_lock_); |
149 active_render_callback_ = NULL; | 154 active_render_callback_ = NULL; |
150 } | 155 } |
151 | 156 |
152 } // namepace media | 157 } // namepace media |
OLD | NEW |