You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RTCOutboundRtpStreamStats.scalabilityMode represents the scalabilityMode value set for the RTP stream, and it provides useful information for the SVC stream.
However, the SVC stream may have a different temporal/spatial layer than the one set.
For temporal scalability, the VP8 codec may be using temporal scalability even when no scalabilityMode is configured. Also, some codec implementations may not support three temporal layers.
For spatial scalability, some layers may be disabled if there is not enough bandwidth.
I'd like to add a stats field to report these cases.
How about adding these two fields to RTCOutboundRtpStreamStats?
numTemporalLayer: Only exists for video.. The number of temporal scalability currently in use.
numSpatialLayer: Only exists for video. The number of spatial scalability currently in use.
The text was updated successfully, but these errors were encountered:
Related: #673
RTCOutboundRtpStreamStats.scalabilityMode
represents thescalabilityMode
value set for the RTP stream, and it provides useful information for the SVC stream.However, the SVC stream may have a different temporal/spatial layer than the one set.
For temporal scalability, the VP8 codec may be using temporal scalability even when no scalabilityMode is configured. Also, some codec implementations may not support three temporal layers.
For spatial scalability, some layers may be disabled if there is not enough bandwidth.
I'd like to add a stats field to report these cases.
How about adding these two fields to
RTCOutboundRtpStreamStats
?numTemporalLayer
: Only exists for video.. The number of temporal scalability currently in use.numSpatialLayer
: Only exists for video. The number of spatial scalability currently in use.The text was updated successfully, but these errors were encountered: