Microsoft Windows CE 3.0  

CBaseControlWindow::GetMaxIdealImageSize

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Retrieves the maximum ideal image size.

HRESULT GetMaxIdealImageSize(
long *
pWidth
,
long *
pHeight
);

Parameters

pWidth
Maximum ideal width, in pixels.
pHeight
Maximum ideal height, in pixels.

Return Values

Returns an HRESULTvalue.

Remarks

Various renderers have performance restrictions on the size of images they can display. Although they should still function properly when requested to display images larger than the specified maximum, renderers can nominate the minimum and maximum ideal sizes through the IVideoWindowinterface. This interface can be called only when the filter graph is paused or running, because it is not until then that resources are allocated and the renderer can recognize its restrictions. If no restrictions exist, the renderer fills in the pWidthand pHeightparameters with the native video dimensions and returns S_FALSE. If restrictions do exist, the restricted width and height are entered, and the member function returns S_OK.

The dimensions apply to the size of the destination video and not to the overall window size. So, when calculating the size of the window to set, account for the current window styles (for example, WS_CAPTION and WS_BORDER).