Searched defs:originalHeight (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
H A DTaskCompressImageToJpeg.java429 * @param originalHeight the height of the original image captured from the
434 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, argument
438 return new Size(originalWidth, originalHeight);
441 return new Size(originalHeight, originalWidth);
444 return new Size(originalWidth, originalHeight);
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
H A DDrawableDownloader.java80 public BitmapItem(int originalWidth, int originalHeight) { argument
82 mOriginalHeight = originalHeight;
/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraZslImpl.java987 * @param originalHeight the height of the original image captured from the
992 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, argument
995 return new Size(originalWidth, originalHeight);
997 return new Size(originalHeight, originalWidth);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DGeometryMathUtils.java374 float originalHeight, float viewWidth, float viewHeight) {
381 (int) originalHeight, (int) viewWidth, (int) viewHeight);
372 getOriginalToScreen(GeometryHolder holder, boolean rotate, float originalWidth, float originalHeight, float viewWidth, float viewHeight) argument

Completed in 181 milliseconds