Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/tests/
Dresampler_tests.cpp44 size_t thisFrames = outputIncr[j++]; in resample() local
48 if (thisFrames == 0 || thisFrames > outputFrames - i) { in resample()
49 thisFrames = outputFrames - i; in resample()
52 (int32_t*) output + channels*i, thisFrames, provider); in resample()
54 ASSERT_EQ(thisFrames, framesResampled); in resample()
55 i += thisFrames; in resample()
/frameworks/av/services/audioflinger/
Dtest-resample.cpp448 size_t thisFrames = Ovalues[j++]; in main() local
452 if (thisFrames == 0 || thisFrames > output_frames - i) { in main()
453 thisFrames = output_frames - i; in main()
455 resampler->resample((int*) output_vaddr + output_channels*i, thisFrames, &provider); in main()
456 i += thisFrames; in main()