Home
last modified time | relevance | path

Searched refs:jpegRotation (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DCameraView.java170 int jpegRotation = Surface.ROTATION_0; in takePicture() local
173 jpegRotation = Surface.ROTATION_0; in takePicture()
176 jpegRotation = Surface.ROTATION_90; in takePicture()
179 jpegRotation = Surface.ROTATION_270; in takePicture()
182 jpegRotation = Surface.ROTATION_180; in takePicture()
186 mCameraOps.captureStillPicture(jpegRotation, name, mContext.getContentResolver()); in takePicture()
/aosp12/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DCameraView.java171 int jpegRotation = Surface.ROTATION_0; in takePicture() local
174 jpegRotation = Surface.ROTATION_0; in takePicture()
177 jpegRotation = Surface.ROTATION_90; in takePicture()
180 jpegRotation = Surface.ROTATION_270; in takePicture()
183 jpegRotation = Surface.ROTATION_180; in takePicture()
187 mCameraOps.captureStillPicture(jpegRotation, name, mContext, mode); in takePicture()
/aosp12/frameworks/base/core/java/android/hardware/camera2/extension/
H A DISessionProcessorImpl.aidl33 int startCapture(in ICaptureCallback callback, int jpegRotation, int jpegQuality); in startCapture() argument
/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraAdvancedExtensionSessionImpl.java393 Integer jpegRotation = request.get(CaptureRequest.JPEG_ORIENTATION); in capture() local
394 if (jpegRotation == null) { in capture()
395 jpegRotation = CameraExtensionUtils.JPEG_DEFAULT_ROTATION; in capture()
403 executor, listener), jpegRotation, jpegQuality); in capture()
H A DCameraExtensionSessionImpl.java493 Integer jpegRotation = clientRequest.get(CaptureRequest.JPEG_ORIENTATION); in createBurstRequest() local
494 if (jpegRotation != null) { in createBurstRequest()
495 captureStage.parameters.set(CaptureRequest.JPEG_ORIENTATION, jpegRotation); in createBurstRequest()
/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp375 jpegRotation = 0; in initialize()
377 jpegRotation); in initialize()
1659 validatedParams.jpegRotation = in set()
1661 if (validatedParams.jpegRotation != 0 && in set()
1662 validatedParams.jpegRotation != 90 && in set()
1663 validatedParams.jpegRotation != 180 && in set()
1664 validatedParams.jpegRotation != 270) { in set()
1666 __FUNCTION__, validatedParams.jpegRotation); in set()
2371 &jpegRotation, 1); in updateRequestJpeg()
H A DParameters.h65 int32_t jpegRotation; member
/aosp12/frameworks/base/packages/services/CameraExtensionsProxy/src/com/android/cameraextensions/
H A DCameraExtensionsProxyService.java1132 public int startCapture(ICaptureCallback callback, int jpegRotation, int jpegQuality) { in startCapture() argument
1134 paramMap.put(CaptureRequest.JPEG_ORIENTATION, jpegRotation); in startCapture()
/aosp12/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp203 result.appendFormat(" Jpeg rotation: %d\n", p.jpegRotation); in dumpClient()