Searched defs:effectType (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEffectsTest.java158 public String effectUuidToString(UUID effectType) { argument
159 if (effectType.equals(AudioEffect.EFFECT_TYPE_VIRTUALIZER)) {
161 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_ENV_REVERB)){
163 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_PRESET_REVERB)){
165 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_EQUALIZER)){
167 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_BASS_BOOST)){
169 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_AGC)){
171 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_AEC)){
173 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_NS)){
177 return effectType
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp124 SLInterfaceID effectType, effectImplementation; local
130 &effectType, &effectImplementation, effectName, &effectNameLength);
141 guidToString(effectType, typeString);
/frameworks/base/media/java/android/media/
H A DAudioManager.java1887 * @param effectType The type of sound effect. One of
1901 public void playSoundEffect(int effectType) { argument
1902 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1912 service.playSoundEffect(effectType);
1920 * @param effectType The type of sound effect. One of
1936 public void playSoundEffect(int effectType, int userId) { argument
1937 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1947 service.playSoundEffect(effectType);
1972 playSoundEffect(int effectType, float volume) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2508 public void playSoundEffect(int effectType) { argument
2509 playSoundEffectVolume(effectType, -1.0f);
2513 public void playSoundEffectVolume(int effectType, float volume) { argument
2514 if (effectType >= AudioManager.NUM_SOUND_EFFECTS || effectType < 0) {
2515 Log.w(TAG, "AudioService effectType value " + effectType + " out of range");
2520 effectType, (int) (volume * 1000), null, 0);
4474 private void onPlaySoundEffect(int effectType, int volume) { argument
4490 if (SOUND_EFFECT_FILES_MAP[effectType][
[all...]

Completed in 3365 milliseconds