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

12

/frameworks/base/media/java/android/media/videoeditor/
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 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 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/include/media/
H A DIAudioTrack.h68 /* Attach track auxiliary output to specified effect. Use effectId = 0
71 virtual status_t attachAuxEffect(int effectId) = 0;
H A DIMediaPlayer.h63 virtual status_t attachAuxEffect(int effectId) = 0;
H A Dmediaplayer.h229 status_t attachAuxEffect(int effectId);
H A DAudioTrack.h397 /* Attach track auxiliary output to specified effect. Use effectId = 0
402 * effectId: effectId obtained from AudioEffect::id().
409 status_t attachAuxEffect(int effectId);
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DSimplePlayer.java180 public void attachAuxEffect(int effectId) { argument
181 mEffectId = effectId;
183 Log.d(TAG,"attach effect: "+effectId);
184 mMediaPlayer.attachAuxEffect(effectId);
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp106 virtual status_t attachAuxEffect(int effectId) argument
110 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 DIMediaPlayer.cpp267 status_t attachAuxEffect(int effectId) argument
271 data.writeInt32(effectId);
H A DAudioTrack.cpp736 status_t AudioTrack::attachAuxEffect(int effectId) argument
738 ALOGV("attachAuxEffect(%d)", effectId);
739 status_t status = mAudioTrack->attachAuxEffect(effectId);
741 mAuxEffectId = effectId;
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl133 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
H A DWindowManagerPolicy.java1065 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
/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.h84 void attachAuxEffect(int32_t effectId);
H A Dandroid_Effect.h135 extern bool android_fx_initEffectDescriptor(const SLInterfaceID 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);
/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
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java83 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h109 status_t attachAuxEffect(int effectId);
329 virtual status_t attachAuxEffect(int effectId);
H A DMediaPlayerService.cpp994 status_t MediaPlayerService::Client::attachAuxEffect(int effectId) argument
996 ALOGV("[%d] attachAuxEffect(%d)", mConnId, effectId);
998 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId);
1626 status_t MediaPlayerService::AudioOutput::attachAuxEffect(int effectId) argument
1628 ALOGV("attachAuxEffect(%d)", effectId);
1629 mAuxEffectId = effectId;
1631 return mTrack->attachAuxEffect(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/services/java/com/android/server/wm/
H A DSession.java237 public boolean performHapticFeedback(IWindow window, int effectId, argument
244 effectId, always);

Completed in 125 milliseconds

12