Searched refs:totalFrames (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughput.java30 public Throughput(int totalFrames, int periodFrames, int periodTime, int pixels) { argument
31 mTotalFrames = totalFrames;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DThroughput.java26 public Throughput(int totalFrames, int periodFrames, long periodTime, int size) { argument
27 mTotalFrames = totalFrames;
/frameworks/native/cmds/flatland/
H A DMain.cpp465 nsecs_t run(uint32_t warmUpFrames, uint32_t totalFrames) { argument
485 for (uint32_t i = warmUpFrames; i < totalFrames; i++) {
619 uint32_t totalFrames = 5; local
624 runTime = double(r.run(warmUpFrames, totalFrames));
627 totalFrames *= 2;
634 if (totalFrames - warmUpFrames > 16) {
638 } else if (totalFrames == 5 && runTime > 200e6) {
656 double sample = double(r.run(warmUpFrames, totalFrames));
677 printf("%6.3f", result / double(totalFrames - warmUpFrames) / 1e6);
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp750 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate; local
752 if(frameCount < totalFrames) {
753 frameCount = totalFrames;
783 uint32_t bufferFrames = (totalFrames + (kDefaultBufferCount - 1)) / kDefaultBufferCount;

Completed in 250 milliseconds