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

Side by Side Diff: webrtc/modules/audio_device/include/fake_audio_device.h

Issue 1344563002: Improving support for Android Audio Effects in WebRTC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improved comments Created 5 years, 2 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 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 virtual int32_t SetPlayoutSampleRate(const uint32_t samplesPerSec) { 140 virtual int32_t SetPlayoutSampleRate(const uint32_t samplesPerSec) {
141 return 0; 141 return 0;
142 } 142 }
143 virtual int32_t PlayoutSampleRate(uint32_t* samplesPerSec) const { return 0; } 143 virtual int32_t PlayoutSampleRate(uint32_t* samplesPerSec) const { return 0; }
144 virtual int32_t ResetAudioDevice() { return 0; } 144 virtual int32_t ResetAudioDevice() { return 0; }
145 virtual int32_t SetLoudspeakerStatus(bool enable) { return 0; } 145 virtual int32_t SetLoudspeakerStatus(bool enable) { return 0; }
146 virtual int32_t GetLoudspeakerStatus(bool* enabled) const { return 0; } 146 virtual int32_t GetLoudspeakerStatus(bool* enabled) const { return 0; }
147 virtual bool BuiltInAECIsAvailable() const { return false; } 147 virtual bool BuiltInAECIsAvailable() const { return false; }
148 virtual int32_t EnableBuiltInAEC(bool enable) { return -1; } 148 virtual int32_t EnableBuiltInAEC(bool enable) { return -1; }
149 virtual bool BuiltInAECIsEnabled() const { return false; } 149 virtual bool BuiltInAECIsEnabled() const { return false; }
150 virtual bool BuiltInAGCIsAvailable() const { return false; }
151 virtual int32_t EnableBuiltInAGC(bool enable) { return -1; }
152 virtual bool BuiltInNSIsAvailable() const { return false; }
153 virtual int32_t EnableBuiltInNS(bool enable) { return -1; }
150 }; 154 };
151 155
152 } // namespace webrtc 156 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/include/audio_device.h ('k') | webrtc/voice_engine/include/voe_hardware.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698