/frameworks/base/media/java/android/media/videoeditor/ |
EffectColor.java | 83 * @param effectId The effect id 93 public EffectColor(MediaItem mediaItem, String effectId, long startTimeMs, 95 super(mediaItem, effectId, startTimeMs, durationMs);
|
EffectKenBurns.java | 46 * @param effectId The effect id 52 public EffectKenBurns(MediaItem mediaItem, String effectId, Rect startRect, 54 super(mediaItem, effectId, startTimeMs, durationMs);
|
Effect.java | 57 * @param effectId The effect id 62 public Effect(MediaItem mediaItem, String effectId, long startTimeMs, 76 mUniqueId = effectId;
|
MediaItem.java | 328 * @param effectId The id of the effect to be removed 333 public Effect removeEffect(String effectId) { 335 if (effect.getId().equals(effectId)) { 382 * @param effectId The effect id 385 public Effect getEffect(String effectId) { 387 if (effect.getId().equals(effectId)) {
|
/frameworks/av/include/media/ |
IAudioTrack.h | 65 /* Attach track auxiliary output to specified effect. Use effectId = 0 68 virtual status_t attachAuxEffect(int effectId) = 0;
|
IMediaPlayer.h | 63 virtual status_t attachAuxEffect(int effectId) = 0;
|
mediaplayer.h | 239 status_t attachAuxEffect(int effectId);
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
SimplePlayer.java | 180 public void attachAuxEffect(int effectId) { 181 mEffectId = effectId; 183 Log.d(TAG,"attach effect: "+effectId); 184 mMediaPlayer.attachAuxEffect(effectId);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieMediaItem.java | 448 * @param effectId The effect id 450 void removeEffect(String effectId) { 452 if (!mEffect.getId().equals(effectId)) { 454 + effectId);
|
ApiServiceListener.java | 397 * @param effectId The id of the effect which was removed 401 public void onEffectRemoved(String projectPath, String effectId,
|
/frameworks/base/core/java/android/view/ |
IWindowSession.aidl | 137 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
|
WindowManagerPolicy.java | [all...] |
/frameworks/base/media/java/android/media/ |
AudioTrack.java | [all...] |
/frameworks/wilhelm/src/android/ |
android_GenericMediaPlayer.cpp | 457 int32_t effectId = 0; 458 if (msg->findInt32(WHATPARAM_ATTACHAUXEFFECT, &effectId)) { 461 status = mPlayer->attachAuxEffect(effectId);
|
android_GenericPlayer.h | 84 void attachAuxEffect(int32_t effectId);
|
android_Effect.h | 135 extern bool android_fx_initEffectDescriptor(const SLInterfaceID effectId,
|
android_GenericPlayer.cpp | 215 void GenericPlayer::attachAuxEffect(int32_t effectId) 217 SL_LOGV("GenericPlayer::attachAuxEffect(id=%d)", effectId); 219 msg->setInt32(WHATPARAM_ATTACHAUXEFFECT, effectId);
|
/frameworks/av/services/audioflinger/ |
Threads.h | 192 sp<AudioFlinger::EffectModule> getEffect(int sessionId, int effectId); 193 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId); 201 virtual void detachAuxEffect_l(int effectId) {} 452 virtual void detachAuxEffect_l(int effectId); 454 int EffectId); 456 int EffectId); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeWindowSession.java | 84 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) {
|
/frameworks/av/media/libmedia/ |
IAudioTrack.cpp | 101 virtual status_t attachAuxEffect(int effectId) 105 data.writeInt32(effectId);
|
mediaplayer.cpp | 602 status_t MediaPlayer::attachAuxEffect(int effectId) 604 ALOGV("MediaPlayer::attachAuxEffect(%d)", effectId); 613 return mPlayer->attachAuxEffect(effectId);
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
EffectsRecorder.java | 126 public static boolean isEffectSupported(int effectId) { 127 switch (effectId) { 299 public void onEffectsUpdate(int effectId, int effectMsg); [all...] |
/frameworks/av/media/libmediaplayerservice/ |
MediaPlayerService.h | 111 status_t attachAuxEffect(int effectId); 349 virtual status_t attachAuxEffect(int effectId);
|
MediaPlayerService.cpp | 1010 status_t MediaPlayerService::Client::attachAuxEffect(int effectId) 1012 ALOGV("[%d] attachAuxEffect(%d)", mConnId, effectId); 1014 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId); [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
VideoEditorHelper.java | 203 public EffectColor createEffectItem(MediaItem mediaItem, String effectId, 206 effectonMVI = new EffectColor(mediaItem, effectId, startTime,
|