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

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

Issue 2918333002: Reland of Only compare sequence numbers from the same SSRC in ForwardErrorCorrection. (Closed)
Patch Set: Let ForwardErrorCorrection be aware of its SSRCs. Created 3 years, 6 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/ulpfec_receiver.h
diff --git a/webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h b/webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h
index de4c4f1b80df0668c1a88f8622f8d2a984c23405..dc9adb408d59bc71beae193ec310014fd694c44f 100644
--- a/webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h
+++ b/webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h
@@ -31,7 +31,8 @@ struct FecPacketCounter {
class UlpfecReceiver {
public:
- static UlpfecReceiver* Create(RecoveredPacketReceiver* callback);
+ static UlpfecReceiver* Create(uint32_t ssrc,
+ RecoveredPacketReceiver* callback);
virtual ~UlpfecReceiver() {}

Powered by Google App Engine
This is Rietveld 408576698