Remove deprecated field names in struct RTCPReportBlock
Bug: webrtc:8033 Change-Id: Ic7ea4fdd6cd30a2a490f1bd9fdd9a4f0a4d51f4a Reviewed-on: https://webrtc-review.googlesource.com/23262 Reviewed-by: Sebastian Jansson <srte@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20706}
This commit is contained in:
committed by
Commit Bot
parent
9ced7e54e9
commit
84c1a15d3c
@ -194,35 +194,14 @@ struct RTCPReportBlock {
|
||||
delay_since_last_sender_report(delay_since_last_sender_report) {}
|
||||
|
||||
// Fields as described by RFC 3550 6.4.2.
|
||||
union {
|
||||
uint32_t sender_ssrc; // SSRC of sender of this report.
|
||||
RTC_DEPRECATED uint32_t remoteSSRC;
|
||||
};
|
||||
union {
|
||||
uint32_t source_ssrc; // SSRC of the RTP packet sender.
|
||||
RTC_DEPRECATED uint32_t sourceSSRC;
|
||||
};
|
||||
union {
|
||||
RTC_DEPRECATED uint8_t fractionLost;
|
||||
uint8_t fraction_lost;
|
||||
};
|
||||
union {
|
||||
uint32_t packets_lost; // 24 bits valid.
|
||||
RTC_DEPRECATED uint32_t cumulativeLost;
|
||||
};
|
||||
union {
|
||||
uint32_t extended_highest_sequence_number;
|
||||
RTC_DEPRECATED uint32_t extendedHighSeqNum;
|
||||
};
|
||||
uint32_t sender_ssrc; // SSRC of sender of this report.
|
||||
uint32_t source_ssrc; // SSRC of the RTP packet sender.
|
||||
uint8_t fraction_lost;
|
||||
uint32_t packets_lost; // 24 bits valid.
|
||||
uint32_t extended_highest_sequence_number;
|
||||
uint32_t jitter;
|
||||
union {
|
||||
uint32_t last_sender_report_timestamp;
|
||||
RTC_DEPRECATED uint32_t lastSR;
|
||||
};
|
||||
union {
|
||||
uint32_t delay_since_last_sender_report;
|
||||
RTC_DEPRECATED uint32_t delaySinceLastSR;
|
||||
};
|
||||
uint32_t last_sender_report_timestamp;
|
||||
uint32_t delay_since_last_sender_report;
|
||||
};
|
||||
|
||||
typedef std::list<RTCPReportBlock> ReportBlockList;
|
||||
|
||||
Reference in New Issue
Block a user