Add rtp_timestamp to RtpPacketSendInfo.

We want to make this information available to RtpTransportControllerSend.

Bug: None
Change-Id: Id9237fe1a1fe65834cf2ac79155bc4502744e4db
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/216683
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Erik Språng <sprang@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33914}
This commit is contained in:
Vojin Ilic
2021-04-30 11:06:47 +02:00
committed by WebRTC LUCI CQ
parent b3bb13c572
commit 5ae6c0da03
2 changed files with 2 additions and 0 deletions

View File

@ -229,6 +229,7 @@ struct RtpPacketSendInfo {
uint16_t transport_sequence_number = 0;
uint32_t ssrc = 0;
uint16_t rtp_sequence_number = 0;
uint32_t rtp_timestamp = 0;
size_t length = 0;
absl::optional<RtpPacketMediaType> packet_type;
PacedPacketInfo pacing_info;