Home | History | Annotate | Download | only in V4LCameraAdapter

Lines Matching refs:mFrameCount

430     static int mFrameCount = 0;
434 mFrameCount++;
435 if (!(mFrameCount & 0x1F)) {
438 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
440 mLastFrameCount = mFrameCount;
441 ALOGD("Camera %d Frames, %f FPS", mFrameCount, mFps);
450 mFrameCount++;
452 if ( ( mFrameCount % FPS_PERIOD ) == 0 )
456 currentFPS = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
458 mLastFrameCount = mFrameCount;