Get equalizer points of frequency bands.
Public Function GetEqualizerPoints(ByRef FreqPointArray() As Integer) As Integer
Parameters |
Description |
ByRef FreqPointArray() As Integer |
Reference to array of integers receiving frequency points for frequancy bands. You have frequency range from 0 Hz to SampleRate/2 Hz. One point will divide range into 2 bands, 2 points will divide range into 3 bands ... Caution: Function will resize this array to number of frequancy points. |
Number of frequency points.
New instance of interface has 10 default equalizer bands.
int FreqPoint[9] = {115, 240, 455, 800, 2000, 4500, 9000, 13000, 15000};
Dim testeq(1) As Integer Dim i As Integer Dim num As Integer = player.GetEqualizerPoints(testeq) For i = 0 To num - 1 MsgBox(CStr(testeq(i))) Next
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |