From f5abf2bebe9969b19a92d9d7cfca58cfbe3c34f4 Mon Sep 17 00:00:00 2001 From: Steve Kondik Date: Mon, 23 Dec 2013 22:58:07 -0800 Subject: camera: Proper fix for the missing video-sizes issue * Just honor the defined camcorder profiles. Change-Id: I83e8fe2ca9bb489332f37767906bc7c56389f949 --- src/com/android/camera/CameraSettings.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/com/android') diff --git a/src/com/android/camera/CameraSettings.java b/src/com/android/camera/CameraSettings.java index f423a8dcf..13849126c 100644 --- a/src/com/android/camera/CameraSettings.java +++ b/src/com/android/camera/CameraSettings.java @@ -1128,6 +1128,10 @@ public class CameraSettings { } private static boolean checkSupportedVideoQuality(Parameters parameters,int width, int height){ List supported = parameters.getSupportedVideoSizes(); + if (supported == null) { + // video-size not specified in parameter list. just go along with the profile. + return true; + } int flag = 0; for (Size size : supported){ //since we are having two profiles with same height, we are checking with height @@ -1151,8 +1155,7 @@ public class CameraSettings { private static ArrayList getSupportedVideoQuality(int cameraId,Parameters parameters) { ArrayList supported = new ArrayList(); // Check for supported quality - if (ApiHelper.HAS_FINE_RESOLUTION_QUALITY_LEVELS && - parameters.getSupportedVideoSizes() != null) { + if (ApiHelper.HAS_FINE_RESOLUTION_QUALITY_LEVELS) { getFineResolutionQuality(supported,cameraId,parameters); } else { supported.add(Integer.toString(CamcorderProfile.QUALITY_HIGH)); -- cgit v1.2.3