Equivalent to BASS_ChannelGetLevel(Int32), but with individual offset and length.
Namespace: Un4seen.Bass
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax
Parameters
- buffer
- Type: SystemSingle
The 32-bit buffer to get the level from. - chans
- Type: SystemInt32
The number of channels to use (1=mono, 2=stereo). In case of mono the left and right channel will contain the same value. - startIndex
- Type: SystemInt32
The starting index (sample offset, not byte offset!) within the buffer from where to to get the level (use -1 to start from the beginning). - length
- Type: SystemInt32
Number of samples (not bytes!) to use (startIndex + length must be less than the buffer size, use -1 to scan the whole buffer size).
Return Value
Type: Int64If successful, the level of the left channel is returned in the low Dword (low 32-bits), and the level of the right channel is returned in the high Dword (high 32-bits). Each Dword (32-bit) carries the maximum peak level value in the high word (high 16-bit) and the the minimum peak level value in the low word (low 16-bit). If the channel is mono, then the low Dword is duplicated in the high Dword.
Remarks
Structure of one element (long = 64-bit):
| 64-bit | | right | left | |max.peak|min.peak|max.peak|min.peak|
Each peak level ranges linearly from -32768 to 0 (silent) to +32767.
See Also