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,
  13. int txPacketLossRate,
  14. int captureFrameRate,
  15. CaptureBrightnessLevelType captureBrightnessLevel,
)

Constructs a LocalVideoStats

Implementation

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,
  this.captureBrightnessLevel,
);