toMpeg2RateControlMode method

Mpeg2RateControlMode toMpeg2RateControlMode()

Implementation

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