toH265RateControlMode method
Implementation
H265RateControlMode toH265RateControlMode() {
switch (this) {
case 'CBR':
return H265RateControlMode.cbr;
case 'MULTIPLEX':
return H265RateControlMode.multiplex;
case 'QVBR':
return H265RateControlMode.qvbr;
}
throw Exception('$this is not known in enum H265RateControlMode');
}