HomeSort by relevance Sort by last modified time
    Searched refs:cropRight (Results 1 - 22 of 22) 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...]
jpegutil.h 52 int cropRight, int cropBottom,
167 int cropLeft, int cropTop, int cropRight, int cropBottom,
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, //
  /frameworks/av/media/libstagefright/include/media/stagefright/
ColorConverter.h 54 size_t cropRight, size_t cropBottom,
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 215 int32_t cropRight;
VideoDecoderMPEG2.cpp 381 mVideoFormatInfo.cropRight = (data->codec_data->frame_width > mVideoFormatInfo.width) ?
VideoDecoderVP8.cpp 86 mVideoFormatInfo.cropRight = data->codec_data->crop_right;
VideoDecoderWMV.cpp 497 mVideoFormatInfo.cropRight = data->se_data->CODED_WIDTH > mVideoFormatInfo.width ?
VideoDecoderMPEG4.cpp 626 mVideoFormatInfo.cropRight = data->codec_data.video_object_layer_width > mVideoFormatInfo.width ?
VideoDecoderBase.cpp     [all...]
VideoDecoderAVC.cpp 789 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 693 int32_t cropLeft, cropTop, cropRight, cropBottom;
697 &cropRight,
699 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 92 size_t cropRight, size_t cropBottom,
100 mCropRight(cropRight),
  /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...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 785 uint32_t widthCropped = formatInfo->width - formatInfo->cropLeft - formatInfo->cropRight;
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]

Completed in 4372 milliseconds