Lines Matching defs:band

30  * precise control of the gain in each frequency band controlled by the equalizer.
191 * @return the band level range in an array of short integers. The first element is the lower
205 * Sets the given equalizer band to the given gain value.
206 * @param band frequency band that will have the new gain. The numbering of the bands starts
208 * @param level new gain in millibels that will be set to the given band. getBandLevelRange()
215 public void setBandLevel(short band, short level)
221 param[1] = (int)band;
227 * Gets the gain set for the given equalizer band.
228 * @param band frequency band whose gain is requested. The numbering of the bands starts
230 * @return the gain in millibels of the given band.
235 public short getBandLevel(short band)
241 param[1] = (int)band;
249 * Gets the center frequency of the given band.
250 * @param band frequency band whose center frequency is requested. The numbering of the bands
257 public int getCenterFreq(short band)
263 param[1] = (int)band;
270 * Gets the frequency range of the given frequency band.
271 * @param band frequency band whose frequency range is requested. The numbering of the bands
279 public int[] getBandFreqRange(short band)
284 param[1] = (int)band;
291 * Gets the band that has the most effect on the given frequency.
292 * @param frequency frequency in milliHertz which is to be equalized via the returned band.
293 * @return the frequency band that has most effect on the given frequency.
382 * @param param2 additional parameter qualifier (e.g the band for band level parameter).
488 if (!key.equals("band"+(i+1)+"Level")) {
507 str = str.concat(";band"+(i+1)+"Level="+Short.toString(bandLevels[i]));
548 throw new IllegalArgumentException("settings invalid band count: " +settings.numBands);