Share via


IMediaBuffer::GetBufferAndLength (Compact 2013)

3/26/2014

This method retrieves the buffer and the size of the valid data in the buffer.

Syntax

HRESULT GetBufferAndLength(
  BYTE** ppBuffer, 
  DWORD* pcbLength
);

Parameters

  • ppBuffer
    [out] Address of a pointer that receives the buffer array. The ppBufferparameter can be NULL if pcbLength is not NULL.
  • pcbLength
    [out] Pointer to a variable that receives the size of the valid data, in bytes. The pcbLengthparameter can be NULL if ppBuffer is not NULL.

Return Value

Returns an HRESULT value. Possible values include the following.

Value

Description

S_OK

Retrieved the requested number of items

E_POINTER

NULL pointer argument

Remarks

Either parameter can be NULL, in which case it does not receive a value. At least one parameter must be non-NULL. If both parameters are NULL, the method returns E_POINTER.

The value returned in the pcbLength parameter is the size of the valid data in the buffer, not the buffer's allocated size. To obtain the buffer's allocated size, call the IMediaBuffer::GetMaxLength method.

Requirements

Header

dmo.h

Library

Dmoguid.lib

See Also

Reference

IMediaBuffer
IMediaBuffer::GetMaxLength