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

Unified Diff: webrtc/audio/audio_receive_stream.cc

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: rebase Created 3 years, 10 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 | « no previous file | webrtc/modules/audio_coding/include/audio_coding_module.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_receive_stream.cc
diff --git a/webrtc/audio/audio_receive_stream.cc b/webrtc/audio/audio_receive_stream.cc
index 05d6edfa4c1fccd33b953ec2e38c3c456eefcb83..2fe199f698a9dda4a3a44db8a58fb05b19922904 100644
--- a/webrtc/audio/audio_receive_stream.cc
+++ b/webrtc/audio/audio_receive_stream.cc
@@ -260,11 +260,7 @@ rtc::Optional<Syncable::Info> AudioReceiveStream::GetInfo() const {
return rtc::Optional<Syncable::Info>();
}
- int jitter_buffer_delay_ms = 0;
- int playout_buffer_delay_ms = 0;
- channel_proxy_->GetDelayEstimate(&jitter_buffer_delay_ms,
- &playout_buffer_delay_ms);
- info.current_delay_ms = jitter_buffer_delay_ms + playout_buffer_delay_ms;
+ info.current_delay_ms = channel_proxy_->GetDelayEstimate();
return rtc::Optional<Syncable::Info>(info);
}
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/include/audio_coding_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698