Searched refs:effectType (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/java/android/media/
H A DIAudioService.aidl64 oneway void playSoundEffect(int effectType);
66 oneway void playSoundEffectVolume(int effectType, float volume);
H A DAudioManager.java1355 * @param effectType The type of sound effect. One of
1368 public void playSoundEffect(int effectType) { argument
1369 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1379 service.playSoundEffect(effectType);
1387 * @param effectType The type of sound effect. One of
1403 public void playSoundEffect(int effectType, float volume) { argument
1404 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) {
1410 service.playSoundEffectVolume(effectType, volum
[all...]
H A DAudioService.java1000 public void playSoundEffect(int effectType) { argument
1002 effectType, -1, null, 0);
1006 public void playSoundEffectVolume(int effectType, float volume) { argument
1009 effectType, (int) (volume * 1000), null, 0);
2124 private void playSoundEffect(int effectType, int volume) { argument
2137 if (SOUND_EFFECT_FILES_MAP[effectType][1] > 0) {
2138 mSoundPool.play(SOUND_EFFECT_FILES_MAP[effectType][1], volFloat, volFloat, 0, 0, 1.0f);
2143 String filePath = Environment.getRootDirectory() + SOUND_EFFECTS_PATH + SOUND_EFFECT_FILES[SOUND_EFFECT_FILES_MAP[effectType][0]];
/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/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DVideoEditorPerformance.java814 final int effectType = EffectColor.TYPE_COLOR;
835 "effect", effectItemStartTime, effectItemDurationTime, effectType,

Completed in 405 milliseconds