Interface IPeerConnectionStatsReportInbound

The peer connection inbound stats report interface.

interface IPeerConnectionStatsReportInbound {
    bytesReceived: number;
    estimatedPlayoutTimestamp?: number;
    jitter?: number;
    kind: "audio" | "video";
    packetsLost: number;
    packetsReceived: number;
    timestamp: number;
    type: "inbound-rtp";
}

Properties

bytesReceived: number

The bytes received.

estimatedPlayoutTimestamp?: number

The estimated playout timestamp.

jitter?: number

The jitter.

kind: "audio" | "video"

The kind of the report.

packetsLost: number

The packets lost.

packetsReceived: number

The packets received.

timestamp: number

The timestamp.

type: "inbound-rtp"

The type of the report.

Generated using TypeDoc