Searched defs:effectId (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/media/java/android/media/videoeditor/
H A DEffectKenBurns.java46 * @param effectId The effect id
52 public EffectKenBurns(MediaItem mediaItem, String effectId, Rect startRect, argument
54 super(mediaItem, effectId, startTimeMs, durationMs);
H A DEffect.java57 * @param effectId The effect id
62 public Effect(MediaItem mediaItem, String effectId, long startTimeMs, argument
76 mUniqueId = effectId;
H A DEffectColor.java83 * @param effectId The effect id
93 public EffectColor(MediaItem mediaItem, String effectId, long startTimeMs, argument
95 super(mediaItem, effectId, startTimeMs, durationMs);
H A DMediaItem.java328 * @param effectId The id of the effect to be removed
333 public Effect removeEffect(String effectId) { argument
335 if (effect.getId().equals(effectId)) {
382 * @param effectId The effect id
385 public Effect getEffect(String effectId) { argument
387 if (effect.getId().equals(effectId)) {
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp106 virtual status_t attachAuxEffect(int effectId) argument
110 data.writeInt32(effectId);
H A DIMediaPlayer.cpp266 status_t attachAuxEffect(int effectId) argument
270 data.writeInt32(effectId);
H A Dmediaplayer.cpp583 status_t MediaPlayer::attachAuxEffect(int effectId) argument
585 ALOGV("MediaPlayer::attachAuxEffect(%d)", effectId);
594 return mPlayer->attachAuxEffect(effectId);
H A DAudioTrack.cpp730 status_t AudioTrack::attachAuxEffect(int effectId) argument
732 ALOGV("attachAuxEffect(%d)", effectId);
733 status_t status = mAudioTrack->attachAuxEffect(effectId);
735 mAuxEffectId = effectId;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java203 public EffectColor createEffectItem(MediaItem mediaItem, String effectId, argument
206 effectonMVI = new EffectColor(mediaItem, effectId, startTime,
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp457 int32_t effectId = 0; local
458 if (msg->findInt32(WHATPARAM_ATTACHAUXEFFECT, &effectId)) {
461 status = mPlayer->attachAuxEffect(effectId);
H A Dandroid_GenericPlayer.cpp215 void GenericPlayer::attachAuxEffect(int32_t effectId) argument
217 SL_LOGV("GenericPlayer::attachAuxEffect(id=%d)", effectId);
219 msg->setInt32(WHATPARAM_ATTACHAUXEFFECT, effectId);
H A Dandroid_Effect.cpp639 bool android_fx_initEffectDescriptor(const SLInterfaceID effectId, argument
656 (0 == memcmp(effectId, &descriptor.type, sizeof(effect_uuid_t)))) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java66 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { argument
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java207 public boolean performHapticFeedback(IWindow window, int effectId, argument
214 effectId, always);
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp813 jint effectId) {
820 return android_media_translateErrorCode( lpTrack->attachAuxEffect(effectId) );
812 android_media_AudioTrack_attachAuxEffect(JNIEnv *env, jobject thiz, jint effectId) argument
/frameworks/base/media/java/android/media/
H A DAudioTrack.java1054 * @param effectId system wide unique id of the effect to attach
1058 public int attachAuxEffect(int effectId) { argument
1062 return native_attachAuxEffect(effectId);
1254 private native final int native_attachAuxEffect(int effectId); argument
H A DMediaPlayer.java1415 * @param effectId system wide unique id of the effect to attach
1417 public native void attachAuxEffect(int effectId); argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp701 static void android_media_MediaPlayer_attachAuxEffect(JNIEnv *env, jobject thiz, jint effectId) { argument
702 ALOGV("attachAuxEffect(): %d", effectId);
708 process_media_player_call( env, thiz, mp->attachAuxEffect(effectId), NULL, NULL );
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1160 status_t MediaPlayerService::Client::attachAuxEffect(int effectId) argument
1162 ALOGV("[%d] attachAuxEffect(%d)", mConnId, effectId);
1164 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId);
1760 status_t MediaPlayerService::AudioOutput::attachAuxEffect(int effectId) argument
1762 ALOGV("attachAuxEffect(%d)", effectId);
1763 mAuxEffectId = effectId;
1765 return mTrack->attachAuxEffect(effectId);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1041 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DViewRootImpl.java3858 public void playSoundEffect(int effectId) { argument
3864 switch (effectId) {
3881 throw new IllegalArgumentException("unknown effect id " + effectId +
3894 public boolean performHapticFeedback(int effectId, boolean always) { argument
3896 return sWindowSession.performHapticFeedback(mWindow, effectId, always);
H A DView.java17235 void playSoundEffect(int effectId); argument
17236 boolean performHapticFeedback(int effectId, boolean always); argument
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h547 sp<AudioFlinger::EffectModule> getEffect(int sessionId, int effectId);
548 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
556 virtual void detachAuxEffect_l(int effectId) {} argument
1007 virtual void detachAuxEffect_l(int effectId);
1305 virtual status_t attachAuxEffect(int effectId);
H A DAudioFlinger.cpp7700 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId) argument
7703 return getEffect_l(sessionId, effectId);
7706 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId) argument
7709 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
7953 void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId) argument
7957 if (track->auxEffectId() == effectId) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java4292 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) { argument
4299 switch (effectId) {

Completed in 505 milliseconds