UNPKG

matrix-js-sdk

Version:
145 lines (143 loc) 5.43 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TrackStatsReporter = void 0; var _statsValueFormatter = require("./statsValueFormatter"); class TrackStatsReporter { static buildFramerateResolution(trackStats, now) { const resolution = { height: now.frameHeight, width: now.frameWidth }; const frameRate = now.framesPerSecond; if (resolution.height && resolution.width) { trackStats.setResolution(resolution); } trackStats.setFramerate(Math.round(frameRate || 0)); } static calculateSimulcastFramerate(trackStats, now, before, layer) { let frameRate = trackStats.getFramerate(); if (!frameRate) { if (before) { const timeMs = now.timestamp - before.timestamp; if (timeMs > 0 && now.framesSent) { const numberOfFramesSinceBefore = now.framesSent - before.framesSent; frameRate = numberOfFramesSinceBefore / timeMs * 1000; } } if (!frameRate) { return; } } // Reset frame rate to 0 when video is suspended as a result of endpoint falling out of last-n. frameRate = layer ? Math.round(frameRate / layer) : 0; trackStats.setFramerate(frameRate); } static buildCodec(report, trackStats, now) { const codec = report === null || report === void 0 ? void 0 : report.get(now.codecId); if (codec) { /** * The mime type has the following form: video/VP8 or audio/ISAC, * so we what to keep just the type after the '/', audio and video * keys will be added on the processing side. */ const codecShortType = codec.mimeType.split("/")[1]; codecShortType && trackStats.setCodec(codecShortType); } } static buildBitrateReceived(trackStats, now, before) { trackStats.setBitrate({ download: TrackStatsReporter.calculateBitrate(now.bytesReceived, before.bytesReceived, now.timestamp, before.timestamp), upload: 0 }); } static buildBitrateSend(trackStats, now, before) { trackStats.setBitrate({ download: 0, upload: this.calculateBitrate(now.bytesSent, before.bytesSent, now.timestamp, before.timestamp) }); } static buildPacketsLost(trackStats, now, before) { const key = now.type === "outbound-rtp" ? "packetsSent" : "packetsReceived"; let packetsNow = now[key]; if (!packetsNow || packetsNow < 0) { packetsNow = 0; } const packetsBefore = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(before[key]); const packetsDiff = Math.max(0, packetsNow - packetsBefore); const packetsLostNow = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(now.packetsLost); const packetsLostBefore = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(before.packetsLost); const packetsLostDiff = Math.max(0, packetsLostNow - packetsLostBefore); trackStats.setLoss({ packetsTotal: packetsDiff + packetsLostDiff, packetsLost: packetsLostDiff, isDownloadStream: now.type !== "outbound-rtp" }); } static calculateBitrate(bytesNowAny, bytesBeforeAny, nowTimestamp, beforeTimestamp) { const bytesNow = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(bytesNowAny); const bytesBefore = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(bytesBeforeAny); const bytesProcessed = Math.max(0, bytesNow - bytesBefore); const timeMs = nowTimestamp - beforeTimestamp; let bitrateKbps = 0; if (timeMs > 0) { bitrateKbps = Math.round(bytesProcessed * 8 / timeMs); } return bitrateKbps; } static setTrackStatsState(trackStats, transceiver) { var _transceiver$sender; if (transceiver === undefined) { trackStats.alive = false; return; } const track = trackStats.getType() === "remote" ? transceiver.receiver.track : transceiver === null || transceiver === void 0 ? void 0 : (_transceiver$sender = transceiver.sender) === null || _transceiver$sender === void 0 ? void 0 : _transceiver$sender.track; if (track === undefined || track === null) { trackStats.alive = false; return; } if (track.readyState === "ended") { trackStats.alive = false; return; } trackStats.muted = track.muted; trackStats.enabled = track.enabled; trackStats.alive = true; } static buildTrackSummary(trackStatsList) { const audioTrackSummary = { count: 0, muted: 0 }; const videoTrackSummary = { count: 0, muted: 0 }; trackStatsList.filter(t => t.getType() === "remote").forEach(stats => { const trackSummary = stats.kind === "video" ? videoTrackSummary : audioTrackSummary; trackSummary.count++; if (stats.alive && stats.muted) { trackSummary.muted++; } }); return { audioTrackSummary, videoTrackSummary }; } static buildJitter(trackStats, statsReport) { if (statsReport.type !== "inbound-rtp") { return; } const jitterStr = statsReport === null || statsReport === void 0 ? void 0 : statsReport.jitter; if (jitterStr !== undefined) { const jitter = _statsValueFormatter.StatsValueFormatter.getNonNegativeValue(jitterStr); trackStats.setJitter(Math.round(jitter * 1000)); } else { trackStats.setJitter(-1); } } } exports.TrackStatsReporter = TrackStatsReporter; //# sourceMappingURL=trackStatsReporter.js.map