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

Side by Side Diff: webrtc/call/call.cc

Issue 1803063004: Reset the BWE when the network changes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Updated comments Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 DeliveryStatus DeliverPacket(MediaType media_type, 82 DeliveryStatus DeliverPacket(MediaType media_type,
83 const uint8_t* packet, 83 const uint8_t* packet,
84 size_t length, 84 size_t length,
85 const PacketTime& packet_time) override; 85 const PacketTime& packet_time) override;
86 86
87 void SetBitrateConfig( 87 void SetBitrateConfig(
88 const webrtc::Call::Config::BitrateConfig& bitrate_config) override; 88 const webrtc::Call::Config::BitrateConfig& bitrate_config) override;
89 89
90 void SignalChannelNetworkState(MediaType media, NetworkState state) override; 90 void SignalChannelNetworkState(MediaType media, NetworkState state) override;
91 91
92 void OnNetworkRouteChanged(
93 const std::string& transport_name,
94 const cricket::NetworkRoute& network_route) override;
95
92 void OnSentPacket(const rtc::SentPacket& sent_packet) override; 96 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
93 97
94 // Implements BitrateObserver. 98 // Implements BitrateObserver.
95 void OnNetworkChanged(uint32_t bitrate_bps, uint8_t fraction_loss, 99 void OnNetworkChanged(uint32_t bitrate_bps, uint8_t fraction_loss,
96 int64_t rtt_ms) override; 100 int64_t rtt_ms) override;
97 101
98 private: 102 private:
99 DeliveryStatus DeliverRtcp(MediaType media_type, const uint8_t* packet, 103 DeliveryStatus DeliverRtcp(MediaType media_type, const uint8_t* packet,
100 size_t length); 104 size_t length);
101 DeliveryStatus DeliverRtp(MediaType media_type, 105 DeliveryStatus DeliverRtp(MediaType media_type,
102 const uint8_t* packet, 106 const uint8_t* packet,
103 size_t length, 107 size_t length,
104 const PacketTime& packet_time); 108 const PacketTime& packet_time);
105
106 void ConfigureSync(const std::string& sync_group) 109 void ConfigureSync(const std::string& sync_group)
107 EXCLUSIVE_LOCKS_REQUIRED(receive_crit_); 110 EXCLUSIVE_LOCKS_REQUIRED(receive_crit_);
108 111
109 VoiceEngine* voice_engine() { 112 VoiceEngine* voice_engine() {
110 internal::AudioState* audio_state = 113 internal::AudioState* audio_state =
111 static_cast<internal::AudioState*>(config_.audio_state.get()); 114 static_cast<internal::AudioState*>(config_.audio_state.get());
112 if (audio_state) 115 if (audio_state)
113 return audio_state->voice_engine(); 116 return audio_state->voice_engine();
114 else 117 else
115 return nullptr; 118 return nullptr;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 int64_t last_rtp_packet_received_ms_; 166 int64_t last_rtp_packet_received_ms_;
164 int64_t first_packet_sent_ms_; 167 int64_t first_packet_sent_ms_;
165 168
166 // TODO(holmer): Remove this lock once BitrateController no longer calls 169 // TODO(holmer): Remove this lock once BitrateController no longer calls
167 // OnNetworkChanged from multiple threads. 170 // OnNetworkChanged from multiple threads.
168 rtc::CriticalSection bitrate_crit_; 171 rtc::CriticalSection bitrate_crit_;
169 int64_t estimated_send_bitrate_sum_kbits_ GUARDED_BY(&bitrate_crit_); 172 int64_t estimated_send_bitrate_sum_kbits_ GUARDED_BY(&bitrate_crit_);
170 int64_t pacer_bitrate_sum_kbits_ GUARDED_BY(&bitrate_crit_); 173 int64_t pacer_bitrate_sum_kbits_ GUARDED_BY(&bitrate_crit_);
171 int64_t num_bitrate_updates_ GUARDED_BY(&bitrate_crit_); 174 int64_t num_bitrate_updates_ GUARDED_BY(&bitrate_crit_);
172 175
176 std::map<std::string, cricket::NetworkRoute> network_routes_;
177 cricket::NetworkRoute last_changed_route_;
pthatcher1 2016/03/24 18:46:36 Either last_changed_network_route_ or routes_, to
honghaiz3 2016/03/24 22:37:12 Done.
178
173 VieRemb remb_; 179 VieRemb remb_;
174 const std::unique_ptr<CongestionController> congestion_controller_; 180 const std::unique_ptr<CongestionController> congestion_controller_;
175 181
176 RTC_DISALLOW_COPY_AND_ASSIGN(Call); 182 RTC_DISALLOW_COPY_AND_ASSIGN(Call);
177 }; 183 };
178 } // namespace internal 184 } // namespace internal
179 185
180 Call* Call::Create(const Call::Config& config) { 186 Call* Call::Create(const Call::Config& config) {
181 return new internal::Call(config); 187 return new internal::Call(config);
182 } 188 }
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 ReadLockScoped read_lock(*receive_crit_); 590 ReadLockScoped read_lock(*receive_crit_);
585 for (auto& kv : audio_receive_ssrcs_) { 591 for (auto& kv : audio_receive_ssrcs_) {
586 kv.second->SignalNetworkState(audio_network_state_); 592 kv.second->SignalNetworkState(audio_network_state_);
587 } 593 }
588 for (auto& kv : video_receive_ssrcs_) { 594 for (auto& kv : video_receive_ssrcs_) {
589 kv.second->SignalNetworkState(video_network_state_); 595 kv.second->SignalNetworkState(video_network_state_);
590 } 596 }
591 } 597 }
592 } 598 }
593 599
600 void Call::OnNetworkRouteChanged(const std::string& transport_name,
601 const cricket::NetworkRoute& network_route) {
602 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
603 // Check if the network route is connected.
604 if (!network_route.connected) {
605 LOG(LS_INFO) << "Transport channel " << transport_name
pthatcher1 2016/03/24 18:46:37 Might as well just say "Transport" instead of "Tra
honghaiz3 2016/03/24 22:37:12 Done.
606 << " is disconnected";
607 // TODO(honghaiz): Perhaps it should stop sending until a connected route is
608 // established.
609 return;
610 }
611 // When using un-bundled transport channels, we need to compare the new route
612 // against |last_changed_route_| and the network route on its own
613 // transport channel. If it is equivalent to either of them, there is no need
614 // to reset BWE.
615 bool route_changed = network_route != last_changed_route_;
616 if (network_routes_.size() > 1) {
pthatcher1 2016/03/24 18:46:37 This isn't quite right in the case where we have a
honghaiz3 2016/03/24 22:37:12 Takes the suggestions. But I think we still need t
pthatcher1 2016/03/25 21:30:21 I think this came up on Wednesday, and I liked the
honghaiz3 2016/03/28 04:03:16 Done.
617 route_changed &= (network_route != network_routes_[transport_name]);
618 }
619 if (route_changed) {
620 LOG(LS_INFO) << "Network route changed on transport " << transport_name
621 << ": new local network id " << network_route.local_network_id
622 << " new remote network id "
623 << network_route.remote_network_id;
624 congestion_controller_->ResetBweBitrates(
625 config_.bitrate_config.start_bitrate_bps);
626 }
627 network_routes_[transport_name] = network_route;
628 last_changed_route_ = network_route;
629 }
630
594 void Call::UpdateAggregateNetworkState() { 631 void Call::UpdateAggregateNetworkState() {
595 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread()); 632 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
596 633
597 bool have_audio = false; 634 bool have_audio = false;
598 bool have_video = false; 635 bool have_video = false;
599 { 636 {
600 ReadLockScoped read_lock(*send_crit_); 637 ReadLockScoped read_lock(*send_crit_);
601 if (audio_send_ssrcs_.size() > 0) 638 if (audio_send_ssrcs_.size() > 0)
602 have_audio = true; 639 have_audio = true;
603 if (video_send_ssrcs_.size() > 0) 640 if (video_send_ssrcs_.size() > 0)
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 // thread. Then this check can be enabled. 835 // thread. Then this check can be enabled.
799 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread()); 836 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread());
800 if (RtpHeaderParser::IsRtcp(packet, length)) 837 if (RtpHeaderParser::IsRtcp(packet, length))
801 return DeliverRtcp(media_type, packet, length); 838 return DeliverRtcp(media_type, packet, length);
802 839
803 return DeliverRtp(media_type, packet, length, packet_time); 840 return DeliverRtp(media_type, packet, length, packet_time);
804 } 841 }
805 842
806 } // namespace internal 843 } // namespace internal
807 } // namespace webrtc 844 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698