Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioprocessing/tests/
Dresampler_tests.cpp61 size_t thisFrames = outputIncr[j++]; in resample() local
65 if (thisFrames == 0 || thisFrames > outputFrames - i) { in resample()
66 thisFrames = outputFrames - i; in resample()
69 (int32_t*) output + channels*i, thisFrames, provider); in resample()
71 ASSERT_EQ(thisFrames, framesResampled); in resample()
72 i += thisFrames; in resample()
Dtest-resampler.cpp447 size_t thisFrames = Ovalues[j++]; in main() local
451 if (thisFrames == 0 || thisFrames > output_frames - i) { in main()
452 thisFrames = output_frames - i; in main()
454 resampler->resample((int*) output_vaddr + output_channels*i, thisFrames, &provider); in main()
455 i += thisFrames; in main()