Searched defs:desiredBytes (Results 1 - 1 of 1) sorted by relevance

/system/media/audio_utils/
H A Dtinysndfile.c429 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
434 temp = malloc(desiredBytes);
435 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream);
437 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream);
478 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
483 temp = malloc(desiredBytes);
484 actualBytes = fread(temp, sizeof(char), desiredBytes, handle->stream);
486 actualBytes = fread(ptr, sizeof(char), desiredBytes, handle->stream);
529 size_t desiredBytes = desiredFrames * handle->bytesPerFrame; local
534 temp = malloc(desiredBytes);
[all...]

Completed in 102 milliseconds