Lines Matching refs:band

37  * precise control of the gain in each frequency band controlled by the equalizer.
198 * @return the band level range in an array of short integers. The first element is the lower
212 * Sets the given equalizer band to the given gain value.
213 * @param band frequency band that will have the new gain. The numbering of the bands starts
215 * @param level new gain in millibels that will be set to the given band. getBandLevelRange()
222 public void setBandLevel(short band, short level)
228 param[1] = (int)band;
234 * Gets the gain set for the given equalizer band.
235 * @param band frequency band whose gain is requested. The numbering of the bands starts
237 * @return the gain in millibels of the given band.
242 public short getBandLevel(short band)
248 param[1] = (int)band;
256 * Gets the center frequency of the given band.
257 * @param band frequency band whose center frequency is requested. The numbering of the bands
264 public int getCenterFreq(short band)
270 param[1] = (int)band;
277 * Gets the frequency range of the given frequency band.
278 * @param band frequency band whose frequency range is requested. The numbering of the bands
286 public int[] getBandFreqRange(short band)
291 param[1] = (int)band;
298 * Gets the band that has the most effect on the given frequency.
299 * @param frequency frequency in milliHertz which is to be equalized via the returned band.
300 * @return the frequency band that has most effect on the given frequency.
389 * @param param2 additional parameter qualifier (e.g the band for band level parameter).
495 if (!key.equals("band"+(i+1)+"Level")) {
514 str = str.concat(";band"+(i+1)+"Level="+Short.toString(bandLevels[i]));
555 throw new IllegalArgumentException("settings invalid band count: " +settings.numBands);