Searched refs:effectType (Results 1 - 5 of 5) 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 DIAudioService.aidl98 oneway void playSoundEffect(int effectType);
100 oneway void playSoundEffectVolume(int effectType, float volume);
H A DAudioManager.java1851 * @param effectType The type of sound effect. One of
1865 public void playSoundEffect(int effectType) { argument
1866 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1876 service.playSoundEffect(effectType);
1884 * @param effectType The type of sound effect. One of
1900 public void playSoundEffect(int effectType, int userId) { argument
1901 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1911 service.playSoundEffect(effectType);
1936 playSoundEffect(int effectType, float volume) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2622 public void playSoundEffect(int effectType) { argument
2623 playSoundEffectVolume(effectType, -1.0f);
2627 public void playSoundEffectVolume(int effectType, float volume) { argument
2628 if (effectType >= AudioManager.NUM_SOUND_EFFECTS || effectType < 0) {
2629 Log.w(TAG, "AudioService effectType value " + effectType + " out of range");
2634 effectType, (int) (volume * 1000), null, 0);
4685 private void onPlaySoundEffect(int effectType, int volume) { argument
4701 if (SOUND_EFFECT_FILES_MAP[effectType][
[all...]

Completed in 157 milliseconds