VideoParams constructor

const VideoParams({
  1. String? pixelformat,
  2. String? hwPixelformat,
  3. int? w,
  4. int? h,
  5. int? dw,
  6. int? dh,
  7. double? aspect,
  8. double? par,
  9. String? colormatrix,
  10. String? colorlevels,
  11. String? primaries,
  12. String? gamma,
  13. double? sigPeak,
  14. String? light,
  15. String? chromaLocation,
  16. int? rotate,
  17. String? stereoIn,
  18. int? averageBpp,
  19. String? alpha,
})

VideoParams

Video parameters, as output by the decoder (with overrides like aspect etc. applied). This has a number of sub-properties.

Implementation

const VideoParams({
  this.pixelformat,
  this.hwPixelformat,
  this.w,
  this.h,
  this.dw,
  this.dh,
  this.aspect,
  this.par,
  this.colormatrix,
  this.colorlevels,
  this.primaries,
  this.gamma,
  this.sigPeak,
  this.light,
  this.chromaLocation,
  this.rotate,
  this.stereoIn,
  this.averageBpp,
  this.alpha,
});