| Index: webrtc/modules/rtp_rtcp/source/rtp_sender.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender.h b/webrtc/modules/rtp_rtcp/source/rtp_sender.h
|
| index 4f540fd8659f69074790caddea97b52845ffd4c3..f501d27a723c62f745b3120d76e7e338734e1da0 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_sender.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender.h
|
| @@ -211,11 +211,9 @@
|
| const RTPHeader& rtp_header,
|
| VideoRotation rotation) const override;
|
|
|
| - bool TimeToSendPacket(uint16_t sequence_number,
|
| - int64_t capture_time_ms,
|
| - bool retransmission,
|
| - int probe_cluster_id);
|
| - size_t TimeToSendPadding(size_t bytes, int probe_cluster_id);
|
| + bool TimeToSendPacket(uint16_t sequence_number, int64_t capture_time_ms,
|
| + bool retransmission);
|
| + size_t TimeToSendPadding(size_t bytes);
|
|
|
| // NACK.
|
| int SelectiveRetransmissions() const;
|
| @@ -302,8 +300,7 @@
|
| size_t SendPadData(size_t bytes,
|
| bool timestamp_provided,
|
| uint32_t timestamp,
|
| - int64_t capture_time_ms,
|
| - int probe_cluster_id);
|
| + int64_t capture_time_ms);
|
|
|
| // Called on update of RTP statistics.
|
| void RegisterRtpStatisticsCallback(StreamDataCountersCallback* callback);
|
| @@ -340,12 +337,11 @@
|
| size_t length,
|
| int64_t capture_time_ms,
|
| bool send_over_rtx,
|
| - bool is_retransmit,
|
| - int probe_cluster_id);
|
| + bool is_retransmit);
|
|
|
| // Return the number of bytes sent. Note that both of these functions may
|
| // return a larger value that their argument.
|
| - size_t TrySendRedundantPayloads(size_t bytes, int probe_cluster_id);
|
| + size_t TrySendRedundantPayloads(size_t bytes);
|
|
|
| void BuildPaddingPacket(uint8_t* packet,
|
| size_t header_length,
|
|
|