VideoControllerConfiguration constructor

const VideoControllerConfiguration({
  1. String? vo,
  2. String? hwdec,
  3. int? width,
  4. int? height,
  5. double scale = 1.0,
  6. bool enableHardwareAcceleration = true,
  7. bool? androidAttachSurfaceAfterVideoParameters,
})

VideoControllerConfiguration

Configurable options for customizing the VideoController behavior.

Implementation

const VideoControllerConfiguration({
  this.vo,
  this.hwdec,
  this.width,
  this.height,
  this.scale = 1.0,
  this.enableHardwareAcceleration = true,
  this.androidAttachSurfaceAfterVideoParameters,
});