toMpeg2CodecProfile method
Implementation
Mpeg2CodecProfile toMpeg2CodecProfile() {
switch (this) {
case 'MAIN':
return Mpeg2CodecProfile.main;
case 'PROFILE_422':
return Mpeg2CodecProfile.profile_422;
}
throw Exception('$this is not known in enum Mpeg2CodecProfile');
}