RtcVideoFormat constructor

RtcVideoFormat(
  1. List<int> offset,
  2. List<int> stride, {
  3. VideoType? type = VideoType.I420,
  4. int? width = 0,
  5. int? height = 0,
  6. int? count = 0,
  7. VideoRotation? rotation = VideoRotation.Rotation0,
})

Constructs a RtcVideoFormat

Implementation

RtcVideoFormat(this.offset, this.stride,
    {this.type = VideoType.I420,
    this.width = 0,
    this.height = 0,
    this.count = 0,
    this.rotation = VideoRotation.Rotation0});