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

Unified Diff: webrtc/video/replay.cc

Issue 2960363002: Implement RTP keepalive in native stack. (Closed)
Patch Set: More testing Created 3 years, 6 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: webrtc/video/replay.cc
diff --git a/webrtc/video/replay.cc b/webrtc/video/replay.cc
index 6f4ce678f083ab649453f9c12a015f2b8ce61c14..25c71c42ef5a48e0ccbdfcfae90a2dbdaa7aa9ca 100644
--- a/webrtc/video/replay.cc
+++ b/webrtc/video/replay.cc
@@ -302,8 +302,8 @@ void RtpReplay() {
std::unique_ptr<RtpHeaderParser> parser(RtpHeaderParser::Create());
parser->Parse(packet.data, packet.length, &header);
fprintf(stderr, "Packet len=%zu pt=%u seq=%u ts=%u ssrc=0x%8x\n",
- packet.length, header.payloadType, header.sequenceNumber,
- header.timestamp, header.ssrc);
+ packet.length, header.payloadType, header.sequenceNumber,
+ header.timestamp, header.ssrc);
break;
}
}

Powered by Google App Engine
This is Rietveld 408576698