toAc3DrcProfile method

Ac3DrcProfile toAc3DrcProfile()

Implementation

Ac3DrcProfile toAc3DrcProfile() {
  switch (this) {
    case 'FILM_STANDARD':
      return Ac3DrcProfile.filmStandard;
    case 'NONE':
      return Ac3DrcProfile.none;
  }
  throw Exception('$this is not known in enum Ac3DrcProfile');
}