Searched defs:effectId (Results 1 - 22 of 22) 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/base/media/libmedia/
H A DIAudioTrack.cpp103 virtual status_t attachAuxEffect(int effectId) argument
107 data.writeInt32(effectId);
H A DIMediaPlayer.cpp265 status_t attachAuxEffect(int effectId) argument
269 data.writeInt32(effectId);
H A Dmediaplayer.cpp566 status_t MediaPlayer::attachAuxEffect(int effectId) argument
568 LOGV("MediaPlayer::attachAuxEffect(%d)", effectId);
577 return mPlayer->attachAuxEffect(effectId);
H A DAudioTrack.cpp697 status_t AudioTrack::attachAuxEffect(int effectId) argument
699 LOGV("attachAuxEffect(%d)", effectId);
700 status_t status = mAudioTrack->attachAuxEffect(effectId);
702 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/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.java206 public boolean performHapticFeedback(IWindow window, int effectId, argument
213 effectId, always);
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp828 jint effectId) {
834 return android_media_translateErrorCode( lpTrack->attachAuxEffect(effectId) );
827 android_media_AudioTrack_attachAuxEffect(JNIEnv *env, jobject thiz, jint effectId) argument
/frameworks/base/media/java/android/media/
H A DAudioTrack.java996 * @param effectId system wide unique id of the effect to attach
1000 public int attachAuxEffect(int effectId) { argument
1004 return native_attachAuxEffect(effectId);
1196 private native final int native_attachAuxEffect(int effectId); argument
H A DMediaPlayer.java1281 * @param effectId system wide unique id of the effect to attach
1283 public native void attachAuxEffect(int effectId); argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp700 static void android_media_MediaPlayer_attachAuxEffect(JNIEnv *env, jobject thiz, jint effectId) { argument
701 LOGV("attachAuxEffect(): %d", effectId);
707 process_media_player_call( env, thiz, mp->attachAuxEffect(effectId), NULL, NULL );
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java988 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DViewRootImpl.java3609 public void playSoundEffect(int effectId) { argument
3615 switch (effectId) {
3632 throw new IllegalArgumentException("unknown effect id " + effectId +
3645 public boolean performHapticFeedback(int effectId, boolean always) { argument
3647 return sWindowSession.performHapticFeedback(mWindow, effectId, always);
H A DView.java14368 void playSoundEffect(int effectId); argument
14369 boolean performHapticFeedback(int effectId, boolean always); argument
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1048 status_t MediaPlayerService::Client::attachAuxEffect(int effectId) argument
1050 LOGV("[%d] attachAuxEffect(%d)", mConnId, effectId);
1052 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId);
1481 status_t MediaPlayerService::AudioOutput::attachAuxEffect(int effectId) argument
1483 LOGV("attachAuxEffect(%d)", effectId);
1484 mAuxEffectId = effectId;
1486 return mTrack->attachAuxEffect(effectId);
/frameworks/base/services/audioflinger/
H A DAudioFlinger.h472 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
480 virtual void detachAuxEffect_l(int effectId) {} argument
745 virtual void detachAuxEffect_l(int effectId);
919 virtual status_t attachAuxEffect(int effectId);
H A DAudioFlinger.cpp5793 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId) argument
5799 effect = chain->getEffectFromId_l(effectId);
6048 void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId) argument
6052 if (track->auxEffectId() == effectId) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java3667 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) { argument
3674 switch (effectId) {

Completed in 1385 milliseconds