uFlags

Flags that indicate how to deinterlace the image and whether to remove odd lines or even lines. You can use a bit wise OR (|) to specify one flag from each group.

The following are the flags that indicate how to deinterlace the image:

Value

Meaning

DEINTERLACE_NORMAL

[$0001]Deinterlace the image by copying the data line into the removed lines.

DEINTERLACE_SMOOTH

[$0002] Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines.

The following are the flags that indicate whether to remove odd or even lines:

Value

Meaning

DEINTERLACE_ODD

[$0010] Remove the odd lines.

DEINTERLACE_EVEN

[$0020] Remove the even lines.