stats: remove RTCRtpInboundRTPStream and RTCRtpoutboundRTPStream aliases
after upgrading downstream projects BUG=webrtc:14973 Change-Id: I5df8e95a1c70b1d6078e255166c36ed01f868b6a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/296820 Reviewed-by: Christoffer Jansson <jansson@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Commit-Queue: Philipp Hancke <phancke@microsoft.com> Cr-Commit-Position: refs/heads/main@{#39526}
This commit is contained in:
parent
6ffe825ec1
commit
9671d60925
@ -493,8 +493,6 @@ class RTC_EXPORT RTCInboundRtpStreamStats final
|
||||
// The former googMinPlayoutDelayMs (in seconds).
|
||||
RTCNonStandardStatsMember<double> min_playout_delay;
|
||||
};
|
||||
// TODO(bugs.webrtc.org/14973): remove name alias.
|
||||
using RTCInboundRTPStreamStats = RTCInboundRtpStreamStats;
|
||||
|
||||
// https://w3c.github.io/webrtc-stats/#outboundrtpstats-dict*
|
||||
class RTC_EXPORT RTCOutboundRtpStreamStats final
|
||||
@ -546,8 +544,6 @@ class RTC_EXPORT RTCOutboundRtpStreamStats final
|
||||
power_efficient_encoder;
|
||||
RTCStatsMember<std::string> scalability_mode;
|
||||
};
|
||||
// TODO(bugs.webrtc.org/14973): remove name alias.
|
||||
using RTCOutboundRTPStreamStats = RTCOutboundRtpStreamStats;
|
||||
|
||||
// https://w3c.github.io/webrtc-stats/#remoteinboundrtpstats-dict*
|
||||
class RTC_EXPORT RTCRemoteInboundRtpStreamStats final
|
||||
|
||||
@ -48,7 +48,7 @@ class PeerConnectionMediaChannelSplitTest
|
||||
|
||||
int NacksReceivedCount(PeerConnectionIntegrationWrapper& pc) {
|
||||
rtc::scoped_refptr<const webrtc::RTCStatsReport> report = pc.NewGetStats();
|
||||
auto sender_stats = report->GetStatsOfType<RTCOutboundRTPStreamStats>();
|
||||
auto sender_stats = report->GetStatsOfType<RTCOutboundRtpStreamStats>();
|
||||
if (sender_stats.size() != 1) {
|
||||
ADD_FAILURE();
|
||||
return 0;
|
||||
@ -61,7 +61,7 @@ int NacksReceivedCount(PeerConnectionIntegrationWrapper& pc) {
|
||||
|
||||
int NacksSentCount(PeerConnectionIntegrationWrapper& pc) {
|
||||
rtc::scoped_refptr<const webrtc::RTCStatsReport> report = pc.NewGetStats();
|
||||
auto receiver_stats = report->GetStatsOfType<RTCInboundRTPStreamStats>();
|
||||
auto receiver_stats = report->GetStatsOfType<RTCInboundRtpStreamStats>();
|
||||
if (receiver_stats.size() != 1) {
|
||||
ADD_FAILURE();
|
||||
return 0;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user