HomeSort by relevance Sort by last modified time
    Searched refs:cropTop (Results 1 - 19 of 19) sorted by null

  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 178 int cropTop = (area.height() - cropHeight) / 2;
179 int cropBottom = cropTop + cropHeight;
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
188 int cropTop = 0;
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
JpegUtilNative.java 56 * <li>The image is cropped to the rectangle from (cropLeft, cropTop) to
87 * @param cropTop top-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);
251 int cropTop = crop.top;
252 cropTop = Math.max(cropTop, 0);
253 cropTop = Math.min(cropTop, img.getHeight() - 1)
    [all...]
  /packages/apps/Camera2/jni/
jpegutil.cpp 95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
103 int cropYLow = min(cropTop, cropBottom);
105 int cropYHigh = max(cropTop, cropBottom);
319 int cropLeft, int cropTop, int cropRight, int cropBottom,
326 finalHeight = cropBottom - cropTop;
331 finalWidth = cropBottom - cropTop;
334 finalWidth = cropBottom - cropTop;
352 cropLeft, cropTop, cropRight, cropBottom, rot90);
355 cropLeft / 2, cropTop / 2, cropRight / 2, cropBottom / 2, rot90);
jpegutil.h 51 static Transform ForCropFollowedByRotation(int cropLeft, int cropTop,
167 int cropLeft, int cropTop, int cropRight, int cropBottom,
jpegutilnative.cpp 38 * 1. The image is cropped to the rectangle from (cropLeft, cropTop) to
84 jint cropLeft, jint cropTop, jint cropRight, jint cropBottom,
99 cropLeft, cropTop, cropRight, cropBottom, //
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 210 int cropTop = 0;
214 cropTop = (cropHeight - cropWidth) / 2;
224 if (scaleFactor < 1.0f || cropLeft != 0 || cropTop != 0 || originalHasAlpha) {
238 final Rect src = new Rect(cropLeft, cropTop,
239 cropLeft + cropWidth, cropTop + cropHeight);
  /frameworks/av/media/libstagefright/include/media/stagefright/
ColorConverter.h 51 size_t cropLeft, size_t cropTop,
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 125 float cropTop = -edges.top / scale;
127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
CropView.java 125 float cropTop = -edges.top / scale;
127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 216 int32_t cropTop;
VideoDecoderVP8.cpp 87 mVideoFormatInfo.cropTop = data->codec_data->crop_top;
VideoDecoderBase.cpp     [all...]
VideoDecoderAVC.cpp 790 mVideoFormatInfo.cropTop = data->codec_data->crop_top;
    [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 65 size_t cropLeft, size_t cropTop,
73 mCropTop(cropTop),
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 731 final int cropTop = (layoutHeight - mCropSize) / 2;
733 final int cropBottom = cropTop + mCropSize;
737 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 704 int32_t cropLeft, cropTop, cropRight, cropBottom;
707 &cropTop,
710 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 786 uint32_t heightCropped = formatInfo->height - formatInfo->cropTop - formatInfo->cropBottom;
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]

Completed in 1067 milliseconds