Liking cljdoc? Tell your friends :D

rtc.RTCInboundRtpStreamStats

The WebRTC API's RTCInboundRtpStreamStats dictionary, based upon and rtc.RTCStats, contains statistics related to the receiving of an RTP stream on the local end of the rtc.RTCPeerConnection.

The WebRTC API's RTCInboundRtpStreamStats dictionary, based upon
and `rtc.RTCStats`, contains statistics related to the receiving
of an RTP stream on the local end of the `rtc.RTCPeerConnection`.
raw docstring

average-rtcp-intervalcljs

(average-rtcp-interval this)

Property.

The averageRtcpInterval property of the rtc.RTCInboundRtpStreamStats is a floating-point value indicating the average RTCP transmission in seconds.

var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval

Property.

The averageRtcpInterval property of the `rtc.RTCInboundRtpStreamStats`
is a floating-point value indicating the average RTCP transmission
in seconds.

`var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval`
sourceraw docstring

bytes-receivedcljs

(bytes-received this)

Property.

The rtc.RTCInboundRtpStreamStats dictionary's bytesReceived is an integer value which indicates the total number of bytes so far from this synchronization source (SSRC).

var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived

Property.

The `rtc.RTCInboundRtpStreamStats` dictionary's bytesReceived
is an integer value which indicates the total number of bytes
so far from this synchronization source (SSRC).

`var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived`
sourceraw docstring

fec-packets-discardedcljs

(fec-packets-discarded this)

Property.

The fecPacketsDiscarded property of the rtc.RTCInboundRtpStreamStats is a numeric value indicating the number of RTP Forward Error (FEC) packets that have been discarded.

var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded

Property.

The fecPacketsDiscarded property of the `rtc.RTCInboundRtpStreamStats`
is a numeric value indicating the number of RTP Forward Error
(FEC) packets that have been discarded.

`var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded`
sourceraw docstring

fec-packets-receivedcljs

(fec-packets-received this)

Property.

The fecPacketsReceived property of the rtc.RTCInboundRtpStreamStats indicates how many Forward Error Correction (FEC) packets have received by this RTP receiver from the remote peer.

var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived

Property.

The fecPacketsReceived property of the `rtc.RTCInboundRtpStreamStats`
indicates how many Forward Error Correction (FEC) packets have
received by this RTP receiver from the remote peer.

`var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived`
sourceraw docstring

fir-countcljs

(fir-count this)

Property.

The firCount property of the rtc.RTCInboundRtpStreamStats dictionary the number of Full Intra Request (FIR) packets have been sent the receiver to the sender.

var firCount = rtcInboundRtpStreamStats.firCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount

Property.

The firCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
the number of Full Intra Request (FIR) packets have been sent
the receiver to the sender.

`var firCount = rtcInboundRtpStreamStats.firCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount`
sourceraw docstring

frames-decodedcljs

(frames-decoded this)

Property.

The framesDecoded property of the rtc.RTCInboundRtpStreamStats indicates the total number of frames which have been decoded for this media source.

var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded

Property.

The framesDecoded property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of frames which have been decoded
for this media source.

`var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded`
sourceraw docstring

last-packet-received-timestampcljs

(last-packet-received-timestamp this)

Property.

The lastPacketReceivedTimestamp property of the rtc.RTCInboundRtpStreamStats indicates the time at which the most recently received packet from this source.

var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp

Property.

The lastPacketReceivedTimestamp property of the `rtc.RTCInboundRtpStreamStats`
indicates the time at which the most recently received packet
from this source.

`var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp`
sourceraw docstring

nack-countcljs

(nack-count this)

Property.

The nackCount property of the rtc.RTCInboundRtpStreamStats is a numeric value indicating the number of times the receiver a NACK packet to the sender.

var nackCount = rtcInboundRtpStreamStats.nackCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount

Property.

The nackCount property of the `rtc.RTCInboundRtpStreamStats`
is a numeric value indicating the number of times the receiver
a NACK packet to the sender.

`var nackCount = rtcInboundRtpStreamStats.nackCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount`
sourceraw docstring

packets-duplicatedcljs

(packets-duplicated this)

Property.

The packetsDuplicated property of the rtc.RTCInboundRtpStreamStats indicates the total number of packets discarded because they duplicates of previously-received packets.

var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated

Property.

The packetsDuplicated property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of packets discarded because they
duplicates of previously-received packets.

`var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated`
sourceraw docstring

packets-failed-decryptioncljs

(packets-failed-decryption this)

Property.

The packetsFailedDecryption property of the rtc.RTCInboundRtpStreamStats indicates the total number of RTP packets which failed to be successfully after being received by the local end of the connection this session.

var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption

Property.

