OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buffSizeInBytes
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/media/java/android/media/
JetPlayer.java
164
int
buffSizeInBytes
= AudioTrack.getMinBufferSize(JET_OUTPUT_RATE,
167
if ((
buffSizeInBytes
!= AudioTrack.ERROR)
168
&& (
buffSizeInBytes
!= AudioTrack.ERROR_BAD_VALUE)) {
174
Math.max(1200,
buffSizeInBytes
/ 4));
AudioRecord.java
804
int
buffSizeInBytes
, int[] sessionId);
AudioTrack.java
[
all
...]
/frameworks/base/core/jni/
android_media_AudioTrack.cpp
200
jint audioFormat, jint
buffSizeInBytes
, jint memoryMode, jintArray jSession)
203
sampleRateInHertz, audioFormat, javaChannelMask,
buffSizeInBytes
);
260
buffSizeInBytes
, 2*
buffSizeInBytes
);
263
buffSizeInBytes
*= 2;
270
int frameCount =
buffSizeInBytes
/ (nbChannels * bytesPerSample);
325
if (!lpJniStorage->allocSharedMem(
buffSizeInBytes
)) {
[
all
...]
android_media_AudioRecord.cpp
163
jint audioFormat, jint
buffSizeInBytes
, jintArray jSession)
166
//ALOGV("sampleRate=%d, audioFormat=%d, channel mask=%x,
buffSizeInBytes
=%d",
167
// sampleRateInHertz, audioFormat, channelMask,
buffSizeInBytes
);
186
if (
buffSizeInBytes
== 0) {
191
size_t frameCount =
buffSizeInBytes
/ frameSize;
Completed in 180 milliseconds