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

Side by Side Diff: webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioEffects.java

Issue 1372873002: Minor fix for debug logging on Android (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
« no previous file with comments | « no previous file | webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 if (!WebRtcAudioUtils.runningOnJellyBeanOrHigher()) { 202 if (!WebRtcAudioUtils.runningOnJellyBeanOrHigher()) {
203 Logging.w(TAG, "API level 16 or higher is required!"); 203 Logging.w(TAG, "API level 16 or higher is required!");
204 return null; 204 return null;
205 } 205 }
206 return new WebRtcAudioEffects(); 206 return new WebRtcAudioEffects();
207 } 207 }
208 208
209 private WebRtcAudioEffects() { 209 private WebRtcAudioEffects() {
210 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo()); 210 Logging.d(TAG, "ctor" + WebRtcAudioUtils.getThreadInfo());
211 for (Descriptor d : AudioEffect.queryEffects()) { 211 for (Descriptor d : AudioEffect.queryEffects()) {
212 if (effectTypeIsVoIP(d.type)) { 212 if (effectTypeIsVoIP(d.type) || DEBUG) {
213 // Only log information for VoIP effects (AEC, AEC and NS). 213 // Only log information for VoIP effects (AEC, AEC and NS).
214 Logging.d(TAG, "name: " + d.name + ", " 214 Logging.d(TAG, "name: " + d.name + ", "
215 + "mode: " + d.connectMode + ", " 215 + "mode: " + d.connectMode + ", "
216 + "implementor: " + d.implementor + ", " 216 + "implementor: " + d.implementor + ", "
217 + "UUID: " + d.uuid); 217 + "UUID: " + d.uuid);
218 } 218 }
219 } 219 }
220 } 220 }
221 221
222 // Call this method to enable or disable the platform AEC. It modifies 222 // Call this method to enable or disable the platform AEC. It modifies
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 && isNoiseSuppressorSupported()); 375 && isNoiseSuppressorSupported());
376 } 376 }
377 377
378 // Helper method which throws an exception when an assertion has failed. 378 // Helper method which throws an exception when an assertion has failed.
379 private static void assertTrue(boolean condition) { 379 private static void assertTrue(boolean condition) {
380 if (!condition) { 380 if (!condition) {
381 throw new AssertionError("Expected condition to be true"); 381 throw new AssertionError("Expected condition to be true");
382 } 382 }
383 } 383 }
384 } 384 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698