toH264CodecProfile method

H264CodecProfile toH264CodecProfile()

Implementation

H264CodecProfile toH264CodecProfile() {
  switch (this) {
    case 'BASELINE':
      return H264CodecProfile.baseline;
    case 'HIGH':
      return H264CodecProfile.high;
    case 'HIGH_10BIT':
      return H264CodecProfile.high_10bit;
    case 'HIGH_422':
      return H264CodecProfile.high_422;
    case 'HIGH_422_10BIT':
      return H264CodecProfile.high_422_10bit;
    case 'MAIN':
      return H264CodecProfile.main;
  }
  throw Exception('$this is not known in enum H264CodecProfile');
}