The packetsFailedDecryption property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of RTP packets which failed to be
successfully after being received by the local end of the connection
this session.

`var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption`
sourceraw docstring

per-dscp-packets-receivedcljs

(per-dscp-packets-received this)

Property.

The perDscpPacketsReceived property of the rtc.RTCInboundRtpStreamStats is a record comprised of key/value pairs in which each key is string representation of a Differentiated Services Code Point the value is the number of packets received for that DCSP.

var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived

Property.

The perDscpPacketsReceived property of the `rtc.RTCInboundRtpStreamStats`
is a record comprised of key/value pairs in which each key is
string representation of a Differentiated Services Code Point
the value is the number of packets received for that DCSP.

`var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived`
sourceraw docstring

pli-countcljs

(pli-count this)

Property.

The pliCount property of the rtc.RTCInboundRtpStreamStats dictionary the number of times the rtc.RTCRtpReceiver described by these sent a Picture Loss Indication (PLI) packet to the sender.

var pliCount = RTCInboundRtpStreamStats.pliCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount

Property.

The pliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
the number of times the `rtc.RTCRtpReceiver` described by these
sent a Picture Loss Indication (PLI) packet to the sender.

`var pliCount = RTCInboundRtpStreamStats.pliCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount`
sourceraw docstring

qp-sumcljs

(qp-sum this)

Property.

The qpSum property of the rtc.RTCInboundRtpStreamStats dictionary a value generated by adding the Quantization Parameter (QP) values every frame sent or received to date on the video track corresponding this RTCInboundRtpStreamStats object.

var qpSum = rtcInboundRtpStreamStats.qpSum;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum

Property.

The qpSum property of the `rtc.RTCInboundRtpStreamStats` dictionary
a value generated by adding the Quantization Parameter (QP) values
every frame sent or received to date on the video track corresponding
this RTCInboundRtpStreamStats object.

`var qpSum = rtcInboundRtpStreamStats.qpSum;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum`
sourceraw docstring

receiver-idcljs

(receiver-id this)

Property.

The receiverId property of the rtc.RTCInboundRtpStreamStats specifies the web.id of the rtc.RTCAudioReceiverStats or object representing the rtc.RTCRtpReceiver receiving the stream.

var receiverStatsId = rtcInboundRtpStreamStats.receiverId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId

Property.

The receiverId property of the `rtc.RTCInboundRtpStreamStats`
specifies the `web.id` of the `rtc.RTCAudioReceiverStats` or
object representing the `rtc.RTCRtpReceiver` receiving the stream.

`var receiverStatsId = rtcInboundRtpStreamStats.receiverId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId`
sourceraw docstring

remote-idcljs

(remote-id this)

Property.

The remoteId property of the rtc.RTCInboundRtpStreamStats dictionary the web.id of the rtc.RTCRemoteOutboundRtpStreamStats object the remote peer's rtc.RTCRtpSender which is sending the media the local peer.

var remoteStatsId = rtcInboundRtpStreamStats.remoteId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId

Property.

The remoteId property of the `rtc.RTCInboundRtpStreamStats` dictionary
the `web.id` of the `rtc.RTCRemoteOutboundRtpStreamStats` object
the remote peer's `rtc.RTCRtpSender` which is sending the media
the local peer.

`var remoteStatsId = rtcInboundRtpStreamStats.remoteId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId`
sourceraw docstring

set-average-rtcp-interval!cljs

(set-average-rtcp-interval! this val)

Property.

The averageRtcpInterval property of the rtc.RTCInboundRtpStreamStats is a floating-point value indicating the average RTCP transmission in seconds.

var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval

Property.

The averageRtcpInterval property of the `rtc.RTCInboundRtpStreamStats`
is a floating-point value indicating the average RTCP transmission
in seconds.

`var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval`
sourceraw docstring

set-bytes-received!cljs

(set-bytes-received! this val)

Property.

The rtc.RTCInboundRtpStreamStats dictionary's bytesReceived is an integer value which indicates the total number of bytes so far from this synchronization source (SSRC).

var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived

Property.

The `rtc.RTCInboundRtpStreamStats` dictionary's bytesReceived
is an integer value which indicates the total number of bytes
so far from this synchronization source (SSRC).

`var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived`
sourceraw docstring

set-fec-packets-discarded!cljs

(set-fec-packets-discarded! this val)

Property.

The fecPacketsDiscarded property of the rtc.RTCInboundRtpStreamStats is a numeric value indicating the number of RTP Forward Error (FEC) packets that have been discarded.

var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded

Property.

The fecPacketsDiscarded property of the `rtc.RTCInboundRtpStreamStats`
is a numeric value indicating the number of RTP Forward Error
(FEC) packets that have been discarded.

