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

Unified Diff: media/cast/cast_config.cc

Issue 252923007: Cast: Fix two video freezing problems (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more comments adressed Created 6 years, 8 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: media/cast/cast_config.cc
diff --git a/media/cast/cast_config.cc b/media/cast/cast_config.cc
index 14e3795248716a652e179dd483d35182addf0bb2..c4702697751c12c167fa6c61fd7bd867ad2ffb2d 100644
--- a/media/cast/cast_config.cc
+++ b/media/cast/cast_config.cc
@@ -22,8 +22,7 @@ namespace cast {
// these classes to centralize the logic?
VideoSenderConfig::VideoSenderConfig()
- : sender_ssrc(0),
- incoming_feedback_ssrc(0),
+ : incoming_feedback_ssrc(0),
rtcp_interval(kDefaultRtcpIntervalMs),
rtcp_mode(kRtcpReducedSize),
use_external_encoder(false),
@@ -41,8 +40,7 @@ VideoSenderConfig::VideoSenderConfig()
number_of_encode_threads(1) {}
AudioSenderConfig::AudioSenderConfig()
- : sender_ssrc(0),
- incoming_feedback_ssrc(0),
+ : incoming_feedback_ssrc(0),
rtcp_interval(kDefaultRtcpIntervalMs),
rtcp_mode(kRtcpReducedSize),
use_external_encoder(false),

Powered by Google App Engine
This is Rietveld 408576698