toAacCodecProfile method

AacCodecProfile toAacCodecProfile()

Implementation

AacCodecProfile toAacCodecProfile() {
  switch (this) {
    case 'LC':
      return AacCodecProfile.lc;
    case 'HEV1':
      return AacCodecProfile.hev1;
    case 'HEV2':
      return AacCodecProfile.hev2;
  }
  throw Exception('$this is not known in enum AacCodecProfile');
}