Remarks
Sends raw PCM audio data to the queue previously started through the StartFromQueueRaw method..
For details about the encoding format and parameters applied during recording see the How to perform a recording session section.
Syntax
[Visual Basic]
control.SendDataToQueueRaw (
pBuffer as variant,
nBufferLen as long
) as enumErrorCodes
|
|
[C++]
short control.SendDataToQueueRaw (
const VARIANT FAR& pBuffer,
long nBufferLen
);
|
|
Parameter
|
Description
|
|
|
pBuffer
|
Input buffer containing RAW audio data in the same format established by the StartFromQueueRaw method
|
nBufferLen
|
Length of the input buffer expressed in bytes
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to see the error code meaning
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|