toAc3DrcProfile method
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');
}