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

Unified Diff: webrtc/modules/pacing/packet_router.h

Issue 1962303002: Added cluster id to PacedSender::Callback::TimeToSendPacket. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Cluster id no longer a member of paced_sender::Packet. Created 4 years, 7 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/pacing/packet_router.h
diff --git a/webrtc/modules/pacing/packet_router.h b/webrtc/modules/pacing/packet_router.h
index 635b931225c691ffdae18a92afb861cd5990f2a5..6d9bc7ea20372a6368ed971f91588761909028a9 100644
--- a/webrtc/modules/pacing/packet_router.h
+++ b/webrtc/modules/pacing/packet_router.h
@@ -43,7 +43,8 @@ class PacketRouter : public PacedSender::Callback,
bool TimeToSendPacket(uint32_t ssrc,
uint16_t sequence_number,
int64_t capture_timestamp,
- bool retransmission) override;
+ bool retransmission,
+ int cluster_id = -1) override;
danilchap 2016/05/11 09:58:52 Default arguments are banned on virtual functions.
philipel 2016/05/11 14:19:04 Done.
size_t TimeToSendPadding(size_t bytes) override;

Powered by Google App Engine
This is Rietveld 408576698