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]
RecordingSizeSplit (
ByVal nDataSizeLeft as long,
ByVal nDataSizeRight as long,
)
|
|
[C++]
void RecordingSizeSplit (
long nDataSizeLeft,
long nDataSizeRight
);
|
|
Parameter
|
Description
|
|
|
nDataSizeLeft
|
Number representing the amount of bytes of PCM data recorded on the left channel.
This value is limited to a maximum of 32 bits; for larger coverage its recommended using the RecordingSizeSplitDouble event.
|
nDataSizeRight
|
Number representing the amount of bytes of PCM data recorded on the right channel.
This value is limited to a maximum of 32 bits; for larger coverage its recommended using the RecordingSizeSplitDouble event.
|
|