Searched defs:srcQuality (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
H A DSoundPool.java133 * @param srcQuality the sample-rate converter quality. Currently has no
137 public SoundPool(int maxStreams, int streamType, int srcQuality) { argument
140 if (native_setup(new WeakReference(this), maxStreams, streamType, srcQuality) != 0) {
483 private native final int native_setup(Object weakRef, int maxStreams, int streamType, int srcQuality); argument
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp179 android_media_SoundPool_native_setup(JNIEnv *env, jobject thiz, jobject weakRef, jint maxChannels, jint streamType, jint srcQuality) argument
182 SoundPool *ap = new SoundPool(maxChannels, (audio_stream_type_t) streamType, srcQuality);
/frameworks/av/include/media/
H A DSoundPool.h165 SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality);
182 int srcQuality() const { return mSrcQuality; } function in class:android::SoundPool
/frameworks/av/media/libmedia/
H A DSoundPool.cpp42 SoundPool::SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality) argument
44 ALOGV("SoundPool constructor: maxChannels=%d, streamType=%d, srcQuality=%d",
45 maxChannels, streamType, srcQuality);
60 mSrcQuality = srcQuality;

Completed in 946 milliseconds