Home
last modified time | relevance | path

Searched refs:srcQuality (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
DSoundPool.java123 public SoundPool(int maxStreams, int streamType, int srcQuality) { in SoundPool() argument
127 mImpl = new SoundPoolImpl(this, maxStreams, streamType, srcQuality); in SoundPool()
459 public SoundPoolImpl(SoundPool proxy, int maxStreams, int streamType, int srcQuality) { in SoundPoolImpl() argument
462 if (native_setup(new WeakReference(this), maxStreams, streamType, srcQuality) != 0) { in SoundPoolImpl()
614 …vate native final int native_setup(Object weakRef, int maxStreams, int streamType, int srcQuality); in native_setup() argument
/frameworks/av/include/media/
DSoundPool.h170 SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality);
187 int srcQuality() const { return mSrcQuality; } in srcQuality() function
/frameworks/base/media/jni/soundpool/
Dandroid_media_SoundPool_SoundPoolImpl.cpp179 …tup(JNIEnv *env, jobject thiz, jobject weakRef, jint maxChannels, jint streamType, jint srcQuality) in android_media_SoundPool_SoundPoolImpl_native_setup() argument
182 SoundPool *ap = new SoundPool(maxChannels, (audio_stream_type_t) streamType, srcQuality); in android_media_SoundPool_SoundPoolImpl_native_setup()
/frameworks/av/media/libmedia/
DSoundPool.cpp38 SoundPool::SoundPool(int maxChannels, audio_stream_type_t streamType, int srcQuality) in SoundPool() argument
41 maxChannels, streamType, srcQuality); in SoundPool()
56 mSrcQuality = srcQuality; in SoundPool()