toAv1RateControlMode method

Av1RateControlMode toAv1RateControlMode()

Implementation

Av1RateControlMode toAv1RateControlMode() {
  switch (this) {
    case 'QVBR':
      return Av1RateControlMode.qvbr;
  }
  throw Exception('$this is not known in enum Av1RateControlMode');
}