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

Unified Diff: webrtc/modules/rtp_rtcp/include/flexfec_sender.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/include/flexfec_sender.h
diff --git a/webrtc/modules/rtp_rtcp/include/flexfec_sender.h b/webrtc/modules/rtp_rtcp/include/flexfec_sender.h
new file mode 100644
index 0000000000000000000000000000000000000000..5048e7e2ee7e21dd47bd12d604df418200f9defd
--- /dev/null
+++ b/webrtc/modules/rtp_rtcp/include/flexfec_sender.h
@@ -0,0 +1,58 @@
+/*
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_
+#define WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_
+
+#include <memory>
+#include <vector>
+
+#include "webrtc/config.h"
+#include "webrtc/base/basictypes.h"
+#include "webrtc/modules/include/module_common_types.h"
+#include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h"
brandtr 2016/10/20 13:19:42 I guess the RtpPacket classes will become "public"
danilchap 2016/10/20 15:12:57 Either it will go into /include/ of some module (r
brandtr 2016/10/24 12:52:07 Right. But in the latter case (all RTP code in the
danilchap 2016/10/24 13:40:31 In the latter case: If paced sender would be desig
brandtr 2016/10/24 14:16:30 Got it!
+#include "webrtc/system_wrappers/include/clock.h"
+
+namespace webrtc {
+
+// TODO(brandtr): Update this interface when FlexfecSender is hooked up
+// to PacedSender.
+class FlexfecSender {
danilchap 2016/10/20 15:12:57 this class doesn't send anything, it only generate
brandtr 2016/10/24 12:52:07 If your definition of "sending packets" is "emitti
danilchap 2016/10/24 13:40:31 Since it plan to put packet to transport itself, '
brandtr 2016/10/24 14:16:30 Makes sense! So I should probably rename ProducerF
+ public:
+ static std::unique_ptr<FlexfecSender> Create(
+ int flexfec_payload_type,
+ uint32_t flexfec_ssrc,
+ uint32_t protected_media_ssrc,
+ std::vector<RtpExtension> rtp_header_extensions,
+ Clock* clock);
+ virtual ~FlexfecSender() = default;
+
+ // Sets the FEC rate, max frames sent before FEC packets are sent,
+ // and what type of generator matrices are used.
+ virtual void SetFecParameters(const FecProtectionParams* params) = 0;
danilchap 2016/10/20 15:12:57 may be pass by const& (since internally it is assu
brandtr 2016/10/24 12:52:07 Agree. I just replicated the interface from Produc
+
+ // Adds a media packet to the internal buffer. When enough media packets
+ // have been added, the FEC packets are generated and stored internally.
+ // These FEC packets are then obtained by calling GetFecPackets().
+ virtual int AddRtpPacketAndGenerateFec(RtpPacketToSend* packet) = 0;
danilchap 2016/10/20 15:12:57 what does this function return?
brandtr 2016/10/24 12:52:07 Added description. Also made parameter const& base
+
+ // Returns true if there are generated FEC packets available.
+ virtual bool FecAvailable() const = 0;
+
+ // Returns generated FlexFEC packets.
+ virtual std::vector<std::unique_ptr<RtpPacketToSend>> GetFecPackets() = 0;
+
+ // Returns the overhead, per packet, for FlexFEC.
+ virtual size_t MaxPacketOverhead() const = 0;
+};
+
+} // namespace webrtc
+
+#endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_

Powered by Google App Engine
This is Rietveld 408576698