UNPKG

@epicgames-ps/lib-pixelstreamingfrontend-ue5.4

Version:
27 lines (24 loc) 545 B
// Copyright Epic Games, Inc. All Rights Reserved. /** * Outbound Video Stats collected from the RTC Stats Report */ export class OutBoundVideoStats { bytesSent: number; id: string; localId: string; packetsSent: number; remoteTimestamp: number; timestamp: number; } /** * Outbound Stats collected from the RTC Stats Report */ export class OutBoundRTPStats { kind: string; bytesSent: number; id: string; localId: string; packetsSent: number; remoteTimestamp: number; timestamp: number; }