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

/packages/apps/Camera2/jni/
H A Djpegutilnative.cpp39 * (cropRight - 1, cropBottom - 1). So, a cropping-rectangle of (0, 0) -
84 jint cropLeft, jint cropTop, jint cropRight, jint cropBottom,
99 cropLeft, cropTop, cropRight, cropBottom, //
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
H A Djpegutil.cpp95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
96 // The input crop-region excludes cropRight and cropBottom, so transform the
99 cropRight -= 1;
102 int cropXLow = min(cropLeft, cropRight);
104 int cropXHigh = max(cropLeft, cropRight);
319 int cropLeft, int cropTop, int cropRight, int cropBottom,
325 finalWidth = cropRight - cropLeft;
332 finalHeight = cropRight - cropLeft;
335 finalHeight = cropRight - cropLeft;
352 cropLeft, cropTop, cropRight, cropBotto
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.java57 * (cropRight - 1, cropBottom - 1). So, a cropping-rectangle of (0, 0) -
89 * @param cropRight right-edge of the bounds of the image to crop to before
102 int cropLeft, int cropTop, int cropRight, int cropBottom,
145 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
157 cropLeft, cropTop, cropRight, cropBottom, rot90));
160 quality, cropLeft, cropTop, cropRight, cropBottom, rot90);
247 int cropRight = crop.right;
248 cropRight = Math.max(cropRight, 0);
249 cropRight
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
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 73 milliseconds