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

  /frameworks/av/media/libaudioprocessing/tests/
test-resampler.cpp 446 size_t thisFrames = Ovalues[j++];
450 if (thisFrames == 0 || thisFrames > output_frames - i) {
451 thisFrames = output_frames - i;
453 resampler->resample((int*) output_vaddr + output_channels*i, thisFrames, &provider);
454 i += thisFrames;
resampler_tests.cpp 61 size_t thisFrames = outputIncr[j++];
65 if (thisFrames == 0 || thisFrames > outputFrames - i) {
66 thisFrames = outputFrames - i;
69 (int32_t*) output + channels*i, thisFrames, provider);
71 ASSERT_EQ(thisFrames, framesResampled);
72 i += thisFrames;

Completed in 151 milliseconds