Chromium Code Reviews| 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; |