toMpeg2RateControlMode method
Implementation
Mpeg2RateControlMode toMpeg2RateControlMode() {
switch (this) {
case 'VBR':
return Mpeg2RateControlMode.vbr;
case 'CBR':
return Mpeg2RateControlMode.cbr;
}
throw Exception('$this is not known in enum Mpeg2RateControlMode');
}