diff options
| -rw-r--r-- | core/java/android/hardware/camera2/CaptureRequest.java | 2 | ||||
| -rw-r--r-- | core/java/android/hardware/camera2/CaptureResult.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/hardware/camera2/CaptureRequest.java b/core/java/android/hardware/camera2/CaptureRequest.java index 735b20f738ac..c82e7e8c12ef 100644 --- a/core/java/android/hardware/camera2/CaptureRequest.java +++ b/core/java/android/hardware/camera2/CaptureRequest.java @@ -1494,7 +1494,7 @@ public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>> * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}.</p> * <p>Note that the actual achievable max framerate also depends on the minimum frame * duration of the output streams. The max frame rate will be - * <code>min(aeTargetFpsRange.maxFps, 1 / max(individual stream min durations)</code>. For example, + * <code>min(aeTargetFpsRange.maxFps, 1 / max(individual stream min durations))</code>. For example, * if the application sets this key to <code>{60, 60}</code>, but the maximum minFrameDuration among * all configured streams is 33ms, the maximum framerate won't be 60fps, but will be * 30fps.</p> diff --git a/core/java/android/hardware/camera2/CaptureResult.java b/core/java/android/hardware/camera2/CaptureResult.java index 76287ca8c286..5765a73fb3c7 100644 --- a/core/java/android/hardware/camera2/CaptureResult.java +++ b/core/java/android/hardware/camera2/CaptureResult.java @@ -893,7 +893,7 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}.</p> * <p>Note that the actual achievable max framerate also depends on the minimum frame * duration of the output streams. The max frame rate will be - * <code>min(aeTargetFpsRange.maxFps, 1 / max(individual stream min durations)</code>. For example, + * <code>min(aeTargetFpsRange.maxFps, 1 / max(individual stream min durations))</code>. For example, * if the application sets this key to <code>{60, 60}</code>, but the maximum minFrameDuration among * all configured streams is 33ms, the maximum framerate won't be 60fps, but will be * 30fps.</p> |