LocalVideoStats constructor
LocalVideoStats(
- int sentBitrate,
- int sentFrameRate,
- int encoderOutputFrameRate,
- int rendererOutputFrameRate,
- int targetBitrate,
- int targetFrameRate,
- VideoQualityAdaptIndication qualityAdaptIndication,
- int encodedBitrate,
- int encodedFrameWidth,
- int encodedFrameHeight,
- int encodedFrameCount,
- VideoCodecType codecType,
The video packet loss rate (%) from the local client to the Meta edge server before applying the anti-packet loss strategies.
@since v3.1.2. The capture frame rate (fps) of the local video.
@since v3.1.2. Constructs a LocalVideoStats
Implementation
//int txPacketLossRate;
/// The capture frame rate (fps) of the local video.
///
/// @since v3.1.2.
//int captureFrameRate;
/// Constructs a [LocalVideoStats]
LocalVideoStats(
this.sentBitrate,
this.sentFrameRate,
this.encoderOutputFrameRate,
this.rendererOutputFrameRate,
this.targetBitrate,
this.targetFrameRate,
this.qualityAdaptIndication,
this.encodedBitrate,
this.encodedFrameWidth,
this.encodedFrameHeight,
this.encodedFrameCount,
this.codecType,
// this.txPacketLossRate,
// this.captureFrameRate,
);