Searched refs:effects (Results 51 - 63 of 63) sorted by relevance

123

/frameworks/base/data/sounds/
H A DAudioPackage13.mk29 $(LOCAL_PATH)/effects/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
31 $(LOCAL_PATH)/effects/material/ogg/$(fn).ogg:system/media/audio/ui/$(fn).ogg)
H A DOriginalAudio.mk29 $(LOCAL_PATH)/effects/Effect_Tick.ogg:system/media/audio/ui/Effect_Tick.ogg \
30 $(LOCAL_PATH)/effects/KeypressStandard.ogg:system/media/audio/ui/KeypressStandard.ogg \
31 $(LOCAL_PATH)/effects/KeypressSpacebar.ogg:system/media/audio/ui/KeypressSpacebar.ogg \
32 $(LOCAL_PATH)/effects/KeypressDelete.ogg:system/media/audio/ui/KeypressDelete.ogg \
33 $(LOCAL_PATH)/effects/KeypressReturn.ogg:system/media/audio/ui/KeypressReturn.ogg \
34 $(LOCAL_PATH)/effects/VideoRecord.ogg:system/media/audio/ui/VideoRecord.ogg \
35 $(LOCAL_PATH)/effects/VideoStop.ogg:system/media/audio/ui/VideoStop.ogg \
36 $(LOCAL_PATH)/effects/camera_click.ogg:system/media/audio/ui/camera_click.ogg \
H A DAllAudio.mk218 $(LOCAL_PATH)/effects/ogg/Dock.ogg:system/media/audio/ui/Dock.ogg \
219 $(LOCAL_PATH)/effects/ogg/Effect_Tick_48k.ogg:system/media/audio/ui/Effect_Tick.ogg \
220 $(LOCAL_PATH)/effects/ogg/KeypressDelete_120_48k.ogg:system/media/audio/ui/KeypressDelete.ogg \
221 $(LOCAL_PATH)/effects/ogg/KeypressReturn_120_48k.ogg:system/media/audio/ui/KeypressReturn.ogg \
222 $(LOCAL_PATH)/effects/ogg/KeypressSpacebar_120_48k.ogg:system/media/audio/ui/KeypressSpacebar.ogg \
223 $(LOCAL_PATH)/effects/ogg/KeypressStandard_120_48k.ogg:system/media/audio/ui/KeypressStandard.ogg \
224 $(LOCAL_PATH)/effects/ogg/KeypressInvalid_120_48k.ogg:system/media/audio/ui/KeypressInvalid.ogg \
225 $(LOCAL_PATH)/effects/ogg/Lock.ogg:system/media/audio/ui/Lock.ogg \
226 $(LOCAL_PATH)/effects/ogg/LowBattery.ogg:system/media/audio/ui/LowBattery.ogg \
227 $(LOCAL_PATH)/effects/og
[all...]
/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DBackDropperEffect.java17 package android.media.effect.effects;
/frameworks/av/media/libeffects/data/
H A Daudio_effects.conf10 # the HW and SW effects
44 # audio HAL implements support for default software audio pre-processing effects
50 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
57 # effects {
65 effects {
134 # Default pre-processing effects. Add to audio_effect.conf "effects" section if
154 # Each input source element contains a list of effects elements. The name of the effect
155 # element must be the name of one of the effects in the "effects" lis
[all...]
/frameworks/base/core/java/android/app/
H A DNotificationManager.java916 * Visual effects to suppress for a notification that is filtered by Do Not Disturb mode.
996 public static String suppressedEffectsToString(int effects) { argument
997 if (effects <= 0) return "";
1001 if ((effects & effect) != 0) {
1005 effects &= ~effect;
1007 if (effects != 0) {
1009 sb.append("UNKNOWN_").append(effects);
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c34 static list_elem_t *gEffectList; // list of effect_entry_t: all currently created effects
36 static list_elem_t *gSkippedEffects; // list of effects skipped because of duplicate uuid
37 // list of effect_descriptor and list of sub effects : all currently loaded
38 // It does not contain effects without sub effects.
41 static uint32_t gNumEffects; // total number number of effects
48 static int gCanQueryEffect; // indicates that call to EffectQueryEffect() is valid, i.e. that the list of effects
242 gCurEffect = ((lib_entry_t *)gCurLib->object)->effects;
306 // Sub effects are not associated with the library->effects,
[all...]
/frameworks/av/services/audioflinger/
H A DEffects.h40 // ramping when effects are activated/deactivated.
255 // the EffectChain class represents a group of effects associated to one audio session.
257 // The EffectChain with session ID AUDIO_SESSION_OUTPUT_MIX contains global effects applied
339 // suspend all eligible effects
341 // check if effects should be suspend or restored when a given effect is enable or disabled
385 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
417 // mSuspendedEffects lists all effects currently suspended in the chain.
H A DEffects.cpp363 // TODO: handle configuration of effects replacing track process
373 // TODO: Update this logic when multichannel effects are implemented.
1586 // and sample format changes for effects.
1587 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1605 // never process effects when:
1695 // Auxiliary effects are inserted at the beginning of mEffects vector as
1709 // auxiliary effects output samples to chain input buffer for further processing
1710 // by insert effects
1713 // Insert effects are inserted at the end of mEffects vector as they are processed
1714 // after track and auxiliary effects
2068 Vector< sp<EffectModule> > effects; local
2121 getSuspendEligibleEffects( Vector< sp<AudioFlinger::EffectModule> > &effects) argument
[all...]
/frameworks/base/core/jni/
H A DAndroid.mk221 external/skia/src/effects \
/frameworks/base/libs/hwui/
H A DAndroid.mk188 external/skia/src/effects \
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java640 public void setSuppressedVisualEffects(int effects) { argument
641 mSuppressedVisualEffects = effects;
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp101 struct preproc_effect_s effects[PREPROC_NUM_EFFECTS]; // effects in this session member in struct:preproc_session_s
177 // as the pre processing effects are not defined by OpenSL ES
816 status = Effect_Init(&session->effects[i], i);
877 status = Effect_Create(&session->effects[procId], session, interface);
1431 // make sure that the config command is accepted by making as if all effects were

Completed in 803 milliseconds

123