Searched refs:mCameraOrientation (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/
H A DWideAnglePanoramaModule.java132 private int mCameraOrientation; field in class:WideAnglePanoramaModule
363 mCameraOrientation = CameraUtil.getCameraOrientation(cameraId);
642 // mCameraOrientation is negative with respect to the front facing camera.
644 orientation = (mDeviceOrientationAtCapture - mCameraOrientation + 360) % 360;
646 orientation = (mDeviceOrientationAtCapture + mCameraOrientation) % 360;
655 return mCameraOrientation;
/packages/apps/Camera/src/com/android/camera/
H A DPanoramaModule.java165 private int mCameraOrientation; field in class:PanoramaModule
362 mCameraOrientation = Util.getCameraOrientation(cameraId);
789 // mCameraOrientation is negative with respect to the front facing camera.
791 orientation = (mDeviceOrientationAtCapture - mCameraOrientation + 360) % 360;
793 orientation = (mDeviceOrientationAtCapture + mCameraOrientation) % 360;
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java178 private int mCameraOrientation; field in class:PanoramaActivity
368 mCameraOrientation = Util.getCameraOrientation(backCameraId);
858 int orientation = (mDeviceOrientationAtCapture + mCameraOrientation) % 360;

Completed in 15 milliseconds