Searched defs:rot90 (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/jni/
H A Djpegutilnative.cpp44 * 90-degrees are suppored, so the parameter 'rot90' specifies which multiple
66 * @param rot90 the multiple of 90 to rotate by
85 /** Rotation (multiple of 90). For example, rot90 = 1 implies a 90 degree
87 jint rot90) {
100 rot90);
115 * @param rot90 the multiple of 90 degrees to rotate, one of {0, 1, 2, 3}.
120 jint pStride, jint rStride, jobject outBitmap, jint rot90) {
126 if (rot90 == 0) {
137 } else if (rot90 == 1) {
146 } else if (rot90
69 Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative( JNIEnv* env, jclass clazz, jint width, jint height, jobject yBuf, jint yPStride, jint yRStride, jobject cbBuf, jint cbPStride, jint cbRStride, jobject crBuf, jint crPStride, jint crRStride, jobject outBuf, jint outBufCapacity, jint quality, jint cropLeft, jint cropTop, jint cropRight, jint cropBottom, jint rot90) argument
118 Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap( JNIEnv* env, jclass clazz, jint width, jint height, jobject planeBuf, jint pStride, jint rStride, jobject outBitmap, jint rot90) argument
[all...]
H A Djpegutil.cpp95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
106 rot90 %= 4;
107 if (rot90 == 0) {
109 } else if (rot90 == 1) {
111 } else if (rot90 == 2) {
113 } else if (rot90 == 3) {
320 /** Rotation (multiple of 90). For example, rot90 = 1 implies a 90 degree
322 int rot90) {
328 rot90 %= 4;
330 if (rot90
94 ForCropFollowedByRotation( int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
305 Compress( int width, int height, unsigned char* yBuf, int yPStride, int yRStride, unsigned char* cbBuf, int cbPStride, int cbRStride, unsigned char* crBuf, int crPStride, int crRStride, unsigned char* outBuf, size_t outBufCapacity, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/util/
H A DJpegUtilNative.java62 * 90-degrees are suppored, so the parameter 'rot90' specifies which
93 * @param rot90 the multiple of 90 to rotate the image CCW (after cropping)
103 int rot90);
116 * @param rot90 the multiple of 90 degrees to rotate counterclockwise, one
120 int pStride, int rStride, Object outBitmap, int rot90);
122 public static void copyImagePlaneToBitmap(ImageProxy.Plane plane, Bitmap bitmap, int rot90) { argument
131 plane.getRowStride(), bitmap, rot90);
145 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
157 cropLeft, cropTop, cropRight, cropBottom, rot90));
160 quality, cropLeft, cropTop, cropRight, cropBottom, rot90);
95 compressJpegFromYUV420pNative( int width, int height, Object yBuf, int yPStride, int yRStride, Object cbBuf, int cbPStride, int cbRStride, Object crBuf, int crPStride, int crRStride, Object outBuf, int outBufCapacity, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
119 copyImagePlaneToBitmap(int width, int height, Object planeBuf, int pStride, int rStride, Object outBitmap, int rot90) argument
139 compressJpegFromYUV420p( int width, int height, ByteBuffer yBuf, int yPStride, int yRStride, ByteBuffer cbBuf, int cbPStride, int cbRStride, ByteBuffer crBuf, int crPStride, int crRStride, ByteBuffer outBuf, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
[all...]

Completed in 124 milliseconds