Home
last modified time | relevance | path

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

/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
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()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
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()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp358 jpegRotation = 0; in initialize()
360 jpegRotation); in initialize()
1661 validatedParams.jpegRotation = in set()
1663 if (validatedParams.jpegRotation != 0 && in set()
1664 validatedParams.jpegRotation != 90 && in set()
1665 validatedParams.jpegRotation != 180 && in set()
1666 validatedParams.jpegRotation != 270) { in set()
1668 __FUNCTION__, validatedParams.jpegRotation); in set()
2352 &jpegRotation, 1); in updateRequestJpeg()
DParameters.h63 int32_t jpegRotation; member
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp200 result.appendFormat(" Jpeg rotation: %d\n", p.jpegRotation); in dumpClient()