`var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded`
sourceraw docstring

set-fec-packets-received!cljs

(set-fec-packets-received! this val)

Property.

The fecPacketsReceived property of the rtc.RTCInboundRtpStreamStats indicates how many Forward Error Correction (FEC) packets have received by this RTP receiver from the remote peer.

var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived

Property.

The fecPacketsReceived property of the `rtc.RTCInboundRtpStreamStats`
indicates how many Forward Error Correction (FEC) packets have
received by this RTP receiver from the remote peer.

`var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived`
sourceraw docstring

set-fir-count!cljs

(set-fir-count! this val)

Property.

The firCount property of the rtc.RTCInboundRtpStreamStats dictionary the number of Full Intra Request (FIR) packets have been sent the receiver to the sender.

var firCount = rtcInboundRtpStreamStats.firCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount

Property.

The firCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
the number of Full Intra Request (FIR) packets have been sent
the receiver to the sender.

`var firCount = rtcInboundRtpStreamStats.firCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount`
sourceraw docstring

set-frames-decoded!cljs

(set-frames-decoded! this val)

Property.

The framesDecoded property of the rtc.RTCInboundRtpStreamStats indicates the total number of frames which have been decoded for this media source.

var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded

Property.

The framesDecoded property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of frames which have been decoded
for this media source.

`var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded`
sourceraw docstring

set-last-packet-received-timestamp!cljs

(set-last-packet-received-timestamp! this val)

Property.

The lastPacketReceivedTimestamp property of the rtc.RTCInboundRtpStreamStats indicates the time at which the most recently received packet from this source.

var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp

Property.

The lastPacketReceivedTimestamp property of the `rtc.RTCInboundRtpStreamStats`
indicates the time at which the most recently received packet
from this source.

`var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp`
sourceraw docstring

set-nack-count!cljs

(set-nack-count! this val)

Property.

The nackCount property of the rtc.RTCInboundRtpStreamStats is a numeric value indicating the number of times the receiver a NACK packet to the sender.

var nackCount = rtcInboundRtpStreamStats.nackCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount

Property.

The nackCount property of the `rtc.RTCInboundRtpStreamStats`
is a numeric value indicating the number of times the receiver
a NACK packet to the sender.

`var nackCount = rtcInboundRtpStreamStats.nackCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount`
sourceraw docstring

set-packets-duplicated!cljs

(set-packets-duplicated! this val)

Property.

The packetsDuplicated property of the rtc.RTCInboundRtpStreamStats indicates the total number of packets discarded because they duplicates of previously-received packets.

var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated

Property.

The packetsDuplicated property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of packets discarded because they
duplicates of previously-received packets.

`var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated`
sourceraw docstring

set-packets-failed-decryption!cljs

(set-packets-failed-decryption! this val)

Property.

The packetsFailedDecryption property of the rtc.RTCInboundRtpStreamStats indicates the total number of RTP packets which failed to be successfully after being received by the local end of the connection this session.

var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption

Property.

The packetsFailedDecryption property of the `rtc.RTCInboundRtpStreamStats`
indicates the total number of RTP packets which failed to be
successfully after being received by the local end of the connection
this session.

`var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption`
sourceraw docstring

set-per-dscp-packets-received!cljs

(set-per-dscp-packets-received! this val)

Property.

The perDscpPacketsReceived property of the rtc.RTCInboundRtpStreamStats is a record comprised of key/value pairs in which each key is string representation of a Differentiated Services Code Point the value is the number of packets received for that DCSP.

var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived

Property.

The perDscpPacketsReceived property of the `rtc.RTCInboundRtpStreamStats`
is a record comprised of key/value pairs in which each key is
string representation of a Differentiated Services Code Point
the value is the number of packets received for that DCSP.

`var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived`
sourceraw docstring

set-pli-count!cljs

(set-pli-count! this val)

Property.

The pliCount property of the rtc.RTCInboundRtpStreamStats dictionary the number of times the rtc.RTCRtpReceiver described by these sent a Picture Loss Indication (PLI) packet to the sender.

var pliCount = RTCInboundRtpStreamStats.pliCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount

Property.

The pliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
the number of times the `rtc.RTCRtpReceiver` described by these
sent a Picture Loss Indication (PLI) packet to the sender.

`var pliCount = RTCInboundRtpStreamStats.pliCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount`
sourceraw docstring

set-qp-sum!cljs

(set-qp-sum! this val)

Property.

The qpSum property of the rtc.RTCInboundRtpStreamStats dictionary a value generated by adding the Quantization Parameter (QP) values every frame sent or received to date on the video track corresponding this RTCInboundRtpStreamStats object.

var qpSum = rtcInboundRtpStreamStats.qpSum;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum

