toH264ParControl method

H264ParControl toH264ParControl()

Implementation

H264ParControl toH264ParControl() {
  switch (this) {
    case 'INITIALIZE_FROM_SOURCE':
      return H264ParControl.initializeFromSource;
    case 'SPECIFIED':
      return H264ParControl.specified;
  }
  throw Exception('$this is not known in enum H264ParControl');
}