| OLD | NEW |
| 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 Loading... |
| 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::IntelligibilityIsEnabled() const { |
| 66 LOG_F(LS_ERROR) << "Not supported on this platform"; |
| 67 return false; |
| 68 } |
| 69 |
| 65 bool AudioDeviceGeneric::BuiltInAGCIsAvailable() const { | 70 bool AudioDeviceGeneric::BuiltInAGCIsAvailable() const { |
| 66 LOG_F(LS_ERROR) << "Not supported on this platform"; | 71 LOG_F(LS_ERROR) << "Not supported on this platform"; |
| 67 return false; | 72 return false; |
| 68 } | 73 } |
| 69 | 74 |
| 70 int32_t AudioDeviceGeneric::EnableBuiltInAGC(bool enable) { | 75 int32_t AudioDeviceGeneric::EnableBuiltInAGC(bool enable) { |
| 71 LOG_F(LS_ERROR) << "Not supported on this platform"; | 76 LOG_F(LS_ERROR) << "Not supported on this platform"; |
| 72 return -1; | 77 return -1; |
| 73 } | 78 } |
| 74 | 79 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 87 LOG_F(LS_ERROR) << "Not supported on this platform"; | 92 LOG_F(LS_ERROR) << "Not supported on this platform"; |
| 88 return -1; | 93 return -1; |
| 89 } | 94 } |
| 90 int AudioDeviceGeneric::GetRecordAudioParameters( | 95 int AudioDeviceGeneric::GetRecordAudioParameters( |
| 91 AudioParameters* params) const { | 96 AudioParameters* params) const { |
| 92 LOG_F(LS_ERROR) << "Not supported on this platform"; | 97 LOG_F(LS_ERROR) << "Not supported on this platform"; |
| 93 return -1; | 98 return -1; |
| 94 } | 99 } |
| 95 | 100 |
| 96 } // namespace webrtc | 101 } // namespace webrtc |
| OLD | NEW |