Copyright © 2008-2019 MultiMedia Soft

RawAudioFromExternalSourcePush method

Previous pageReturn to chapter overviewNext page

Remarks

 

Receives a chunk of raw audio data through a memory buffer provided by an external source: reception of raw audio data must be started by a previous call to the RawAudioFromExternalSourceStart method.

 

 

Syntax

 

[Visual Basic]

Public Function RawAudioFromExternalSourcePush (

pBuffer() as Byte,

nBufferLength as Int32

) as enumErrorCodes


 

[C#]

public enumErrorCodes RawAudioFromExternalSourcePush (

byte[] pBuffer,

Int32 nBufferLength

);


 

[C++]

public: enumErrorCodes RawAudioFromExternalSourcePush (

unsigned char __gc[] pBuffer,

Int32 nBufferLength

);


 

 

Parameter

Description

 

 

pBuffer

Buffer containing raw audio data

nBufferLen

Length in bytes of the given buffer

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.