Searched refs:totalFrames (Results 1 - 3 of 3) 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/native/cmds/flatland/
H A DMain.cpp391 nsecs_t run(uint32_t warmUpFrames, uint32_t totalFrames) { argument
411 for (uint32_t i = warmUpFrames; i < totalFrames; i++) {
545 uint32_t totalFrames = 5; local
550 runTime = double(r.run(warmUpFrames, totalFrames));
553 totalFrames *= 2;
560 if (totalFrames - warmUpFrames > 16) {
564 } else if (totalFrames == 5 && runTime > 200e6) {
582 double sample = double(r.run(warmUpFrames, totalFrames));
603 printf("%6.3f", result / double(totalFrames - warmUpFrames) / 1e6);
/frameworks/av/media/libmedia/
H A DSoundPool.cpp582 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate; local
583 uint32_t bufferFrames = (totalFrames + (kDefaultBufferCount - 1)) / kDefaultBufferCount;
593 if(frameCount < totalFrames) {
594 frameCount = totalFrames;

Completed in 139 milliseconds