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