IVMRWindowlessControl9::GetNativeVideoSize
Microsoft DirectShow 9.0 |
IVMRWindowlessControl9::GetNativeVideoSize
The GetNativeVideoSize method retrieves the un-stretched video size and aspect ratio of the video.
Syntax
HRESULT GetNativeVideoSize( LONG* lpWidth, LONG* lpHeight, LONG* lpARWidth, LONG* lpARHeight );
Parameters
lpWidth
[out] Pointer that receives the width of the native video rectangle.
lpHeight
[out] Pointer that receives the height of the native video rectangle.
lpARWidth
[out] Pointer that receives the aspect ratio width of the native video rectangle.
lpARHeight
[out] Pointer that receives the aspect ratio height of the native video rectangle.
Return Values
The method returns an HRESULT. Possible values include those in the following table.
Value | Description |
S_OK | The method succeeded. |
VFW_E_WRONG_STATE | The VMR is not in windowless mode. |
Remarks
If the VMR is not connected to an upstream filter, this method will succeed but all parameters will be set to zero.
If lpWidth is 640 and lpHeight is 480, then lpARWidth will be 4 and lpARHeight will be 3.
Requirements
Header: Include D3d9.h, Vmr9.h.
Library: Use Strmiids.lib.
See Also