Chromium Code Reviews| Index: webrtc/pc/rtcstatscollector.cc |
| diff --git a/webrtc/pc/rtcstatscollector.cc b/webrtc/pc/rtcstatscollector.cc |
| index d9da0729eda2275986ded8535f334a5816c82d4b..c04f0da749329a0951fea3aeacca4afd8b429c03 100644 |
| --- a/webrtc/pc/rtcstatscollector.cc |
| +++ b/webrtc/pc/rtcstatscollector.cc |
| @@ -696,6 +696,7 @@ void RTCStatsCollector::ProducePartialResultsOnNetworkThread( |
| std::unique_ptr<SessionStats> session_stats = |
| pc_->session()->GetStats(*channel_name_pairs_); |
| + Call::Stats call_stats = pc_->session()->GetCallStats(); |
|
Taylor Brandstetter
2017/05/07 21:30:44
This will cause a new invoke to the worker thread,
stefan-webrtc
2017/05/08 07:12:56
I guess we could merge it with WebRtcSession::GetS
Taylor Brandstetter
2017/05/08 17:47:41
WebRtcSession::GetStats invokes on the network thr
hbos
2017/05/09 12:48:13
Doing synchronous invokes from the network thread
|
| if (session_stats) { |
| std::map<std::string, CertificateStatsPair> transport_cert_stats = |
| PrepareTransportCertificateStats_n(*session_stats); |
| @@ -704,9 +705,9 @@ void RTCStatsCollector::ProducePartialResultsOnNetworkThread( |
| timestamp_us, transport_cert_stats, report.get()); |
| ProduceCodecStats_n( |
| timestamp_us, *track_media_info_map_, report.get()); |
| - ProduceIceCandidateAndPairStats_n( |
| - timestamp_us, *session_stats, track_media_info_map_->video_media_info(), |
| - report.get()); |
| + ProduceIceCandidateAndPairStats_n(timestamp_us, *session_stats, |
| + track_media_info_map_->video_media_info(), |
| + call_stats, report.get()); |
| ProduceRTPStreamStats_n( |
| timestamp_us, *session_stats, *track_media_info_map_, report.get()); |
| ProduceTransportStats_n( |
| @@ -835,9 +836,11 @@ void RTCStatsCollector::ProduceDataChannelStats_s( |
| } |
| void RTCStatsCollector::ProduceIceCandidateAndPairStats_n( |
| - int64_t timestamp_us, const SessionStats& session_stats, |
| - const cricket::VideoMediaInfo* video_media_info, |
| - RTCStatsReport* report) const { |
| + int64_t timestamp_us, |
| + const SessionStats& session_stats, |
| + const cricket::VideoMediaInfo* video_media_info, |
| + const Call::Stats& call_stats, |
| + RTCStatsReport* report) const { |
| RTC_DCHECK(network_thread_->IsCurrent()); |
| for (const auto& transport_stats : session_stats.transport_stats) { |
| for (const auto& channel_stats : transport_stats.second.channel_stats) { |
| @@ -879,24 +882,18 @@ void RTCStatsCollector::ProduceIceCandidateAndPairStats_n( |
| static_cast<double>(*info.current_round_trip_time_ms) / |
| rtc::kNumMillisecsPerSec; |
| } |
| - if (info.best_connection && video_media_info && |
| - !video_media_info->bw_estimations.empty()) { |
| + if (info.best_connection && video_media_info) { |
|
Taylor Brandstetter
2017/05/07 21:30:44
Does this still need "&& video_media_info"?
stefan-webrtc
2017/05/08 07:12:56
No probably not.
|
| // The bandwidth estimations we have are for the selected candidate |
| // pair ("info.best_connection"). |
| - RTC_DCHECK_EQ(video_media_info->bw_estimations.size(), 1); |
| - RTC_DCHECK_GE( |
| - video_media_info->bw_estimations[0].available_send_bandwidth, 0); |
| - RTC_DCHECK_GE( |
| - video_media_info->bw_estimations[0].available_recv_bandwidth, 0); |
| - if (video_media_info->bw_estimations[0].available_send_bandwidth) { |
| + RTC_DCHECK_GE(call_stats.send_bandwidth_bps, 0); |
| + RTC_DCHECK_GE(call_stats.recv_bandwidth_bps, 0); |
| + if (call_stats.send_bandwidth_bps > 0) { |
|
stefan-webrtc
2017/05/05 15:41:54
Not sure this check makes sense, but kept it to no
|
| candidate_pair_stats->available_outgoing_bitrate = |
| - static_cast<double>(video_media_info->bw_estimations[0] |
| - .available_send_bandwidth); |
| + static_cast<double>(call_stats.send_bandwidth_bps); |
| } |
| - if (video_media_info->bw_estimations[0].available_recv_bandwidth) { |
| + if (call_stats.recv_bandwidth_bps > 0) { |
| candidate_pair_stats->available_incoming_bitrate = |
| - static_cast<double>(video_media_info->bw_estimations[0] |
| - .available_recv_bandwidth); |
| + static_cast<double>(call_stats.recv_bandwidth_bps); |
| } |
| } |
| candidate_pair_stats->requests_received = |