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

Unified Diff: media/cast/rtcp/rtcp_defines.cc

Issue 192843002: Cast:Adding signaling and infrastructure for adjustable delay (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates Created 6 years, 9 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/rtcp/rtcp_defines.cc
diff --git a/media/cast/rtcp/rtcp_defines.cc b/media/cast/rtcp/rtcp_defines.cc
index c1ad8fc89f1e546451f2593e56f059a69edf2603..858aa27ba09bc5c10030352194c53d250b6ce865 100644
--- a/media/cast/rtcp/rtcp_defines.cc
+++ b/media/cast/rtcp/rtcp_defines.cc
@@ -10,12 +10,13 @@ namespace media {
namespace cast {
RtcpCastMessage::RtcpCastMessage(uint32 media_ssrc)
- : media_ssrc_(media_ssrc), ack_frame_id_(0u) {}
+ : media_ssrc_(media_ssrc), ack_frame_id_(0u), target_delay_ms_(0) {}
RtcpCastMessage::~RtcpCastMessage() {}
void RtcpCastMessage::Copy(const RtcpCastMessage& cast_message) {
media_ssrc_ = cast_message.media_ssrc_;
ack_frame_id_ = cast_message.ack_frame_id_;
+ target_delay_ms_ = cast_message.target_delay_ms_;
missing_frames_and_packets_ = cast_message.missing_frames_and_packets_;
}

Powered by Google App Engine
This is Rietveld 408576698