OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minFrameCount
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/media/libstagefright/
AudioSource.cpp
61
size_t
minFrameCount
;
62
status_t status = AudioRecord::getMinFrameCount(&
minFrameCount
,
73
while ((bufCount * frameCount) <
minFrameCount
) {
/frameworks/av/media/libmedia/
AudioRecord.cpp
200
size_t
minFrameCount
= 0;
201
status_t status = getMinFrameCount(&
minFrameCount
, sampleRate, format, channelMask);
205
ALOGV("AudioRecord::set()
minFrameCount
= %d",
minFrameCount
);
208
frameCount =
minFrameCount
;
209
} else if (frameCount <
minFrameCount
) {
AudioTrack.cpp
821
size_t
minFrameCount
= (afFrameCount*sampleRate*minBufCount)/afSampleRate;
822
ALOGV("
minFrameCount
: %u, afFrameCount=%d, minBufCount=%d, sampleRate=%u, afSampleRate=%u"
824
minFrameCount
, afFrameCount, minBufCount, sampleRate, afSampleRate, afLatency);
827
frameCount =
minFrameCount
;
837
if (frameCount <
minFrameCount
) {
840
frameCount,
minFrameCount
);
841
frameCount =
minFrameCount
;
[
all
...]
/frameworks/av/services/audioflinger/
Threads.cpp
[
all
...]
Completed in 1136 milliseconds