OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:desiredFrames
(Results
1 - 3
of
3
) sorted by null
/system/media/audio_utils/
tinysndfile.c
345
sf_count_t sf_readf_short(SNDFILE *handle, short *ptr, sf_count_t
desiredFrames
)
348
desiredFrames
<= 0) {
351
if (handle->remaining < (size_t)
desiredFrames
)
352
desiredFrames
= handle->remaining;
354
size_t desiredBytes =
desiredFrames
* handle->bytesPerFrame;
389
sf_count_t sf_readf_float(SNDFILE *handle, float *ptr, sf_count_t
desiredFrames
)
394
sf_count_t sf_writef_short(SNDFILE *handle, const short *ptr, sf_count_t
desiredFrames
)
396
if (handle == NULL || handle->mode != SFM_WRITE || ptr == NULL ||
desiredFrames
<= 0)
398
size_t desiredBytes =
desiredFrames
* handle->bytesPerFrame;
413
my_swab((short *) handle->temp,
desiredFrames
* handle->info.channels)
[
all
...]
/frameworks/av/services/audioflinger/
Tracks.cpp
520
size_t
desiredFrames
= buffer->frameCount;
521
buf.mFrameCount =
desiredFrames
;
526
mAudioTrackServerProxy->tallyUnderrunFrames(
desiredFrames
);
[
all
...]
Threads.cpp
[
all
...]
Completed in 131 milliseconds