Lines Matching refs:mFrameCount
1903 mFrameCount = -1; in startPreview()
1957 if (mFrameCount < 1) { in stopPreview()
1959 mFrameCount = -1; in stopPreview()
1968 mFrameCount = 0; in stopPreview()
2271 if (mFrameCount < 1) { in autoFocus()
2276 if ((NO_ERROR != ret) || (mFrameCount == 0)) { in autoFocus()
2302 if (mFrameCount < 1) { in takePicture()
2307 if ((NO_ERROR != ret) || (mFrameCount == 0)) { in takePicture()
2881 static int mFrameCount = 0; in debugShowFPS() local
2885 mFrameCount++; in debugShowFPS()
2886 if (!(mFrameCount & 0x1F)) { in debugShowFPS()
2889 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff; in debugShowFPS()
2891 mLastFrameCount = mFrameCount; in debugShowFPS()
2892 ALOGD("Camera %d Frames, %f FPS", mFrameCount, mFps); in debugShowFPS()
3185 mFrameCount++; in recalculateFPS()
3186 if (mFrameCount == 1) { in recalculateFPS()
3191 if ( ( mFrameCount % FPS_PERIOD ) == 0 ) in recalculateFPS()
3195 currentFPS = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff; in recalculateFPS()
3197 mLastFrameCount = mFrameCount; in recalculateFPS()