Class ContextRealtimeData
Fields in AudioContext that change in real-time.
public sealed class ContextRealtimeData
- Inheritance
-
ContextRealtimeData
- Inherited Members
Properties
CallbackIntervalMean
A running mean of callback interval.
[JsonPropertyName("callbackIntervalMean")]
public double CallbackIntervalMean { get; set; }
Property Value
CallbackIntervalVariance
A running variance of callback interval.
[JsonPropertyName("callbackIntervalVariance")]
public double CallbackIntervalVariance { get; set; }
Property Value
CurrentTime
The current context time in second in BaseAudioContext.
[JsonPropertyName("currentTime")]
public double CurrentTime { get; set; }
Property Value
RenderCapacity
The time spent on rendering graph divided by render quantum duration, and multiplied by 100. 100 means the audio renderer reached the full capacity and glitch may occur.
[JsonPropertyName("renderCapacity")]
public double RenderCapacity { get; set; }