|
IMVMirror
The IMVMirror interface is used to control the filter's image
processing algorithm. Read the filter
description to see how the filter is used.
Header file: iMVMirror.h
Interface definition language file: iMVMirror.idl
Typelib: MVMirror
Interface ID: IID_IMVMirror
HRESULT get_FlipMode( [out, retval] int *piMode
);
Returns the current mirror mode. See the definitions for available
modes.
Parameter:
|
|
piMode |
A pointer to an integer value that receives the
mirror mode. |
HRESULT put_FlipMode( [in ] int iMode
);
Sets the mirror mode. See the definitions for available
modes.
Parameter:
Filter specific definitions
static const int
MV_MIRROR_X = 0;
static const int MV_MIRROR_Y =
1;
static const int MV_MIRROR_XY =
-1;
static const int MV_MIRROR_NO =
2;
|