Table of Contents

Class ContextRealtimeData

Namespace
Selenium.WebDriver.BiDi.Cdp.WebAudio
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Fields in AudioContext that change in real-time.

public sealed record ContextRealtimeData : IEquatable<ContextRealtimeData>
Inheritance
ContextRealtimeData
Implements
Inherited Members

Constructors

ContextRealtimeData(double, double, double, double)

Fields in AudioContext that change in real-time.

public ContextRealtimeData(double CurrentTime, double RenderCapacity, double CallbackIntervalMean, double CallbackIntervalVariance)

Parameters

CurrentTime double

The current context time in second in BaseAudioContext.

RenderCapacity double

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.

CallbackIntervalMean double

A running mean of callback interval.

CallbackIntervalVariance double

A running variance of callback interval.

Properties

CallbackIntervalMean

A running mean of callback interval.

public double CallbackIntervalMean { get; init; }

Property Value

double

CallbackIntervalVariance

A running variance of callback interval.

public double CallbackIntervalVariance { get; init; }

Property Value

double

CurrentTime

The current context time in second in BaseAudioContext.

public double CurrentTime { get; init; }

Property Value

double

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.

public double RenderCapacity { get; init; }

Property Value

double