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

Unified Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp.h

Issue 2448463003: Rename {,Set}GenericFECStatus to {,Set}UlpfecConfig. (Closed)
Patch Set: 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/include/rtp_rtcp.h
diff --git a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
index 9fa3959c906128a81596a7fc8f97e9a269167bbc..772ed07409b8978270e9d1b833d1aa33bed0a8ec 100644
--- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
+++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
@@ -454,14 +454,14 @@ class RtpRtcp : public Module {
// **************************************************************************
// Turn on/off generic FEC.
danilchap 2016/10/26 12:59:13 update comments too.
brandtr 2016/10/26 13:57:04 Done.
- virtual void SetGenericFECStatus(bool enable,
- uint8_t payload_type_red,
- uint8_t payload_type_fec) = 0;
+ virtual void SetUlpfecConfig(bool ulpfec_enabled,
danilchap 2016/10/26 12:59:13 since function already called UlpfecConfig, 'ulpfe
brandtr 2016/10/26 13:57:04 Done. (This parameter will probably removed soon t
+ int red_payload_type,
+ int ulpfec_payload_type) = 0;
// Get generic FEC setting.
- virtual void GenericFECStatus(bool* enable,
- uint8_t* payload_type_red,
- uint8_t* payload_type_fec) = 0;
+ virtual void UlpfecConfig(bool* ulpfec_enabled,
danilchap 2016/10/26 12:59:13 It seems this function is not in use any more. (e.
brandtr 2016/10/26 13:57:04 Ah, I wasn't careful enough in checking where this
+ int* red_payload_type,
+ int* ulpfec_payload_type) = 0;
virtual int32_t SetFecParameters(const FecProtectionParams* delta_params,
const FecProtectionParams* key_params) = 0;
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h » ('j') | webrtc/modules/rtp_rtcp/source/rtp_sender_video.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698