aboutsummaryrefslogtreecommitdiff
path: root/audio/channel_proxy.cc
diff options
context:
space:
mode:
authorTommi <tommi@webrtc.org>2018-03-26 13:28:26 +0200
committerCommit Bot <commit-bot@chromium.org>2018-03-26 12:49:00 +0000
commit5f22365dd75482630b99857e04f75453496a13e8 (patch)
treeb2af528997959c8b0d1df3243bfd525a6e059d3d /audio/channel_proxy.cc
parent1df1bf8551c8e01ee72e2ef336d27a3073060487 (diff)
downloadwebrtc-5f22365dd75482630b99857e04f75453496a13e8.tar.gz
Remove unnecessary proxy+lock code around RtcpRttStats pointer
Change-Id: I9c7fdc695be1e424488fa46962d459c66cf4d1e7 Bug: webrtc:9068 Reviewed-on: https://webrtc-review.googlesource.com/64721 Reviewed-by: Oskar Sundbom <ossu@webrtc.org> Reviewed-by: Henrik Andreassson <henrika@webrtc.org> Commit-Queue: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22603}
Diffstat (limited to 'audio/channel_proxy.cc')
-rw-r--r--audio/channel_proxy.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/audio/channel_proxy.cc b/audio/channel_proxy.cc
index 1a546f6a37..f2575159d7 100644
--- a/audio/channel_proxy.cc
+++ b/audio/channel_proxy.cc
@@ -283,11 +283,6 @@ void ChannelProxy::SetMinimumPlayoutDelay(int delay_ms) {
}
}
-void ChannelProxy::SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats) {
- RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
- channel_->SetRtcpRttStats(rtcp_rtt_stats);
-}
-
bool ChannelProxy::GetRecCodec(CodecInst* codec_inst) const {
RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
return channel_->GetRecCodec(*codec_inst) == 0;