2014-06-10 02:14:14 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2018-02-23 22:50:01 +03:00
|
|
|
var EXPORTED_SYMBOLS = ["convertToRTCStatsReport"];
|
2014-06-10 02:14:14 +04:00
|
|
|
|
|
|
|
function convertToRTCStatsReport(dict) {
|
|
|
|
function appendStats(stats, report) {
|
|
|
|
stats.forEach(function(stat) {
|
|
|
|
report[stat.id] = stat;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
let report = {};
|
2019-03-26 09:06:36 +03:00
|
|
|
appendStats(dict.inboundRtpStreamStats, report);
|
|
|
|
appendStats(dict.outboundRtpStreamStats, report);
|
|
|
|
appendStats(dict.remoteInboundRtpStreamStats, report);
|
|
|
|
appendStats(dict.remoteOutboundRtpStreamStats, report);
|
2017-04-26 14:27:13 +03:00
|
|
|
appendStats(dict.rtpContributingSourceStats, report);
|
2014-06-10 02:14:14 +04:00
|
|
|
appendStats(dict.iceCandidatePairStats, report);
|
|
|
|
appendStats(dict.iceCandidateStats, report);
|
|
|
|
return report;
|
|
|
|
}
|