toH264FramerateControl method

H264FramerateControl toH264FramerateControl()

Implementation

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