summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/CaptureModule.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/CaptureModule.java')
-rw-r--r--src/com/android/camera/CaptureModule.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/camera/CaptureModule.java b/src/com/android/camera/CaptureModule.java
index 50cf0aa2b..d2ce09fd8 100644
--- a/src/com/android/camera/CaptureModule.java
+++ b/src/com/android/camera/CaptureModule.java
@@ -192,7 +192,7 @@ public class CaptureModule implements CameraModule, PhotoController,
// we can change it based on memory status or other requirements.
private static final int LONGSHOT_CANCEL_THRESHOLD = 40 * 1024 * 1024;
- private static final int NORMAL_SESSION_MAX_FPS = 60;
+ private static final int NORMAL_SESSION_MAX_FPS = 30;
private static final int SCREEN_DELAY = 2 * 60 * 1000;
@@ -249,6 +249,8 @@ public class CaptureModule implements CameraModule, PhotoController,
public static CaptureResult.Key<byte[]> gazeDegree =
new CaptureResult.Key<>("org.codeaurora.qcamera3.stats.gaze_degree",
byte[].class);
+ public static final CameraCharacteristics.Key<int[]> hfrSizeList =
+ new CameraCharacteristics.Key<>("org.codeaurora.qcamera3.hfr.sizes", int[].class);
private boolean[] mTakingPicture = new boolean[MAX_NUM_CAM];
private int mControlAFMode = CameraMetadata.CONTROL_AF_MODE_CONTINUOUS_PICTURE;