MFCreateAlignedMemoryBuffer function (mfapi.h)
Allocates system memory with a specified byte alignment and creates a media buffer to manage the memory.
HRESULT MFCreateAlignedMemoryBuffer(
DWORD cbMaxLength,
DWORD cbAligment,
IMFMediaBuffer **ppBuffer
);
cbMaxLength
Size of the buffer, in bytes.
cbAligment
Specifies the memory alignment for the buffer. Use one of the following constants.
ppBuffer
Receives a pointer to the IMFMediaBuffer interface of the media buffer. The caller must release the interface.
The function returns an HRESULT. Possible values include, but are not limited to, those in the following table.
Return code | Description |
---|---|
|
The function succeeded. |
When the media buffer object is destroyed, it releases the allocated memory.
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2008 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | mfapi.h |
Library | Mfplat.lib |
DLL | Mfplat.dll |