OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minBufCount
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libmedia/
AudioTrack.cpp
70
uint32_t
minBufCount
= afLatency / ((1000 * afFrameCount) / afSampleRate);
71
if (
minBufCount
< 2) {
72
minBufCount
= 2;
75
*frameCount = (sampleRate == 0) ? afFrameCount *
minBufCount
:
76
afFrameCount *
minBufCount
* sampleRate / afSampleRate;
77
ALOGV("getMinFrameCount=%d: afFrameCount=%d,
minBufCount
=%d, afSampleRate=%d, afLatency=%d",
78
*frameCount, afFrameCount,
minBufCount
, afSampleRate, afLatency);
948
uint32_t
minBufCount
= afLatency / ((1000 * afFrameCount)/afSampleRate);
949
ALOGV("afFrameCount=%d,
minBufCount
=%d, afSampleRate=%u, afLatency=%d",
950
afFrameCount,
minBufCount
, afSampleRate, afLatency)
[
all
...]
/frameworks/av/services/audioflinger/
Threads.cpp
142
// See the client's
minBufCount
and mNotificationFramesAct calculations for details.
[
all
...]
Completed in 4674 milliseconds