Searched refs:afState (Results 1 – 5 of 5) sorted by relevance
/frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/ |
D | AutoFocusStateMachine.java | 127 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE); in onCaptureCompleted() local 134 if (afState == null) { in onCaptureCompleted() 143 " new AF state = " + afState); in onCaptureCompleted() 145 if (mLastAfState == afState && afMode == mLastAfMode) { in onCaptureCompleted() 151 " new AF state = " + afState); in onCaptureCompleted() 153 mLastAfState = afState; in onCaptureCompleted() 156 switch (afState) { in onCaptureCompleted()
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | FrameProcessor.cpp | 60 m3aState.afState = ANDROID_CONTROL_AF_STATE_INACTIVE; in FrameProcessor() 284 &pendingState.afState, frameNumber, cameraId); in process3aState() 307 if (pendingState.afState != m3aState.afState || in process3aState() 312 m3aState.afState, pendingState.afState, in process3aState() 315 client->notifyAutoFocus(pendingState.afState, pendingState.afTriggerId); in process3aState() 317 m3aState.afState = pendingState.afState; in process3aState()
|
D | FrameProcessor.h | 79 camera_metadata_enum_android_control_af_state afState; member 90 afState((camera_metadata_enum_android_control_af_state)NOT_SET), in AlgState()
|
D | ZslProcessor.cpp | 819 uint8_t afState = entry.data.u8[0]; in getCandidateTimestampLocked() local 820 if (afState != ANDROID_CONTROL_AF_STATE_PASSIVE_FOCUSED && in getCandidateTimestampLocked() 821 afState != ANDROID_CONTROL_AF_STATE_FOCUSED_LOCKED && in getCandidateTimestampLocked() 822 afState != ANDROID_CONTROL_AF_STATE_NOT_FOCUSED_LOCKED) { in getCandidateTimestampLocked() 824 " skip it", __FUNCTION__, afState); in getCandidateTimestampLocked()
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
D | AndroidCamera2AgentImpl.java | 873 int afState = afStateMaybe; 879 boolean afStateChanged = afState != mLastAfState; 880 mLastAfState = afState; 883 switch (afState) { 891 afState == CaptureResult.CONTROL_AF_STATE_PASSIVE_SCAN, 907 … afState == CaptureResult.CONTROL_AF_STATE_FOCUSED_LOCKED,
|