Share via


CBaseControlWindow::GetMinIdealImageSize (Compact 2013)

3/26/2014

Retrieves the minimum ideal image size.

Syntax

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

Parameters

  • pWidth
    Minimum ideal width, in pixels.
  • pHeight
    Minimum ideal height, in pixels.

Return Value

Returns an HRESULT value.

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 IVideoWindow interface.

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 pWidth and pHeight parameters with the native video dimensions and returns S_FALSE.

If restrictions 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).

Requirements

Header

dshow.h,
Streams.h

Library

ole32.lib,
Ole32auth.lib,
Strmbase.lib,
Strmiids.lib,
uuid.lib

See Also

Reference

CBaseControlWindow Class