diff options
| author | 2022-03-08 15:10:40 -0800 | |
|---|---|---|
| committer | 2022-03-08 15:16:01 -0800 | |
| commit | 3fe1ef18dd7bd734af80e80b15cbc2e84bdfcdec (patch) | |
| tree | 7f3294e9742937481624b3442c5182074a422472 | |
| parent | 1f014a4a51d744049d750b5536d8742882acadb3 (diff) | |
Update getHighSpeedVideoFpsRanges API doc.
bug: 189383363
Change-Id: Idf1eb85a737adc6e6dbd0f007e7e9f311af7db6f
| -rw-r--r-- | core/java/android/hardware/camera2/params/StreamConfigurationMap.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/java/android/hardware/camera2/params/StreamConfigurationMap.java b/core/java/android/hardware/camera2/params/StreamConfigurationMap.java index d9734b493471..5981d279227d 100644 --- a/core/java/android/hardware/camera2/params/StreamConfigurationMap.java +++ b/core/java/android/hardware/camera2/params/StreamConfigurationMap.java @@ -781,10 +781,11 @@ public final class StreamConfigurationMap { * <li>The fpsMin and fpsMax will be a multiple 30fps.</li> * <li>The fpsMin will be no less than 30fps, the fpsMax will be no less than 120fps.</li> * <li>At least one range will be a fixed FPS range where fpsMin == fpsMax.</li> - * <li>For each fixed FPS range, there will be one corresponding variable FPS range [30, - * fps_max]. These kinds of FPS ranges are suitable for preview-only use cases where the - * application doesn't want the camera device always produce higher frame rate than the display - * refresh rate.</li> + * <li>For each fixed FPS range, there will be one corresponding variable FPS range + * [30, fps_max] or [60, fps_max]. These kinds of FPS ranges are suitable for preview-only + * use cases where the application doesn't want the camera device always produce higher frame + * rate than the display refresh rate. Both 30fps and 60fps preview rate will not be + * supported for the same recording rate.</li> * </p> * * @return an array of supported high speed video recording FPS ranges The upper bound of |