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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtp_sender.cc

Issue 2260803002: Generalize FEC header formatting. (pt. 4) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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/modules/rtp_rtcp/source/rtp_sender.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender.cc
index e2717d3432ecfd2bee3fc3be9865d7ed8a794143..6f2aea45690ca477797f4467b82708b6ca296948 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_sender.cc
+++ b/webrtc/modules/rtp_rtcp/source/rtp_sender.cc
@@ -342,7 +342,7 @@ size_t RTPSender::MaxDataPayloadLength() const {
return max_payload_length_ - RtpHeaderLength();
} else {
return max_payload_length_ - RtpHeaderLength() // RTP overhead.
- - video_->FECPacketOverhead() // FEC/ULP/RED overhead.
+ - video_->FecPacketOverhead() // FEC/ULP/RED overhead.
danilchap 2016/08/22 13:00:41 Non-functional renames, adding/removing empty line
brandtr 2016/08/23 08:19:11 Done, see https://codereview.webrtc.org/2275443002
- (RtxStatus() ? kRtxHeaderSize : 0); // RTX overhead.
}
}

Powered by Google App Engine
This is Rietveld 408576698