Microsoft DirectX 9.0

IVMRDeinterlaceControl9::GetNumberOfDeinterlaceModes

The GetNumberOfDeinterlaceModes method retrieves the deinterlacing modes available to the VMR for the specified video format.

Syntax

HRESULT GetNumberOfDeinterlaceModes(
  VMR9VideoDesc*  lpVideoDescription,
  DWORD *lpdwNumDeinterlaceModes,
  GUID *lpDeinterlaceModes
);

Parameters

lpVideoDescription

[in]  Pointer to a VMR9VideoDesc structure that describes the video.

lpdwNumDeinterlaceModes

[in, out]  Pointer to a DWORD value. On input, this value specifies the size of the array given in lpDeinterlaceModes. On output, it receives number of GUIDs the method copied into the array.

lpDeinterlaceModes

[out]  Address of an array allocated by caller. The method fills the array with GUID values. To determine the size of the array that is needed, set this parameter to NULL and check the value returned in lpdwNumDeinterlaceModes.

Return Values

Returns an HRESULT value. Possible values include the following:

Return Code Description
E_POINTER NULL pointer argument.
S_OK Success
VFW_E_VMR_NOT_IN_MIXER_MODE The VMR is not in mixer mode.
VFW_E_DDRAW_CAPS_NOT_SUITABLE The video card does not support hardware deinterlacing.

Remarks

This method returns an array of GUIDs, where each GUID represents a deinterlacing mode that is supported in hardware by the graphics device driver. The array is sorted by quality, so the first entry represents the best quality, the second entry represents the next best quality, and so forth.

All drivers are required to support the following mode:

GUID Description
DXVA_DeinterlaceBobDevice Bob mode

Drivers can support additional modes and should define their own GUIDs to identify them. For each returned mode, call the IVMRDeinterlaceControl9::GetDeinterlaceModeCaps method to get information about that mode.

Requirements

Include D3d9.h, Vmr9.h.

See Also