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

/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool_SoundPoolImpl.cpp179 android_media_SoundPool_SoundPoolImpl_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/base/media/java/android/media/
H A DSoundPool.java119 * @param srcQuality the sample-rate converter quality. Currently has no
123 public SoundPool(int maxStreams, int streamType, int srcQuality) { argument
127 mImpl = new SoundPoolImpl(this, maxStreams, streamType, srcQuality);
459 public SoundPoolImpl(SoundPool proxy, int maxStreams, int streamType, int srcQuality) { argument
462 if (native_setup(new WeakReference(this), maxStreams, streamType, srcQuality) != 0) {
614 private native final int native_setup(Object weakRef, int maxStreams, int streamType, int srcQuality); argument
/frameworks/av/include/media/
H A DSoundPool.h170 SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality);
187 int srcQuality() const { return mSrcQuality; } function in class:android::SoundPool
/frameworks/av/media/libmedia/
H A DSoundPool.cpp38 SoundPool::SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality) argument
40 ALOGV("SoundPool constructor: maxChannels=%d, streamType=%d, srcQuality=%d",
41 maxChannels, streamType, srcQuality);
56 mSrcQuality = srcQuality;

Completed in 141 milliseconds