Searched defs: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/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java204 long startTime, long duration, int effectType, int colorType) {
207 duration, effectType, colorType);
203 createEffectItem(MediaItem mediaItem, String effectId, long startTime, long duration, int effectType, int colorType) argument
/frameworks/base/media/java/android/media/
H A DAudioManager.java1666 * @param effectType The type of sound effect. One of
1679 public void playSoundEffect(int effectType) { argument
1680 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1690 service.playSoundEffect(effectType);
1698 * @param effectType The type of sound effect. One of
1714 public void playSoundEffect(int effectType, float volume) { argument
1715 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1721 service.playSoundEffectVolume(effectType, volum
[all...]
H A DAudioService.java1740 public void playSoundEffect(int effectType) { argument
1741 playSoundEffectVolume(effectType, -1.0f);
1745 public void playSoundEffectVolume(int effectType, float volume) { argument
1747 effectType, (int) (volume * 1000), null, 0);
3291 private void onPlaySoundEffect(int effectType, int volume) { argument
3307 if (SOUND_EFFECT_FILES_MAP[effectType][1] > 0) {
3308 mSoundPool.play(SOUND_EFFECT_FILES_MAP[effectType][1],
3314 SOUND_EFFECT_FILES.get(SOUND_EFFECT_FILES_MAP[effectType][0]);

Completed in 3702 milliseconds