COMPVARS
The COMPVARS
structure describes compressor settings for functions such as ICCompressorChoose
typedef struct {
LONG cbSize;
DWORD dwFlags;
HIC hic;
DWORD fccType;
DWORD fccHandler;
LPBITMAPINFO lpbiIn;
LPBITMAPINFO lpbiOut;
LPVOID lpBitsOut;
LPVOID lpBitsPrev;
LONG lFrame;
LONG lKey;
LONG lDataRate;
LONG
lQ;
LONG lKeyCount;
LPVOID lpState;
LONG cbState;
} COMPVARS;
Members
cbSize
Size, in
bytes, of this structure. This member must be set to validate the structure
before calling any function using this structure.
dwFlags
Applicable
flags. The following value is defined:
ICMF_COMPVARS_VALID
Data in this
structure is valid and has been manually entered. Set this flag before you call
any function if you fill this structure manually. Do not set this flag if you
let ICCompressorChoose
hic
Handle of the
compressor to use. You can open a compressor and obtain a handle of it by using
the ICOpen
fccType
Type of
compressor used. Currently only ICTYPE_VIDEO (VIDC) is supported. This member
can be set to zero.
fccHandler
Four-character
code of the compressor. Specify NULL to indicate the data is not to be
recompressed. Specify DIB to indicate the data is an uncompressed, full
frame. You can use this member to specify which compressor is selected by
default when the dialog box is displayed.
lpbiIn
Reserved; do
not use.
lpbiOut
Address of a BITMAPINFO
lpBitsOut
Reserved; do
not use.
lpBitsPrev
Reserved; do
not use.
lFrame
Reserved; do
not use.
lKey
Key-frame
rate. Specify an integer to indicate the frequency that key frames are to occur
in the compressed sequence or zero to not use key frames. You can also let ICCompressorChoose
set the key-frame rate selected in the dialog box. The ICSeqCompressFrameStart
lDataRate
Data rate, in
kilobytes per second. ICCompressorChoose
lQ
Quality
setting. Specify a quality setting of 1 to 10,000 or specify ICQUALITY_DEFAULT
to use the default quality setting. You can also let ICCompressorChoose
set the quality value selected in the dialog box. ICSeqCompressFrameStart
lKeyCount
Reserved; do
not use.
lpState
Reserved; do
not use.
cbState
Reserved; do
not use.
Remarks
You can let ICCompressorChoose
See Also