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

Unified Diff: webrtc/voice_engine/channel_proxy.cc

Issue 2455013003: Clean up abs-send-time for audio. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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_proxy.h ('k') | webrtc/voice_engine/include/voe_rtp_rtcp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/channel_proxy.cc
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
index 67c7fe0cb4d6b68379dc6180a22f07b100642551..6aef29cf0c9fde373914c5baff6cdd737ab3a03b 100644
--- a/webrtc/voice_engine/channel_proxy.cc
+++ b/webrtc/voice_engine/channel_proxy.cc
@@ -50,24 +50,12 @@ void ChannelProxy::SetNACKStatus(bool enable, int max_packets) {
channel()->SetNACKStatus(enable, max_packets);
}
-void ChannelProxy::SetSendAbsoluteSenderTimeStatus(bool enable, int id) {
- RTC_DCHECK(thread_checker_.CalledOnValidThread());
- int error = channel()->SetSendAbsoluteSenderTimeStatus(enable, id);
- RTC_DCHECK_EQ(0, error);
-}
-
void ChannelProxy::SetSendAudioLevelIndicationStatus(bool enable, int id) {
RTC_DCHECK(thread_checker_.CalledOnValidThread());
int error = channel()->SetSendAudioLevelIndicationStatus(enable, id);
RTC_DCHECK_EQ(0, error);
}
-void ChannelProxy::SetReceiveAbsoluteSenderTimeStatus(bool enable, int id) {
- RTC_DCHECK(thread_checker_.CalledOnValidThread());
- int error = channel()->SetReceiveAbsoluteSenderTimeStatus(enable, id);
- RTC_DCHECK_EQ(0, error);
-}
-
void ChannelProxy::SetReceiveAudioLevelIndicationStatus(bool enable, int id) {
RTC_DCHECK(thread_checker_.CalledOnValidThread());
int error = channel()->SetReceiveAudioLevelIndicationStatus(enable, id);
« no previous file with comments | « webrtc/voice_engine/channel_proxy.h ('k') | webrtc/voice_engine/include/voe_rtp_rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698