OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcQuality
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/media/java/android/media/
SoundPool.java
133
* @param
srcQuality
the sample-rate converter quality. Currently has no
137
public SoundPool(int maxStreams, int streamType, int
srcQuality
) {
140
if (native_setup(new WeakReference(this), maxStreams, streamType,
srcQuality
) != 0) {
485
private native final int native_setup(Object weakRef, int maxStreams, int streamType, int
srcQuality
);
/cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java
111
int
srcQuality
= 100;
112
mSoundPool = new SoundPool(SOUNDPOOL_STREAMS, AudioManager.STREAM_MUSIC,
srcQuality
);
212
int
srcQuality
= 100;
213
mSoundPool = new SoundPool(SOUNDPOOL_STREAMS, AudioManager.STREAM_MUSIC,
srcQuality
);
277
int
srcQuality
= 100;
278
mSoundPool = new SoundPool(SOUNDPOOL_STREAMS, AudioManager.STREAM_MUSIC,
srcQuality
);
/frameworks/base/media/jni/soundpool/
SoundPool.h
165
SoundPool(int maxChannels, int streamType, int
srcQuality
);
182
int
srcQuality
() const { return mSrcQuality; }
android_media_SoundPool.cpp
179
android_media_SoundPool_native_setup(JNIEnv *env, jobject thiz, jobject weakRef, jint maxChannels, jint streamType, jint
srcQuality
)
182
SoundPool *ap = new SoundPool(maxChannels, streamType,
srcQuality
);
SoundPool.cpp
42
SoundPool::SoundPool(int maxChannels, int streamType, int
srcQuality
)
44
LOGV("SoundPool constructor: maxChannels=%d, streamType=%d,
srcQuality
=%d",
45
maxChannels, streamType,
srcQuality
);
60
mSrcQuality =
srcQuality
;
/prebuilt/sdk/14/
android.jar
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 59 milliseconds