Home | History | Annotate | Download | only in audiofx

Lines Matching defs:decayTime

199      * @param decayTime decay time in milliseconds. The valid range is [100, 20000].
204 public void setDecayTime(int decayTime)
206 byte[] param = intToByteArray(decayTime);
504 public int decayTime;
545 if (!key.equals("decayTime")) {
548 decayTime = Integer.parseInt(st.nextToken());
595 ";decayTime="+Integer.toString(decayTime)+
626 settings.decayTime = byteArrayToInt(param, 4);
650 intToByteArray(settings.decayTime),