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.
Syntax
[Visual Basic]
RecordingSizeSplitDouble (
ByVal fDataSizeLeft as long,
ByVal fDataSizeRight as long,
)
|
|
[C++]
void RecordingSizeSplitDouble (
long fDataSizeLeft,
long fDataSizeRight
);
|
|
Parameter
|
Description
|
|
|
fDataSizeLeft
|
Number representing the amount of bytes of PCM data recorded on the left channel.
|
fDataSizeRight
|
Number representing the amount of bytes of PCM data recorded on the right channel.
|
|