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

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

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: wip Created 3 years, 5 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 void SignalChannelNetworkState(MediaType media, NetworkState state) override; 204 void SignalChannelNetworkState(MediaType media, NetworkState state) override;
205 205
206 void OnTransportOverheadChanged(MediaType media, 206 void OnTransportOverheadChanged(MediaType media,
207 int transport_overhead_per_packet) override; 207 int transport_overhead_per_packet) override;
208 208
209 void OnNetworkRouteChanged(const std::string& transport_name, 209 void OnNetworkRouteChanged(const std::string& transport_name,
210 const rtc::NetworkRoute& network_route) override; 210 const rtc::NetworkRoute& network_route) override;
211 211
212 void OnSentPacket(const rtc::SentPacket& sent_packet) override; 212 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
213 213
214 bool SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) override;
214 215
215 // Implements BitrateObserver. 216 // Implements BitrateObserver.
216 void OnNetworkChanged(uint32_t bitrate_bps, 217 void OnNetworkChanged(uint32_t bitrate_bps,
217 uint8_t fraction_loss, 218 uint8_t fraction_loss,
218 int64_t rtt_ms, 219 int64_t rtt_ms,
219 int64_t probing_interval_ms) override; 220 int64_t probing_interval_ms) override;
220 221
221 // Implements BitrateAllocator::LimitObserver. 222 // Implements BitrateAllocator::LimitObserver.
222 void OnAllocationLimitsChanged(uint32_t min_send_bitrate_bps, 223 void OnAllocationLimitsChanged(uint32_t min_send_bitrate_bps,
223 uint32_t max_padding_bitrate_bps) override; 224 uint32_t max_padding_bitrate_bps) override;
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 1135
1135 transport_send_->send_side_cc()->SignalNetworkState(aggregate_state); 1136 transport_send_->send_side_cc()->SignalNetworkState(aggregate_state);
1136 } 1137 }
1137 1138
1138 void Call::OnSentPacket(const rtc::SentPacket& sent_packet) { 1139 void Call::OnSentPacket(const rtc::SentPacket& sent_packet) {
1139 video_send_delay_stats_->OnSentPacket(sent_packet.packet_id, 1140 video_send_delay_stats_->OnSentPacket(sent_packet.packet_id,
1140 clock_->TimeInMilliseconds()); 1141 clock_->TimeInMilliseconds());
1141 transport_send_->send_side_cc()->OnSentPacket(sent_packet); 1142 transport_send_->send_side_cc()->OnSentPacket(sent_packet);
1142 } 1143 }
1143 1144
1145 bool Call::SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) {
1146 RTC_DCHECK_RUN_ON(&configuration_thread_checker_);
1147
1148 ReadLockScoped lock(*send_crit_);
1149 if (config != config_.keepalive_config &&
1150 (!video_send_streams_.empty() || !audio_send_ssrcs_.empty())) {
1151 LOG(LS_WARNING) << "RTP keep-alive settings cannot be altered after "
1152 "creating send streams.";
1153 return false;
1154 }
1155 config_.keepalive_config = config;
1156 return true;
1157 }
1158
1144 void Call::OnNetworkChanged(uint32_t target_bitrate_bps, 1159 void Call::OnNetworkChanged(uint32_t target_bitrate_bps,
1145 uint8_t fraction_loss, 1160 uint8_t fraction_loss,
1146 int64_t rtt_ms, 1161 int64_t rtt_ms,
1147 int64_t probing_interval_ms) { 1162 int64_t probing_interval_ms) {
1148 // TODO(perkj): Consider making sure CongestionController operates on 1163 // TODO(perkj): Consider making sure CongestionController operates on
1149 // |worker_queue_|. 1164 // |worker_queue_|.
1150 if (!worker_queue_.IsCurrent()) { 1165 if (!worker_queue_.IsCurrent()) {
1151 worker_queue_.PostTask( 1166 worker_queue_.PostTask(
1152 [this, target_bitrate_bps, fraction_loss, rtt_ms, probing_interval_ms] { 1167 [this, target_bitrate_bps, fraction_loss, rtt_ms, probing_interval_ms] {
1153 OnNetworkChanged(target_bitrate_bps, fraction_loss, rtt_ms, 1168 OnNetworkChanged(target_bitrate_bps, fraction_loss, rtt_ms,
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1408 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) { 1423 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) {
1409 receive_side_cc_.OnReceivedPacket( 1424 receive_side_cc_.OnReceivedPacket(
1410 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(), 1425 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(),
1411 header); 1426 header);
1412 } 1427 }
1413 } 1428 }
1414 1429
1415 } // namespace internal 1430 } // namespace internal
1416 1431
1417 } // namespace webrtc 1432 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698