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