Microsoft DirectX 9.0

CMediaType::SetFormat

The SetFormat method initializes the format block.

Syntax

BOOL SetFormat(
    BYTE *pFormat,
    ULONG length
);

Parameters

pFormat

Pointer to a block of memory that contains the format block.

length

Length of the format block, in bytes.

Return Value

Returns TRUE if successful, or FALSE if an error occurred.

Remarks

This method allocates memory for the format block and copies the buffer specified by pFormat into the new format block. If the media type already contains a format block, the old one is released.

To set the format type, call the CMediaType::SetFormatType method.

See Also