toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case H265RateControlMode.cbr:
      return 'CBR';
    case H265RateControlMode.multiplex:
      return 'MULTIPLEX';
    case H265RateControlMode.qvbr:
      return 'QVBR';
  }
}