Click or drag to resize
JitterBufferT Fields

The JitterBufferT generic type exposes the following members.

Fields
  NameDescription
Public fieldAdaptiveExpiry
Adaptive expiry automatically adjusts the Expiry time by measuring the weighed average time of frame completion. Avg += 1/16 * (previous - current); The initial FrameExpiry in this scenario is still important as the algorithm needs a starting point.
Public fieldAdaptiveMaximumThreshold
In an adaptive expiry scenario, the maximum change is FrameExpiry * AdaptiveMaximumThreshold.
Public fieldAdaptiveOvershootFactor
The adaptive overshoot factor.
Public fieldCheckFrameComplete
Some framing types don't set a marker bit. If set to false, the jitter will not check if the frame is complete and will release it upon FrameExpiry.
Public fieldCheckGaps
Check whether frame gaps exist as criteria for a complete frame.
Public fieldFrameExpiry
Time to wait before a frame is released from the jitter.
Public fieldMinimumFrameAge
The minimum age a frame must have before it is released by the jitter.
Public fieldName
The name.
Public fieldSkipLateOrIncompleteFrames
If set to true, the jitter will not release partially completed frames (due to packet loss etc.). A frame is considered late when the frame age is 1.5 times that of FrameExpiry.
Top
See Also