Searched refs:thisFrames (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/
H A Dtest-resample.cpp440 size_t thisFrames = Ovalues[j++]; local
444 if (thisFrames == 0 || thisFrames > output_frames - i) {
445 thisFrames = output_frames - i;
447 resampler->resample((int*) output_vaddr + output_channels*i, thisFrames, &provider);
448 i += thisFrames;
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp44 size_t thisFrames = outputIncr[j++]; local
48 if (thisFrames == 0 || thisFrames > outputFrames - i) {
49 thisFrames = outputFrames - i;
51 resampler->resample((int32_t*) output + channels*i, thisFrames, provider);
52 i += thisFrames;

Completed in 29 milliseconds