HomeSort by relevance Sort by last modified time
    Searched refs:cropRight (Results 1 - 21 of 21) 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,
  /frameworks/av/include/media/stagefright/
ColorConverter.h 52 size_t cropRight, size_t cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 215 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 776 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/WallpaperPicker/src/com/android/wallpaperpicker/
CropView.java 126 float cropRight = cropLeft + getWidth() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /frameworks/av/media/libstagefright/
Utils.cpp 662 int32_t cropLeft, cropTop, cropRight, cropBottom;
666 &cropRight,
668 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 65 size_t cropRight, size_t cropBottom)
71 mCropRight(cropRight),
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 732 final int cropRight = cropLeft + mCropSize;
737 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 784 uint32_t widthCropped = formatInfo->width - formatInfo->cropLeft - formatInfo->cropRight;
    [all...]

Completed in 6209 milliseconds