H265Codec constructor

H265Codec({
  1. VideoCodecProfile? profile,
  2. dynamic level,
  3. bool? bFrames,
})

Implementation

H265Codec({VideoCodecProfile? profile, dynamic level, bool? bFrames}): super('h265') {
  _profile = profile;
  _level = level;
  _bFrames = bFrames;
}