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

Unified Diff: webrtc/voice_engine/voe_video_sync_impl.cc

Issue 1347353004: Reduce LS_INFO spam from voice_engine/. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/voice_engine/voe_rtp_rtcp_impl.cc ('k') | webrtc/voice_engine/voe_volume_control_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/voe_video_sync_impl.cc
diff --git a/webrtc/voice_engine/voe_video_sync_impl.cc b/webrtc/voice_engine/voe_video_sync_impl.cc
index 8896c905dcc05ddedf98fbd9eb88b172856b1848..4dea6fa1696330aeb8a01cc2d8f9b5a567d3a8c7 100644
--- a/webrtc/voice_engine/voe_video_sync_impl.cc
+++ b/webrtc/voice_engine/voe_video_sync_impl.cc
@@ -45,9 +45,6 @@ VoEVideoSyncImpl::~VoEVideoSyncImpl() {
int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel,
unsigned int& timestamp) {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetPlayoutTimestamp(channel=%d, timestamp=?)", channel);
-
if (!_shared->statistics().Initialized()) {
_shared->SetLastError(VE_NOT_INITED, kTraceError);
return -1;
@@ -141,9 +138,6 @@ int VoEVideoSyncImpl::SetInitialPlayoutDelay(int channel, int delay_ms) {
int VoEVideoSyncImpl::GetDelayEstimate(int channel,
int* jitter_buffer_delay_ms,
int* playout_buffer_delay_ms) {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetDelayEstimate(channel=%d, delayMs=?)", channel);
-
if (!_shared->statistics().Initialized()) {
_shared->SetLastError(VE_NOT_INITED, kTraceError);
return -1;
@@ -163,9 +157,6 @@ int VoEVideoSyncImpl::GetDelayEstimate(int channel,
}
int VoEVideoSyncImpl::GetPlayoutBufferSize(int& bufferMs) {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetPlayoutBufferSize(bufferMs=?)");
-
if (!_shared->statistics().Initialized()) {
_shared->SetLastError(VE_NOT_INITED, kTraceError);
return -1;
@@ -178,17 +169,12 @@ int VoEVideoSyncImpl::GetPlayoutBufferSize(int& bufferMs) {
return -1;
}
bufferMs = sizeMS;
- WEBRTC_TRACE(kTraceStateInfo, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetPlayoutBufferSize() => bufferMs=%d", bufferMs);
return 0;
}
int VoEVideoSyncImpl::GetRtpRtcp(int channel,
RtpRtcp** rtpRtcpModule,
RtpReceiver** rtp_receiver) {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetRtpRtcp(channel=%i)", channel);
-
if (!_shared->statistics().Initialized()) {
_shared->SetLastError(VE_NOT_INITED, kTraceError);
return -1;
@@ -204,9 +190,6 @@ int VoEVideoSyncImpl::GetRtpRtcp(int channel,
}
int VoEVideoSyncImpl::GetLeastRequiredDelayMs(int channel) const {
- WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
- "GetLeastRequiredDelayMS(channel=%d)", channel);
-
if (!_shared->statistics().Initialized()) {
_shared->SetLastError(VE_NOT_INITED, kTraceError);
return -1;
« no previous file with comments | « webrtc/voice_engine/voe_rtp_rtcp_impl.cc ('k') | webrtc/voice_engine/voe_volume_control_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698