CrVideoCfg constructor

CrVideoCfg({
  1. required CrSize size,
  2. required int fps,
  3. int? maxbps,
  4. int? qp_min,
  5. int? qp_max,
})

Implementation

CrVideoCfg({
  required this.size,
  required this.fps,
  this.maxbps,
  this.qp_min,
  this.qp_max,
});