diff --git a/core/api/current.txt b/core/api/current.txt index 771d56cd1987f..5245a179524c7 100644 --- a/core/api/current.txt +++ b/core/api/current.txt @@ -18768,7 +18768,6 @@ package android.hardware.camera2 { field public static final int CONTROL_AF_TRIGGER_CANCEL = 2; // 0x2 field public static final int CONTROL_AF_TRIGGER_IDLE = 0; // 0x0 field public static final int CONTROL_AF_TRIGGER_START = 1; // 0x1 - field public static final int CONTROL_AUTOFRAMING_AUTO = 2; // 0x2 field public static final int CONTROL_AUTOFRAMING_OFF = 0; // 0x0 field public static final int CONTROL_AUTOFRAMING_ON = 1; // 0x1 field public static final int CONTROL_AUTOFRAMING_STATE_CONVERGED = 2; // 0x2 diff --git a/core/java/android/hardware/camera2/CameraMetadata.java b/core/java/android/hardware/camera2/CameraMetadata.java index ed2a198dd6ed4..ea998473155f7 100644 --- a/core/java/android/hardware/camera2/CameraMetadata.java +++ b/core/java/android/hardware/camera2/CameraMetadata.java @@ -3285,6 +3285,7 @@ public abstract class CameraMetadata { /** *

Automatically select ON or OFF based on the system level preferences.

* @see CaptureRequest#CONTROL_AUTOFRAMING + * @hide */ public static final int CONTROL_AUTOFRAMING_AUTO = 2; diff --git a/core/java/android/hardware/camera2/CaptureRequest.java b/core/java/android/hardware/camera2/CaptureRequest.java index 929868b2facaa..3a660812fd24a 100644 --- a/core/java/android/hardware/camera2/CaptureRequest.java +++ b/core/java/android/hardware/camera2/CaptureRequest.java @@ -2532,7 +2532,6 @@ public final class CaptureRequest extends CameraMetadata> * * *

Optional - The value for this key may be {@code null} on some devices.

@@ -2545,7 +2544,6 @@ public final class CaptureRequest extends CameraMetadata> * @see CaptureRequest#SCALER_CROP_REGION * @see #CONTROL_AUTOFRAMING_OFF * @see #CONTROL_AUTOFRAMING_ON - * @see #CONTROL_AUTOFRAMING_AUTO */ @PublicKey @NonNull diff --git a/core/java/android/hardware/camera2/CaptureResult.java b/core/java/android/hardware/camera2/CaptureResult.java index a429f30c9a9e3..1536376e4eb51 100644 --- a/core/java/android/hardware/camera2/CaptureResult.java +++ b/core/java/android/hardware/camera2/CaptureResult.java @@ -2736,7 +2736,6 @@ public class CaptureResult extends CameraMetadata> { *
    *
  • {@link #CONTROL_AUTOFRAMING_OFF OFF}
  • *
  • {@link #CONTROL_AUTOFRAMING_ON ON}
  • - *
  • {@link #CONTROL_AUTOFRAMING_AUTO AUTO}
  • *
* *

Optional - The value for this key may be {@code null} on some devices.

@@ -2749,7 +2748,6 @@ public class CaptureResult extends CameraMetadata> { * @see CaptureRequest#SCALER_CROP_REGION * @see #CONTROL_AUTOFRAMING_OFF * @see #CONTROL_AUTOFRAMING_ON - * @see #CONTROL_AUTOFRAMING_AUTO */ @PublicKey @NonNull