HomeSort by relevance Sort by last modified time
    Searched refs:currentAspectRatio (Results 1 - 6 of 6) 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/
PhotoModule.java 541 final AspectRatioSelector.AspectRatio currentAspectRatio;
543 currentAspectRatio = AspectRatioSelector.AspectRatio.ASPECT_RATIO_4x3;
545 currentAspectRatio = AspectRatioSelector.AspectRatio.ASPECT_RATIO_16x9;
587 return currentAspectRatio;
610 if (newAspectRatio != currentAspectRatio) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 416 float currentAspectRatio = width * 1.0f / height;
418 if (currentAspectRatio > aspectRatio) {
425 } else if (currentAspectRatio < aspectRatio) {
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 801 milliseconds