diff options
author | Chih-Chung Chang <chihchung@google.com> | 2011-10-31 21:04:01 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-31 21:04:01 -0700 |
commit | 2cf981a8e3dcc815e422f21ae4f09e17934906e1 (patch) | |
tree | 755ba59d0a2418ff3257fab9de6963dbd88bec46 /include | |
parent | 7dae00baa6e8957be15523c46bb948bd1dde64c3 (diff) | |
parent | 597f405273ce21b7e67984084c428d84c3365bd9 (diff) | |
download | frameworks_av-2cf981a8e3dcc815e422f21ae4f09e17934906e1.zip frameworks_av-2cf981a8e3dcc815e422f21ae4f09e17934906e1.tar.gz frameworks_av-2cf981a8e3dcc815e422f21ae4f09e17934906e1.tar.bz2 |
Merge "Update camera continuous autofocus javadoc." into ics-mr0
Diffstat (limited to 'include')
-rw-r--r-- | include/camera/CameraParameters.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h index ef4cf5c..7edf6b4 100644 --- a/include/camera/CameraParameters.h +++ b/include/camera/CameraParameters.h @@ -644,15 +644,17 @@ public: // than FOCUS_MODE_CONTINUOUS_VIDEO. Auto focus starts when the parameter is // set. // - // If applications call CameraHardwareInterface.autoFocus in this mode, the - // focus callback will immediately return with a boolean that indicates - // whether the focus is sharp or not. The apps can then decide if they want - // to take a picture immediately or to change the focus mode to auto, and - // run a full autofocus cycle. The focus position is locked after autoFocus - // call. If applications want to resume the continuous focus, - // cancelAutoFocus must be called. Restarting the preview will not resume - // the continuous autofocus. To stop continuous focus, applications should - // change the focus mode to other modes. + // Applications can call CameraHardwareInterface.autoFocus in this mode. If + // the autofocus is in the middle of scanning, the focus callback will + // return when it completes. If the autofocus is not scanning, focus + // callback will immediately return with a boolean that indicates whether + // the focus is sharp or not. The apps can then decide if they want to take + // a picture immediately or to change the focus mode to auto, and run a full + // autofocus cycle. The focus position is locked after autoFocus call. If + // applications want to resume the continuous focus, cancelAutoFocus must be + // called. Restarting the preview will not resume the continuous autofocus. + // To stop continuous focus, applications should change the focus mode to + // other modes. static const char FOCUS_MODE_CONTINUOUS_PICTURE[]; private: |