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

Unified Diff: webrtc/call/call.cc

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: Add workaround for gcc Created 3 years, 4 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
Index: webrtc/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index 25dcf32a620c48965c22077d8c6d35cc3b298267..dd5ef9c7a87744cfd67a368b3f2bda719574bf78 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -212,6 +212,7 @@ class Call : public webrtc::Call,
void OnSentPacket(const rtc::SentPacket& sent_packet) override;
+ bool SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) override;
// Implements BitrateObserver.
void OnNetworkChanged(uint32_t bitrate_bps,
@@ -1143,6 +1144,20 @@ void Call::OnSentPacket(const rtc::SentPacket& sent_packet) {
transport_send_->send_side_cc()->OnSentPacket(sent_packet);
}
+bool Call::SetRtpKeepAliveConfig(const RtpKeepAliveConfig& config) {
+ // Can be called by RtpTransportController not on the configuration thread.
stefan-webrtc 2017/08/08 08:13:06 This comment will become confusing. Call currently
sprang_webrtc 2017/08/08 08:53:30 OK, so this badly phrased comment referred to the
+
+ ReadLockScoped lock(*send_crit_);
+ if (config != config_.keepalive_config &&
+ (!video_send_streams_.empty() || !audio_send_ssrcs_.empty())) {
+ LOG(LS_WARNING) << "RTP keep-alive settings cannot be altered after "
+ "creating send streams.";
+ return false;
+ }
+ config_.keepalive_config = config;
+ return true;
+}
+
void Call::OnNetworkChanged(uint32_t target_bitrate_bps,
uint8_t fraction_loss,
int64_t rtt_ms,

Powered by Google App Engine
This is Rietveld 408576698