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

Unified Diff: media/cast/cast_config.h

Issue 252923007: Cast: Fix two video freezing problems (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: most comments addressed 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.h
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index 22f5a6432e1c955243ece0da880e3054d738e283..2ff372942b24902b3eb69dca8864e7f634c25b6a 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -30,7 +30,7 @@ enum RtcpMode {
struct AudioSenderConfig {
AudioSenderConfig();
- uint32 sender_ssrc;
+ // uint32 sender_ssrc; use rtp_config.ssrc instead
palmer 2014/04/29 17:33:44 Probably better to delete this now-dead code than
hubbe 2014/04/29 18:32:39 It was meant as documentation. Better comment writ
uint32 incoming_feedback_ssrc;
int rtcp_interval;
@@ -49,7 +49,7 @@ struct AudioSenderConfig {
struct VideoSenderConfig {
VideoSenderConfig();
- uint32 sender_ssrc;
+ // uint32 sender_ssrc; use rtp_config.ssrc instead
palmer 2014/04/29 17:33:44 Same thing here.
hubbe 2014/04/29 18:32:39 Done.
uint32 incoming_feedback_ssrc;
int rtcp_interval;

Powered by Google App Engine
This is Rietveld 408576698