HomeSort by relevance Sort by last modified time
    Searched refs:captureResult (Results 1 - 12 of 12) sorted by null

  /packages/apps/Camera2/src/com/android/camera/burst/
EvictionHandler.java 49 * @param captureResult the capture result of the image.
52 TotalCaptureResult captureResult);
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
AndroidCaptureResultProxy.java 19 import android.hardware.camera2.CaptureResult;
28 * Wraps a {@link android.hardware.camera2.CaptureResult} as a
33 final CaptureResult mCaptureResult;
35 public AndroidCaptureResultProxy(CaptureResult captureResult) {
36 mCaptureResult = captureResult;
40 public <T> T get(CaptureResult.Key<T> key) {
45 public List<CaptureResult.Key<?>> getKeys() {
  /packages/apps/Camera2/src/com/android/camera/stats/
CaptureSessionStatsCollector.java 4 import android.hardware.camera2.CaptureResult;
68 * Decorate the collector when the CaptureResult becomes available, which happens sometime
70 * two fields: 1) CaptureResult.STATISTICS_FACES and 2) CaptureResult.LENS_FOCUS_DISTANCE
72 * @param captureResult CaptureResults to be queried for capture event information
74 public void decorateAtTimeOfCaptureRequestAvailable(CaptureResultProxy captureResult) {
75 Face [] facesCaptured = captureResult.get(CaptureResult.STATISTICS_FACES);
85 mLensFocusDistance = captureResult.get(CaptureResult.LENS_FOCUS_DISTANCE)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/zsl/
AutoFlashZslImageFilter.java 19 import android.hardware.camera2.CaptureResult;
78 * CaptureResult.CONTROL_AE_STATE_SEARCHING into
79 * CaptureResult.CONTROL_AE_STATE_CONVERGED.
90 public <T> T get(CaptureResult.Key<T> key) {
93 if (Objects.equal(aeState, CaptureResult.CONTROL_AE_STATE_SEARCHING)) {
94 return (T) ((Integer) CaptureResult.CONTROL_AE_STATE_CONVERGED);
102 public List<CaptureResult.Key<?>> getKeys() {
147 public void update(@Nonnull CaptureResultProxy captureResult) {
148 if (captureResult.getFrameNumber() > mLastFrameNumber) {
149 Integer aeState = captureResult.get(CaptureResult.CONTROL_AE_STATE)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ImageCaptureManager.java 22 import android.hardware.camera2.CaptureResult;
23 import android.hardware.camera2.CaptureResult.Key;
87 * @param key the {@link CaptureResult} key this listener listens for.
90 * {@link android.hardware.camera2.CaptureResult.Key} this
93 * the {@link android.hardware.camera2.CaptureResult.Key}
95 * @param result the CaptureResult containing the new value
98 CaptureResult result);
114 public void onImageCaptured(Image image, TotalCaptureResult captureResult);
126 * {@captureResult} indicates that the lens was moving during image
129 * @param captureResult The metadata associated with the image
    [all...]
OneCameraZslImpl.java 27 import android.hardware.camera2.CaptureResult;
28 import android.hardware.camera2.CaptureResult.Key;
177 * Maintains a buffer of images and their associated {@link CaptureResult}s.
247 public void onImageCaptured(Image image, TotalCaptureResult captureResult) {
248 long timestamp = captureResult.get(CaptureResult.SENSOR_TIMESTAMP);
280 savePicture(image, mParams, mSession, captureResult);
282 Log.v(TAG, "Image saved. Frame number = " + captureResult.getFrameNumber());
332 mCaptureManager.addMetadataChangeListener(CaptureResult.CONTROL_AF_STATE,
336 CaptureResult result)
    [all...]
OneCameraImpl.java 30 import android.hardware.camera2.CaptureResult;
218 CaptureRequest request, CaptureResult partialResult) {
230 if (result.get(CaptureResult.CONTROL_AF_STATE) == null) {
237 Float diopter = result.get(CaptureResult.LENS_FOCUS_DISTANCE);
467 CaptureSession session, CaptureResult result) {
665 private void autofocusStateChangeDispatcher(CaptureResult result) {
667 result.get(CaptureResult.CONTROL_AF_STATE) == null) {
674 stateFromCamera2State(result.get(CaptureResult.CONTROL_AF_STATE));
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
ExifUtil.java 19 import android.hardware.camera2.CaptureResult;
54 * @param captureResult A {@link CaptureResultProxy} from which to extract info from.
58 Optional<CaptureResultProxy> captureResult,
66 if (captureResult.isPresent()) {
67 addCaptureResultToExif(captureResult.get());
137 Long exposureTimeNs = result.get(CaptureResult.SENSOR_EXPOSURE_TIME);
148 addExifTag(ExifInterface.TAG_ISO_SPEED_RATINGS, result.get(CaptureResult.SENSOR_SENSITIVITY));
151 Float fNumber = result.get(CaptureResult.LENS_APERTURE);
161 Float focalLength = result.get(CaptureResult.LENS_FOCAL_LENGTH);
165 Integer flashMode = result.get(CaptureResult.FLASH_MODE)
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
CameraTestUtils.java 32 import android.hardware.camera2.CaptureResult;
449 public CaptureResult getCaptureResult(long timeout) {
463 currentTs = result.get(CaptureResult.SENSOR_TIMESTAMP);
485 * Get the {@link #CaptureResult capture result} for a given
489 * corresponding {@link #CaptureResult capture result} was
498 public CaptureResult getCaptureResultForRequest(CaptureRequest myRequest,
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java 42 import android.hardware.camera2.CaptureResult;
433 public CaptureResult getCaptureResult(long timeout) {
447 currentTs = result.get(CaptureResult.SENSOR_TIMESTAMP);
469 * Get the {@link #CaptureResult capture result} for a given
473 * corresponding {@link #CaptureResult capture result} was
482 public CaptureResult getCaptureResultForRequest(CaptureRequest myRequest,
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 33 import android.hardware.camera2.CaptureResult;
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Device.cpp     [all...]

Completed in 207 milliseconds