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

  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 179 int cropBottom = cropTop + cropHeight;
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
189 int cropBottom = area.height();
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
JpegUtilNative.java 57 * (cropRight - 1, cropBottom - 1). So, a cropping-rectangle of (0, 0) -
91 * @param cropBottom bottom-edge of the bounds of the image to crop to
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);
  /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
100 cropBottom -= 1;
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)
    [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) {
50 if (cropBottom) {
  /frameworks/av/include/media/stagefright/
ColorConverter.h 52 size_t cropRight, size_t cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 216 int32_t cropBottom;
VideoDecoderMPEG2.cpp 366 mVideoFormatInfo.cropBottom = (data->codec_data->frame_height > mVideoFormatInfo.height) ?
VideoDecoderVP8.cpp 85 mVideoFormatInfo.cropBottom = data->codec_data->crop_bottom;
VideoDecoderWMV.cpp 482 mVideoFormatInfo.cropBottom = data->se_data->CODED_HEIGHT > mVideoFormatInfo.height ?
VideoDecoderMPEG4.cpp 611 mVideoFormatInfo.cropBottom = data->codec_data.video_object_layer_height > mVideoFormatInfo.height ?
VideoDecoderBase.cpp     [all...]
VideoDecoderAVC.cpp 763 mVideoFormatInfo.cropBottom = data->codec_data->crop_bottom;
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /frameworks/av/media/libstagefright/
Utils.cpp 135 int32_t cropLeft, cropTop, cropRight, cropBottom;
140 &cropBottom)) {
141 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
590 int32_t cropLeft, cropTop, cropRight, cropBottom;
595 &cropBottom)) {
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)
68 mCropBottom(cropBottom) {
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 762 final int cropBottom = cropTop + 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 702 uint32_t heightCropped = formatInfo->height - formatInfo->cropTop - formatInfo->cropBottom;
    [all...]

Completed in 349 milliseconds