ISpatialAudioObjectForMetadataCommands::GetBuffer method
Gets a buffer that is used to supply the audio data for the ISpatialAudioObjectForMetadataCommands.
HRESULT GetBuffer(
[out] BYTE **buffer,
[out] UINT32 *bufferLength
);
buffer [out]
The buffer into which audio data is written.bufferLength [out]
The length of the buffer in bytes. This length will be the value returned in the frameCountPerBuffer parameter to ISpatialAudioObjectRenderStreamForMetadata::BeginUpdatingAudioObjects multiplied by the value of the nBlockAlign field of the WAVEFORMATEX structure passed in the SpatialAudioObjectRenderStreamForMetadataActivationParams parameter to ActivateSpatialAudioStream.
If the method succeeds, it returns S_OK. If it fails, possible return codes include, but are not limited to, the values shown in the following table.
Return code | Description |
---|---|
SPTLAUDCLNT_E_OUT_OF_ORDER | ISpatialAudioObjectRenderStreamForMetadata::BeginUpdatingAudioObjects was not called before the call to GetBuffer. This method must be called before the first time GetBuffer is called and after every subsequent call to ISpatialAudioObjectRenderStreamForMetadata::EndUpdatingAudioObjects . |
SPTLAUDCLNT_E_RESOURCES_INVALIDATED | SetEndOfStream was called either explicitly or implicitly in a previous audio processing pass. SetEndOfStream is called implicitly by the system if GetBuffer is not called within an audio processing pass (between calls to ISpatialAudioObjectRenderStreamForMetadata::BeginUpdatingAudioObjects and ISpatialAudioObjectRenderStreamForMetadata::EndUpdatingAudioObjects). |
The first time GetBuffer is called after the ISpatialAudioObjectForMetadataCommands is activated with a call ISpatialAudioObjectRenderStreamForMetadataItems::ActivateSpatialAudioObjectForMetadataCommands, lifetime of the spatial audio object starts. To keep the spatial audio object alive after that, this GetBuffer must be called on every processing pass (between calls to ISpatialAudioObjectRenderStreamForMetadata::BeginUpdatingAudioObjects and ISpatialAudioObjectRenderStreamForMetadata::EndUpdatingAudioObjects). If GetBuffer is not called within an audio processing pass, SetEndOfStream is called implicitly on the audio object to deactivate, and the audio object can only be reused after calling Release on the object and then reactivating the object by calling ActivateSpatialAudioObjectForMetadataCommands again.
The pointers retrieved by GetBuffer should not be used after ISpatialAudioObjectRenderStreamForMetadata::EndUpdatingAudioObjects has been called.
Header |
Spatialaudioclient.h |