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

Unified Diff: audio/audio_receive_stream.cc

Issue 3020473002: Remove voe::Statistics. (Closed)
Patch Set: rebase Created 3 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 | « no previous file | audio/audio_receive_stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: audio/audio_receive_stream.cc
diff --git a/audio/audio_receive_stream.cc b/audio/audio_receive_stream.cc
index 37985d8f41fbdda2f8ab48bae3b3f3eab4116512..704c86ec3a17f0fd721277f283ad168a09b15710 100644
--- a/audio/audio_receive_stream.cc
+++ b/audio/audio_receive_stream.cc
@@ -94,7 +94,7 @@ AudioReceiveStream::AudioReceiveStream(
RTC_CHECK_EQ(config.decoder_factory,
channel_proxy_->GetAudioDecoderFactory());
- channel_proxy_->RegisterExternalTransport(config.rtcp_send_transport);
+ channel_proxy_->RegisterTransport(config.rtcp_send_transport);
channel_proxy_->SetReceiveCodecs(config.decoder_map);
for (const auto& extension : config.rtp.extensions) {
@@ -122,7 +122,7 @@ AudioReceiveStream::~AudioReceiveStream() {
Stop();
}
channel_proxy_->DisassociateSendChannel();
- channel_proxy_->DeRegisterExternalTransport();
+ channel_proxy_->RegisterTransport(nullptr);
channel_proxy_->ResetReceiverCongestionControlObjects();
channel_proxy_->SetRtcEventLog(nullptr);
}
« no previous file with comments | « no previous file | audio/audio_receive_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698