Searched defs:effectType (Results 1 - 7 of 7) 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/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp214 int32_t effectType = local
216 if (effectType < -1 || effectType > 8) {
217 effectType = DRC_DEFAULT_MOBILE_DRC_EFFECT;
220 effectType, DRC_DEFAULT_MOBILE_DRC_EFFECT);
221 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_SET_EFFECT, effectType);
/frameworks/av/include/media/stagefright/
H A DACodec.h449 int32_t effectType; member in struct:android::ACodec::drcParams
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DACodec.h449 int32_t effectType; member in struct:android::ACodec::drcParams
/frameworks/base/media/java/android/media/
H A DAudioManager.java2001 * @param effectType The type of sound effect. One of
2015 public void playSoundEffect(int effectType) { argument
2016 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
2026 service.playSoundEffect(effectType);
2034 * @param effectType The type of sound effect. One of
2050 public void playSoundEffect(int effectType, int userId) { argument
2051 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
2061 service.playSoundEffect(effectType);
2086 playSoundEffect(int effectType, float volume) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java3066 public void playSoundEffect(int effectType) { argument
3067 playSoundEffectVolume(effectType, -1.0f);
3071 public void playSoundEffectVolume(int effectType, float volume) { argument
3077 if (effectType >= AudioManager.NUM_SOUND_EFFECTS || effectType < 0) {
3078 Log.w(TAG, "AudioService effectType value " + effectType + " out of range");
3083 effectType, (int) (volume * 1000), null, 0);
5305 private String getSoundEffectFilePath(int effectType) { argument
5307 + SOUND_EFFECT_FILES.get(SOUND_EFFECT_FILES_MAP[effectType][
5468 onPlaySoundEffect(int effectType, int volume) argument
[all...]

Completed in 113 milliseconds