OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/renderer/media/webrtc_audio_device_impl.h" | 5 #include "content/renderer/media/webrtc_audio_device_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/win/windows_version.h" | 10 #include "base/win/windows_version.h" |
11 #include "content/renderer/media/audio_hardware.h" | |
12 #include "content/renderer/media/webrtc_audio_capturer.h" | 11 #include "content/renderer/media/webrtc_audio_capturer.h" |
13 #include "content/renderer/media/webrtc_audio_renderer.h" | 12 #include "content/renderer/media/webrtc_audio_renderer.h" |
14 #include "content/renderer/render_thread_impl.h" | 13 #include "content/renderer/render_thread_impl.h" |
15 #include "media/audio/audio_parameters.h" | 14 #include "media/audio/audio_parameters.h" |
16 #include "media/audio/audio_util.h" | 15 #include "media/audio/audio_util.h" |
17 #include "media/audio/sample_rates.h" | 16 #include "media/audio/sample_rates.h" |
18 | 17 |
19 using media::AudioParameters; | 18 using media::AudioParameters; |
20 using media::ChannelLayout; | 19 using media::ChannelLayout; |
21 | 20 |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 NOTIMPLEMENTED(); | 849 NOTIMPLEMENTED(); |
851 return -1; | 850 return -1; |
852 } | 851 } |
853 | 852 |
854 int32_t WebRtcAudioDeviceImpl::GetLoudspeakerStatus(bool* enabled) const { | 853 int32_t WebRtcAudioDeviceImpl::GetLoudspeakerStatus(bool* enabled) const { |
855 NOTIMPLEMENTED(); | 854 NOTIMPLEMENTED(); |
856 return -1; | 855 return -1; |
857 } | 856 } |
858 | 857 |
859 } // namespace content | 858 } // namespace content |
OLD | NEW |