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

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

Issue 2217383002: Use RtpPacketToSend in RtpSenderVideo (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase 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/producer_fec.h
diff --git a/webrtc/modules/rtp_rtcp/source/producer_fec.h b/webrtc/modules/rtp_rtcp/source/producer_fec.h
index a65bb053e0a9cfd03564e6adf62f2672e6e4ce4c..f579aa950bd93a392006933bce338aea06965269 100644
--- a/webrtc/modules/rtp_rtcp/source/producer_fec.h
+++ b/webrtc/modules/rtp_rtcp/source/producer_fec.h
@@ -18,6 +18,7 @@
#include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h"
namespace webrtc {
+class RtpPacketToSend;
class RedPacket {
public:
@@ -48,6 +49,9 @@ class ProducerFec {
size_t payload_length,
size_t rtp_header_length,
int red_payload_type);
+ void BuildRedPacket(int red_pl_type,
brandtr 2016/08/15 08:31:31 For consistency after rebase, consider replacing w
danilchap 2016/08/15 08:55:16 Done.
+ const RtpPacketToSend& media_packet,
+ RtpPacketToSend* red_packet);
void SetFecParameters(const FecProtectionParams* params,
int num_first_partition);
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/producer_fec.cc » ('j') | webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698