toDeinterlacerControl method
Implementation
DeinterlacerControl toDeinterlacerControl() {
switch (this) {
case 'FORCE_ALL_FRAMES':
return DeinterlacerControl.forceAllFrames;
case 'NORMAL':
return DeinterlacerControl.normal;
}
throw Exception('$this is not known in enum DeinterlacerControl');
}