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.cpp125 SLInterfaceID effectType, effectImplementation; local
131 &effectType, &effectImplementation, effectName, &effectNameLength);
142 guidToString(effectType, typeString);
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl93 oneway void playSoundEffect(int effectType);
95 oneway void playSoundEffectVolume(int effectType, float volume);
H A DAudioManager.java1954 * @param effectType The type of sound effect. One of
1968 public void playSoundEffect(int effectType) { argument
1969 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1979 service.playSoundEffect(effectType);
1987 * @param effectType The type of sound effect. One of
2003 public void playSoundEffect(int effectType, int userId) { argument
2004 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
2014 service.playSoundEffect(effectType);
2039 playSoundEffect(int effectType, float volume) argument
[all...]
H A DAudioService.java2172 public void playSoundEffect(int effectType) { argument
2173 playSoundEffectVolume(effectType, -1.0f);
2177 public void playSoundEffectVolume(int effectType, float volume) { argument
2178 if (effectType >= AudioManager.NUM_SOUND_EFFECTS || effectType < 0) {
2179 Log.w(TAG, "AudioService effectType value " + effectType + " out of range");
2184 effectType, (int) (volume * 1000), null, 0);
3958 private void onPlaySoundEffect(int effectType, int volume) { argument
3974 if (SOUND_EFFECT_FILES_MAP[effectType][
[all...]

Completed in 83 milliseconds