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

Unified Diff: webrtc/voice_engine/voe_video_sync_impl.cc

Issue 1263223002: Adding locking to webrtc::voe::Channel to fix race conditions (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved LeastRequiredDelayMs definition to cc file Created 5 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/voice_engine/channel.cc ('k') | no next file » | 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 f1c734764409c160f23a11357db46902f7d51bce..8896c905dcc05ddedf98fbd9eb88b172856b1848 100644
--- a/webrtc/voice_engine/voe_video_sync_impl.cc
+++ b/webrtc/voice_engine/voe_video_sync_impl.cc
@@ -218,7 +218,7 @@ int VoEVideoSyncImpl::GetLeastRequiredDelayMs(int channel) const {
"GetLeastRequiredDelayMs() failed to locate channel");
return -1;
}
- return channel_ptr->least_required_delay_ms();
+ return channel_ptr->LeastRequiredDelayMs();
}
#endif // #ifdef WEBRTC_VOICE_ENGINE_VIDEO_SYNC_API
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698