Home
last modified time | relevance | path

Searched refs:cropHeight (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp75 size_t ColorConverter::BitmapParams::cropHeight() const { in cropHeight() function in android::ColorConverter::BitmapParams
143 && src.cropHeight() == dst.cropHeight())) { in convertCbYCrY()
153 for (size_t y = 0; y < src.cropHeight(); ++y) { in convertCbYCrY()
203 && src.cropHeight() == dst.cropHeight())) { in convertYUV420Planar()
222 for (size_t y = 0; y < src.cropHeight(); ++y) { in convertYUV420Planar()
299 && src.cropHeight() == dst.cropHeight())) { in convertQCOMYUV420SemiPlanar()
313 for (size_t y = 0; y < src.cropHeight(); ++y) { in convertQCOMYUV420SemiPlanar()
373 && src.cropHeight() == dst.cropHeight())) { in convertYUV420SemiPlanar()
387 for (size_t y = 0; y < src.cropHeight(); ++y) { in convertYUV420SemiPlanar()
445 && src.cropHeight() == dst.cropHeight())) { in convertTIYUV420PackedSemiPlanar()
[all …]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCamera2Settings.java561 float cropHeight, cropWidth; in effectiveCropRectFromRequested() local
564 cropHeight = requestedCrop.height(); in effectiveCropRectFromRequested()
565 cropWidth = cropHeight * aspectRatioPreview; in effectiveCropRectFromRequested()
569 cropHeight = cropWidth / aspectRatioPreview; in effectiveCropRectFromRequested()
573 RectF cropRect = new RectF(/*left*/0, /*top*/0, cropWidth, cropHeight); in effectiveCropRectFromRequested()
/frameworks/av/include/media/stagefright/
DColorConverter.h55 size_t cropHeight() const;
/frameworks/base/core/java/android/app/
DWallpaperManager.java555 float cropHeight = outHeight * (inWidth / (float) outWidth); in getMaxCropRect() local
556 cropRect.top = (inHeight - cropHeight) * verticalAlignment; in getMaxCropRect()
557 cropRect.bottom = cropRect.top + cropHeight; in getMaxCropRect()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java6355 int cropHeight = (int)((float)height / (float)width * frame.width()); in screenshotApplicationsInner() local
6356 crop.bottom = crop.top + cropHeight; in screenshotApplicationsInner()