Mpeg2Settings constructor

Mpeg2Settings({
  1. required int framerateDenominator,
  2. required int framerateNumerator,
  3. Mpeg2AdaptiveQuantization? adaptiveQuantization,
  4. AfdSignaling? afdSignaling,
  5. Mpeg2ColorMetadata? colorMetadata,
  6. Mpeg2ColorSpace? colorSpace,
  7. Mpeg2DisplayRatio? displayAspectRatio,
  8. Mpeg2FilterSettings? filterSettings,
  9. FixedAfd? fixedAfd,
  10. int? gopClosedCadence,
  11. int? gopNumBFrames,
  12. double? gopSize,
  13. Mpeg2GopSizeUnits? gopSizeUnits,
  14. Mpeg2ScanType? scanType,
  15. Mpeg2SubGopLength? subgopLength,
  16. Mpeg2TimecodeInsertionBehavior? timecodeInsertion,
})

Implementation

Mpeg2Settings({
  required this.framerateDenominator,
  required this.framerateNumerator,
  this.adaptiveQuantization,
  this.afdSignaling,
  this.colorMetadata,
  this.colorSpace,
  this.displayAspectRatio,
  this.filterSettings,
  this.fixedAfd,
  this.gopClosedCadence,
  this.gopNumBFrames,
  this.gopSize,
  this.gopSizeUnits,
  this.scanType,
  this.subgopLength,
  this.timecodeInsertion,
});