LocalVideoStats constructor

LocalVideoStats(
  1. int sentBitrate,
  2. int sentFrameRate,
  3. int encoderOutputFrameRate,
  4. int rendererOutputFrameRate,
  5. int targetBitrate,
  6. int targetFrameRate,
  7. VideoQualityAdaptIndication qualityAdaptIndication,
  8. int encodedBitrate,
  9. int encodedFrameWidth,
  10. int encodedFrameHeight,
  11. int encodedFrameCount,
  12. 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,
);