Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom committed Jan 14, 2021
1 parent 5e8ea8f commit 5a37eab
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,9 @@ private void runPictureCapture() {
final CaptureRequest.Builder captureBuilder =
cameraDevice.createCaptureRequest(CameraDevice.TEMPLATE_STILL_CAPTURE);
captureBuilder.addTarget(pictureImageReader.getSurface());
captureBuilder.set(CaptureRequest.SCALER_CROP_REGION, captureRequestBuilder.get(CaptureRequest.SCALER_CROP_REGION));
captureBuilder.set(
CaptureRequest.SCALER_CROP_REGION,
captureRequestBuilder.get(CaptureRequest.SCALER_CROP_REGION));
captureBuilder.set(
CaptureRequest.JPEG_ORIENTATION,
lockedCaptureOrientation == null
Expand Down

0 comments on commit 5a37eab

Please sign in to comment.