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

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

Issue 2448463003: Rename {,Set}GenericFECStatus to {,Set}UlpfecConfig. (Closed)
Patch Set: Feedback response 1 and lint fix. Created 4 years, 2 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.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender.h b/webrtc/modules/rtp_rtcp/source/rtp_sender.h
index 6b5a6c740a94d7c73d7e60358b972941fe593f32..68420c6ba0f021713ae2e6b7304f59c151b1e7b5 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_sender.h
+++ b/webrtc/modules/rtp_rtcp/source/rtp_sender.h
@@ -184,13 +184,9 @@ class RTPSender {
uint32_t MaxConfiguredBitrateVideo() const;
// FEC.
- void SetGenericFECStatus(bool enable,
- uint8_t payload_type_red,
- uint8_t payload_type_fec);
-
- void GenericFECStatus(bool* enable,
- uint8_t* payload_type_red,
- uint8_t* payload_type_fec) const;
+ void SetUlpfecConfig(bool enabled,
+ int red_payload_type,
+ int ulpfec_payload_type);
int32_t SetFecParameters(const FecProtectionParams *delta_params,
const FecProtectionParams *key_params);
@@ -287,7 +283,7 @@ class RTPSender {
int64_t last_capture_time_ms_sent_;
rtc::CriticalSection send_critsect_;
- Transport *transport_;
+ Transport* transport_;
brandtr 2016/10/26 13:57:04 Lint fix.
bool sending_media_ GUARDED_BY(send_critsect_);
size_t max_payload_length_;

Powered by Google App Engine
This is Rietveld 408576698