Searched refs:buffSizeInBytes (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/media/java/android/media/ |
D | JetPlayer.java | 164 int buffSizeInBytes = AudioTrack.getMinBufferSize(JET_OUTPUT_RATE, in JetPlayer() local 167 if ((buffSizeInBytes != AudioTrack.ERROR) in JetPlayer() 168 && (buffSizeInBytes != AudioTrack.ERROR_BAD_VALUE)) { in JetPlayer() 174 Math.max(1200, buffSizeInBytes / in JetPlayer()
|
D | AudioRecord.java | 1530 int buffSizeInBytes, int[] sessionId, String opPackageName); in native_setup() argument
|
D | AudioTrack.java | 2516 int buffSizeInBytes, int mode, int[] sessionId); in native_setup() argument
|
/frameworks/base/core/jni/ |
D | android_media_AudioTrack.cpp | 219 jint audioFormat, jint buffSizeInBytes, jint memoryMode, jintArray jSession) { in android_media_AudioTrack_setup() argument 222 sampleRateInHertz, channelPositionMask, channelIndexMask, audioFormat, buffSizeInBytes); in android_media_AudioTrack_setup() 251 frameCount = buffSizeInBytes / (channelCount * bytesPerSample); in android_media_AudioTrack_setup() 253 frameCount = buffSizeInBytes; in android_media_AudioTrack_setup() 330 if (!lpJniStorage->allocSharedMem(buffSizeInBytes)) { in android_media_AudioTrack_setup()
|
D | android_media_AudioRecord.cpp | 180 jint audioFormat, jint buffSizeInBytes, jintArray jSession, jstring opPackageName) in android_media_AudioRecord_setup() argument 215 if (buffSizeInBytes == 0) { in android_media_AudioRecord_setup() 220 size_t frameCount = buffSizeInBytes / frameSize; in android_media_AudioRecord_setup()
|