Copyright © 2006-2019 MultiMedia Soft

RecordingSizeSplit event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs, during a recording session with stereo splitting started through the StartSplitFromDirectSoundDevice method, to notify the amount of recorded bytes for the left and right channels.

 

For further details see the How to perform a recording session section.

For further details about synchronization through Events see the How to synchronize the container application through events tutorial.

 

 

Syntax

 

[Visual Basic]

Public Event RecordingSizeSplit As RecordingSizeSplitEventHandler


 

[C#]

public event RecordingSizeSplitEventHandler RecordingSizeSplit;


 

[C++]

public: __event RecordingSizeSplitEventHandler* RecordingSizeSplit;


 

 

Event Data

 

The event handler receives an argument of type RecordingSizeSplitEventArgs having the following parameters:

 

Parameters

Description

 

 

nDataSizeLeft

Number representing the amount of bytes of PCM data recorded on the left channel..

nDataSizeRight

Number representing the amount of bytes of PCM data recorded on the right channel.