HomeSort by relevance Sort by last modified time
    Searched refs:framesWr (Results 1 - 3 of 3) sorted by null

  /system/media/audio_utils/
resampler.c 95 size_t framesWr = 0;
97 while (framesWr < framesRq) {
120 spx_uint32_t outFrames = framesRq - framesWr;
127 out + framesWr,
133 out + framesWr * rsmp->channel_count,
136 framesWr += outFrames;
138 ALOGW_IF((framesWr != framesRq) && (rsmp->frames_in != 0),
140 rsmp->frames_in, (framesRq - framesWr));
147 *outFrameCount = framesWr;
  /device/asus/fugu/libaudio/
AudioStreamIn.cpp 408 ssize_t framesWr = 0;
411 while (framesWr < frames) {
412 size_t framesRd = frames - framesWr;
415 (framesWr * frameSize);
427 memcpy(static_cast<char*>(buffer) + (framesWr * frameSize),
439 framesWr += framesRd;
441 return framesWr;
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp     [all...]

Completed in 79 milliseconds