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

Side by Side Diff: webrtc/modules/audio_device/audio_device_generic.cc

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, 3 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 int32_t AudioDeviceGeneric::EnableBuiltInAEC(bool enable) { 55 int32_t AudioDeviceGeneric::EnableBuiltInAEC(bool enable) {
56 LOG_F(LS_ERROR) << "Not supported on this platform"; 56 LOG_F(LS_ERROR) << "Not supported on this platform";
57 return -1; 57 return -1;
58 } 58 }
59 59
60 bool AudioDeviceGeneric::BuiltInAECIsEnabled() const { 60 bool AudioDeviceGeneric::BuiltInAECIsEnabled() const {
61 LOG_F(LS_ERROR) << "Not supported on this platform"; 61 LOG_F(LS_ERROR) << "Not supported on this platform";
62 return false; 62 return false;
63 } 63 }
64 64
65 bool AudioDeviceGeneric::BuiltInAGCIsAvailable() const {
66 LOG_F(LS_ERROR) << "Not supported on this platform";
67 return false;
68 }
69
70 int32_t AudioDeviceGeneric::EnableBuiltInAGC(bool enable) {
71 LOG_F(LS_ERROR) << "Not supported on this platform";
72 return -1;
73 }
74
75 bool AudioDeviceGeneric::BuiltInNSIsAvailable() const {
76 LOG_F(LS_ERROR) << "Not supported on this platform";
77 return false;
78 }
79
80 int32_t AudioDeviceGeneric::EnableBuiltInNS(bool enable) {
81 LOG_F(LS_ERROR) << "Not supported on this platform";
82 return -1;
83 }
84
65 int AudioDeviceGeneric::GetPlayoutAudioParameters( 85 int AudioDeviceGeneric::GetPlayoutAudioParameters(
66 AudioParameters* params) const { 86 AudioParameters* params) const {
67 LOG_F(LS_ERROR) << "Not supported on this platform"; 87 LOG_F(LS_ERROR) << "Not supported on this platform";
68 return -1; 88 return -1;
69 } 89 }
70 int AudioDeviceGeneric::GetRecordAudioParameters( 90 int AudioDeviceGeneric::GetRecordAudioParameters(
71 AudioParameters* params) const { 91 AudioParameters* params) const {
72 LOG_F(LS_ERROR) << "Not supported on this platform"; 92 LOG_F(LS_ERROR) << "Not supported on this platform";
73 return -1; 93 return -1;
74 } 94 }
75 95
76 } // namespace webrtc 96 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/audio_device_generic.h ('k') | webrtc/modules/audio_device/audio_device_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698