Home
last modified time | relevance | path

Searched refs:getJpegRotation (Results 1 – 10 of 10) sorted by relevance

/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL/
H A DQCameraParametersIntf.h280 uint32_t getJpegRotation();
H A DQCameraPostProc.cpp562 encode_parm.rotation = m_parent->mParameters.getJpegRotation(); in getJpegEncodingConfig()
666 if (((90 == m_parent->mParameters.getJpegRotation()) in getJpegEncodingConfig()
667 || (270 == m_parent->mParameters.getJpegRotation())) in getJpegEncodingConfig()
713 encode_parm.thumb_rotation = m_parent->mParameters.getJpegRotation(); in getJpegEncodingConfig()
720 m_parent->mParameters.getJpegRotation() == 0); in getJpegEncodingConfig()
2657 uint32_t jpeg_rotation = m_parent->mParameters.getJpegRotation(); in encodeData()
H A DQCameraParametersIntf.cpp1312 uint32_t QCameraParametersIntf::getJpegRotation() in getJpegRotation() function in qcamera::QCameraParametersIntf
1316 return mImpl->getJpegRotation(); in getJpegRotation()
H A DQCameraParameters.h863 uint32_t getJpegRotation() { return mJpegRotation;}; in getJpegRotation() function
H A DQCamera2HWI.cpp5301 rc = mParameters.addOnlineRotation(mParameters.getJpegRotation(), streamId, in configureOnlineRotation()
8312 uint32_t rotation = mParameters.getJpegRotation(); in getPPConfig()
9944 (mParameters.getJpegRotation() > 0)) { in needRotationReprocess()
9947 mParameters.getJpegRotation()); in needRotationReprocess()
H A DQCamera2HWICallbacks.cpp2036 uint32_t prmRotation = mParameters.getJpegRotation(); in updateMetadata()
H A DQCameraParameters.cpp15079 snprintf(s, 128, "getJpegRotation: %u\n", getJpegRotation()); in dump()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraZslImpl.java614 int degrees = CameraUtil.getJpegRotation(captureParams.orientation, mCharacteristics); in savePicture()
825 CameraUtil.getJpegRotation(params.orientation, mCharacteristics)); in sendSingleRequest()
H A DOneCameraImpl.java402 CameraUtil.getJpegRotation(params.orientation, mCharacteristics)); in takePictureNow()
/aosp12/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java1290 public static int getJpegRotation(int deviceOrientationDegrees, in getJpegRotation() method in CameraUtil