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

Unified Diff: media/cast/net/cast_transport_config.cc

Issue 2344813004: Initialize the rtp_stream_id field added by https://codereview.chromium.org/2307653002/. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/cast_transport_config.cc
diff --git a/media/cast/net/cast_transport_config.cc b/media/cast/net/cast_transport_config.cc
index 77f3cde68c81f35990edee1704b7321fa893b522..e3ee10b08bd9ae4ad079baa11b23984648e67116 100644
--- a/media/cast/net/cast_transport_config.cc
+++ b/media/cast/net/cast_transport_config.cc
@@ -8,7 +8,10 @@ namespace media {
namespace cast {
CastTransportRtpConfig::CastTransportRtpConfig()
- : ssrc(0), feedback_ssrc(0), rtp_payload_type(RtpPayloadType::UNKNOWN) {}
+ : rtp_stream_id(0),
+ ssrc(0),
+ feedback_ssrc(0),
+ rtp_payload_type(RtpPayloadType::UNKNOWN) {}
CastTransportRtpConfig::~CastTransportRtpConfig() {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698