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

  /packages/apps/Camera2/src/com/android/camera/util/
JpegUtilNative.java 57 * (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 = Math.min(cropRight, img.getWidth())
    [all...]
AspectRatio.java 181 int cropRight = area.width();
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
187 int cropRight = cropLeft + cropWidth;
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/Camera2/jni/
jpegutil.cpp 95 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, cropBottom, rot90)
    [all...]
jpegutilnative.cpp 39 * (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, //
jpegutil.h 52 int cropRight, int cropBottom,
167 int cropLeft, int cropTop, int cropRight, int cropBottom,
  /packages/apps/Launcher3/src/com/android/launcher3/
BorderCropDrawable.java 31 boolean cropTop, boolean cropRight, boolean cropBottom) {
46 if (cropRight) {
  /frameworks/av/include/media/stagefright/
ColorConverter.h 52 size_t cropRight, size_t cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 214 int32_t cropRight;
VideoDecoderMPEG2.cpp 368 mVideoFormatInfo.cropRight = (data->codec_data->frame_width > mVideoFormatInfo.width) ?
VideoDecoderVP8.cpp 83 mVideoFormatInfo.cropRight = data->codec_data->crop_right;
VideoDecoderWMV.cpp 484 mVideoFormatInfo.cropRight = data->se_data->CODED_WIDTH > mVideoFormatInfo.width ?
VideoDecoderMPEG4.cpp 613 mVideoFormatInfo.cropRight = data->codec_data.video_object_layer_width > mVideoFormatInfo.width ?
VideoDecoderBase.cpp     [all...]
VideoDecoderAVC.cpp 761 mVideoFormatInfo.cropRight = data->codec_data->crop_right;
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 126 float cropRight = cropLeft + getWidth() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 126 float cropRight = cropLeft + getWidth() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /frameworks/av/media/libstagefright/
Utils.cpp 135 int32_t cropLeft, cropTop, cropRight, cropBottom;
139 &cropRight,
141 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
590 int32_t cropLeft, cropTop, cropRight, cropBottom;
594 &cropRight,
596 meta->setRect(kKeyCropRect, cropLeft, cropTop, cropRight, cropBottom);
AwesomePlayer.cpp     [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 61 size_t cropRight, size_t cropBottom)
67 mCropRight(cropRight),
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 761 final int cropRight = cropLeft + mCropSize;
766 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 701 uint32_t widthCropped = formatInfo->width - formatInfo->cropLeft - formatInfo->cropRight;
    [all...]

Completed in 987 milliseconds