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

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

Issue 2441613002: Add FlexfecSender. (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/source/producer_fec.h
diff --git a/webrtc/modules/rtp_rtcp/source/producer_fec.h b/webrtc/modules/rtp_rtcp/source/producer_fec.h
index 35bb7dafbfb54125598a75651b5178b91c114ca0..38ddcad7e89a16e305f805b4341c63afddc0caa2 100644
--- a/webrtc/modules/rtp_rtcp/source/producer_fec.h
+++ b/webrtc/modules/rtp_rtcp/source/producer_fec.h
@@ -19,6 +19,8 @@
namespace webrtc {
+class FlexfecSenderImpl;
+
class RedPacket {
public:
explicit RedPacket(size_t length);
@@ -40,6 +42,8 @@ class RedPacket {
};
class ProducerFec {
+ friend class FlexfecSenderImpl;
danilchap 2016/10/20 15:12:58 do you plan to remove this friendship later, after
brandtr 2016/10/24 12:52:08 Yes, this friendship will be removed in the future
+
public:
ProducerFec();
~ProducerFec();
@@ -74,6 +78,8 @@ class ProducerFec {
size_t rtp_header_length);
private:
+ explicit ProducerFec(std::unique_ptr<ForwardErrorCorrection> fec);
+
// Overhead is defined as relative to the number of media packets, and not
// relative to total number of packets. This definition is inherited from the
// protection factor produced by video_coding module and how the FEC

Powered by Google App Engine
This is Rietveld 408576698