Property.

The qpSum property of the `rtc.RTCInboundRtpStreamStats` dictionary
a value generated by adding the Quantization Parameter (QP) values
every frame sent or received to date on the video track corresponding
this RTCInboundRtpStreamStats object.

`var qpSum = rtcInboundRtpStreamStats.qpSum;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum`
sourceraw docstring

set-receiver-id!cljs

(set-receiver-id! this val)

Property.

The receiverId property of the rtc.RTCInboundRtpStreamStats specifies the web.id of the rtc.RTCAudioReceiverStats or object representing the rtc.RTCRtpReceiver receiving the stream.

var receiverStatsId = rtcInboundRtpStreamStats.receiverId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId

Property.

The receiverId property of the `rtc.RTCInboundRtpStreamStats`
specifies the `web.id` of the `rtc.RTCAudioReceiverStats` or
object representing the `rtc.RTCRtpReceiver` receiving the stream.

`var receiverStatsId = rtcInboundRtpStreamStats.receiverId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId`
sourceraw docstring

set-remote-id!cljs

(set-remote-id! this val)

Property.

The remoteId property of the rtc.RTCInboundRtpStreamStats dictionary the web.id of the rtc.RTCRemoteOutboundRtpStreamStats object the remote peer's rtc.RTCRtpSender which is sending the media the local peer.

var remoteStatsId = rtcInboundRtpStreamStats.remoteId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId

Property.

The remoteId property of the `rtc.RTCInboundRtpStreamStats` dictionary
the `web.id` of the `rtc.RTCRemoteOutboundRtpStreamStats` object
the remote peer's `rtc.RTCRtpSender` which is sending the media
the local peer.

`var remoteStatsId = rtcInboundRtpStreamStats.remoteId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId`
sourceraw docstring

set-sli-count!cljs

(set-sli-count! this val)

Property.

The sliCount property of the rtc.RTCInboundRtpStreamStats dictionary how many Slice Loss Indication (SLI) packets the rtc.RTCRtpReceiver which this object provdes statistics sent to the remote rtc.RTCRtpSender.

var sliCount = rtcInboundRtpStreamStats.sliCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount

Property.

The sliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
how many Slice Loss Indication (SLI) packets the `rtc.RTCRtpReceiver`
which this object provdes statistics sent to the remote `rtc.RTCRtpSender`.

`var sliCount = rtcInboundRtpStreamStats.sliCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount`
sourceraw docstring

set-track-id!cljs

(set-track-id! this val)

Property.

The trackId property of the rtc.RTCInboundRtpStreamStats dictionary the web.id of the rtc.RTCReceiverAudioTrackAttachmentStats rtc.RTCReceiverVideoTrackAttachmentStats object representing media.MediaStreamTrack which is receiving the incoming media.

var trackStatsId = rtcInboundRtpStreamStats.trackId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId

Property.

The trackId property of the `rtc.RTCInboundRtpStreamStats` dictionary
the `web.id` of the `rtc.RTCReceiverAudioTrackAttachmentStats`
`rtc.RTCReceiverVideoTrackAttachmentStats` object representing
`media.MediaStreamTrack` which is receiving the incoming media.

`var trackStatsId = rtcInboundRtpStreamStats.trackId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId`
sourceraw docstring

sli-countcljs

(sli-count this)

Property.

The sliCount property of the rtc.RTCInboundRtpStreamStats dictionary how many Slice Loss Indication (SLI) packets the rtc.RTCRtpReceiver which this object provdes statistics sent to the remote rtc.RTCRtpSender.

var sliCount = rtcInboundRtpStreamStats.sliCount;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount

Property.

The sliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary
how many Slice Loss Indication (SLI) packets the `rtc.RTCRtpReceiver`
which this object provdes statistics sent to the remote `rtc.RTCRtpSender`.

`var sliCount = rtcInboundRtpStreamStats.sliCount;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount`
sourceraw docstring

track-idcljs

(track-id this)

Property.

The trackId property of the rtc.RTCInboundRtpStreamStats dictionary the web.id of the rtc.RTCReceiverAudioTrackAttachmentStats rtc.RTCReceiverVideoTrackAttachmentStats object representing media.MediaStreamTrack which is receiving the incoming media.

var trackStatsId = rtcInboundRtpStreamStats.trackId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId

Property.

The trackId property of the `rtc.RTCInboundRtpStreamStats` dictionary
the `web.id` of the `rtc.RTCReceiverAudioTrackAttachmentStats`
`rtc.RTCReceiverVideoTrackAttachmentStats` object representing
`media.MediaStreamTrack` which is receiving the incoming media.

`var trackStatsId = rtcInboundRtpStreamStats.trackId;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close