Searched refs:audioStreamType (Results 1 - 12 of 12) sorted by relevance

/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DEngineParameters.java80 int decodeBufferMaxSize, int startPositionMillis, int audioStreamType) {
89 mAudioStreamType = audioStreamType;
153 public Builder audioStreamType(int audioStreamType) { argument
154 mAudioStreamType = audioStreamType;
78 EngineParameters(int targetFrames, int maxPlayBufferCount, float windowDuration, float windowOverlapDuration, float initialRate, int decodeBufferInitialSize, int decodeBufferMaxSize, int startPositionMillis, int audioStreamType) argument
H A DVariableSpeed.java217 int audioStreamType;
224 audioStreamType = mAudioStreamType;
228 mediaPlayer.setAudioStreamType(audioStreamType);
294 .audioStreamType(mAudioStreamType)
398 public void setAudioStreamType(int audioStreamType) { argument
400 mAudioStreamType = audioStreamType;
H A DVariableSpeedNative.java91 int startPositionMillis, int audioStreamType);
88 initializeEngine(int targetFrames, float windowDuration, float windowOverlapDuration, int maxPlayBufferCount, float initialRate, int decodeBufferInitialSize, int decodeBufferMaxSize, int startPositionMillis, int audioStreamType) argument
/frameworks/ex/variablespeed/jni/
H A Djni_entry.cc82 size_t startPositionMillis, int audioStreamType) {
86 decodeInitialSize, decodeMaxSize, startPositionMillis, audioStreamType));
H A Dvariablespeed.h48 size_t startPositionMillis, int audioStreamType);
H A Dvariablespeed.cc212 static void setAudioStreamType(SLObjectItf audioPlayer, SLint32 audioStreamType) { argument
220 &audioStreamType, sizeof(audioStreamType));
284 int audioStreamType)
294 audioStreamType_(audioStreamType),
567 size_t channelCount, SLuint32 slChannels, SLint32 audioStreamType, SLObjectItf &outputMix,
588 setAudioStreamType(audioPlayer, audioStreamType);
281 AudioEngine(size_t targetFrames, float windowDuration, float windowOverlapDuration, size_t maxPlayBufferCount, float initialRate, size_t decodeInitialSize, size_t decodeMaxSize, size_t startPositionMillis, int audioStreamType) argument
566 CreateAndRealizeAudioPlayer(SLuint32 slSampleRate, size_t channelCount, SLuint32 slChannels, SLint32 audioStreamType, SLObjectItf &outputMix, SLObjectItf &audioPlayer, SLEngineItf &engineInterface) argument
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java35 .setSound(n.sound, n.audioStreamType)
/frameworks/support/v4/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java36 .setSound(n.sound, n.audioStreamType)
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java39 .setSound(n.sound, n.audioStreamType)
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java220 mNotification.audioStreamType = Notification.STREAM_DEFAULT;
421 mNotification.audioStreamType = Notification.STREAM_DEFAULT;
433 mNotification.audioStreamType = streamType;
/frameworks/base/core/java/android/app/
H A DNotification.java219 * Use this constant as the value for audioStreamType to request that
230 public int audioStreamType = STREAM_DEFAULT; field in class:Notification
577 audioStreamType = parcel.readInt();
629 that.audioStreamType = this.audioStreamType;
730 parcel.writeInt(audioStreamType);
1597 n.audioStreamType = mAudioStreamType;
/frameworks/base/services/java/com/android/server/
H A DNotificationManagerService.java1112 int audioStreamType;
1113 if (notification.audioStreamType >= 0) {
1114 audioStreamType = notification.audioStreamType;
1116 audioStreamType = DEFAULT_STREAM_TYPE;
1121 if ((audioManager.getStreamVolume(audioStreamType) != 0)
1127 player.playAsync(soundUri, user, looping, audioStreamType);

Completed in 1166 milliseconds