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

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
SurfaceTargetFilter.java 150 float currentAspectRatio = (float)input.getFormat().getWidth() / input.getFormat().getHeight();
151 if (currentAspectRatio != mAspectRatio) {
152 if (mLogVerbose) Log.v(TAG, "New aspect ratio: " + currentAspectRatio +", previously: " + mAspectRatio);
153 mAspectRatio = currentAspectRatio;
SurfaceRenderFilter.java 158 float currentAspectRatio = (float)input.getFormat().getWidth() / input.getFormat().getHeight();
159 if (currentAspectRatio != mAspectRatio) {
160 if (mLogVerbose) Log.v(TAG, "New aspect ratio: " + currentAspectRatio +", previously: " + mAspectRatio);
161 mAspectRatio = currentAspectRatio;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
SurfaceTextureTarget.java 215 float currentAspectRatio =
217 if (currentAspectRatio != mAspectRatio) {
219 Log.v(TAG, "Process. New aspect ratio: " + currentAspectRatio +
222 mAspectRatio = currentAspectRatio;
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 432 float currentAspectRatio = width * 1.0f / height;
434 if (currentAspectRatio > aspectRatio) {
441 } else if (currentAspectRatio < aspectRatio) {
    [all...]

Completed in 88 milliseconds