Searched defs:effectType (Results 1 - 5 of 5) sorted by path

/frameworks/base/media/java/android/media/
H A DAudioManager.java1726 * @param effectType The type of sound effect. One of
1740 public void playSoundEffect(int effectType) { argument
1741 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1751 service.playSoundEffect(effectType);
1759 * @param effectType The type of sound effect. One of
1776 public void playSoundEffect(int effectType, float volume) { argument
1777 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1783 service.playSoundEffectVolume(effectType, volum
[all...]
H A DAudioService.java1786 public void playSoundEffect(int effectType) { argument
1787 playSoundEffectVolume(effectType, -1.0f);
1791 public void playSoundEffectVolume(int effectType, float volume) { argument
1793 effectType, (int) (volume * 1000), null, 0);
3422 private void onPlaySoundEffect(int effectType, int volume) { argument
3438 if (SOUND_EFFECT_FILES_MAP[effectType][1] > 0) {
3439 mSoundPool.play(SOUND_EFFECT_FILES_MAP[effectType][1],
3445 SOUND_EFFECT_FILES.get(SOUND_EFFECT_FILES_MAP[effectType][0]);
/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/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/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp125 SLInterfaceID effectType, effectImplementation; local
131 &effectType, &effectImplementation, effectName, &effectNameLength);
142 guidToString(effectType, typeString);

Completed in 198 milliseconds