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

Unified Diff: webrtc/modules/audio_device/audio_device_impl.cc

Issue 2202243004: Remove VERBOSE logs in (android) audio device code. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_device/android/audio_device_template.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_device/audio_device_impl.cc
diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc
index bfcbb00e48a492bdcffa20b9870411ba3d04ad56..9f141675bce96d6168e2bbfef14e76fd1cefd65e 100644
--- a/webrtc/modules/audio_device/audio_device_impl.cc
+++ b/webrtc/modules/audio_device/audio_device_impl.cc
@@ -387,7 +387,6 @@ AudioDeviceModuleImpl::~AudioDeviceModuleImpl() {
// ----------------------------------------------------------------------------
int64_t AudioDeviceModuleImpl::TimeUntilNextProcess() {
- LOG(LS_VERBOSE) << __FUNCTION__;
int64_t now = rtc::TimeMillis();
int64_t deltaProcess = kAdmMaxIdleTimeProcess - (now - _lastProcessTime);
return deltaProcess;
@@ -401,7 +400,6 @@ int64_t AudioDeviceModuleImpl::TimeUntilNextProcess() {
// ----------------------------------------------------------------------------
void AudioDeviceModuleImpl::Process() {
- LOG(LS_VERBOSE) << __FUNCTION__;
_lastProcessTime = rtc::TimeMillis();
// kPlayoutWarning
@@ -1606,7 +1604,6 @@ int32_t AudioDeviceModuleImpl::PlayoutBuffer(BufferType* type,
// ----------------------------------------------------------------------------
int32_t AudioDeviceModuleImpl::PlayoutDelay(uint16_t* delayMS) const {
- LOG(LS_VERBOSE) << __FUNCTION__;
CHECK_INITIALIZED();
uint16_t delay(0);
@@ -1617,7 +1614,6 @@ int32_t AudioDeviceModuleImpl::PlayoutDelay(uint16_t* delayMS) const {
}
*delayMS = delay;
- LOG(LS_VERBOSE) << "output: " << *delayMS;
return (0);
}
« no previous file with comments | « webrtc/modules/audio_device/android/audio_device_template.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698