toH264ScanType method

H264ScanType toH264ScanType()

Implementation

H264ScanType toH264ScanType() {
  switch (this) {
    case 'INTERLACED':
      return H264ScanType.interlaced;
    case 'PROGRESSIVE':
      return H264ScanType.progressive;
  }
  throw Exception('$this is not known in enum H264ScanType');
}