CTS android.hardware.cts.CameraG
此fail可以说是折磨了我半年以上,关于摄像头帧率问题,FAE也调得没有什么头绪,改几版本进去又是一天。按照此修改可以说之后的摄像头过GMS都完全规避此CTS fail。
--- a/frameworks/base/core/java/android/hardware/Camera.java
+++ b/frameworks/base/core/java/android/hardware/Camera.java
@@ -40,6 +40,7 @@ import android.os.Message;
import android.os.RemoteException; import android.os.ServiceManager;
import android.os.SystemProperties;
+import android.os.SystemProperties;
import android.renderscript.Allocation; import android.renderscript.Element;
import android.renderscript.RenderScript;
@@ -4327,6 +4328,11 @@
public class Camera {
*/ public ListgetSupportedPreviewFpsRange() {
String str = get(KEY_PREVIEW_FPS_RANGE + SUPPORTED_VALUES_SUFFIX);
+ Log.d("camera","111-----supported frame rates = "+str);
+ if("true".equals(SystemProperties.get("sys.cts.cameraGLSurfaceView","false"))){
+ str = "(5000,30000)";
+ }
+ Log.d("camera","222---supported frame rates = "+str);
return splitRange(str);
}
diff --git
a/frameworks/base/services/core/java/com/android/server/am/ActivityStarter.java
b/frameworks/base/services/core/java/com/android/server/am/ActivityStarter.java
old mode 100644
new mode 100755
index 725778a..06efb4d
--- a/frameworks/base/services/core/java/com/android/server/am/ActivityStarter.java
+++ b/frameworks/base/services/core/java/com/android/server/am/ActivityStarter.java
@@ -120,6 +120,7 @@ import com.android.internal.app.HeavyWeightSwitcherActivity;
import com.android.internal.app.IVoiceInteractor;
import com.android.server.am.ActivityStackSupervisor.PendingActivityLaunch;
import com.android.server.wm.WindowManagerService;
+import android.os.SystemProperties;
import java.util.ArrayList;
@@ -259,6 +260,15 @@ class ActivityStarter {
Display.DEFAULT_DISPLAY : mSupervisor.mFocusedStack.mDisplayId) :
(container.mActivityDisplay == null ? Display.DEFAULT_DISPLAY :
container.mActivityDisplay.mDisplayId)));
+ ComponentName SetupCmpName = intent.getComponent();
+ String GLSurfaceViewCtsCamera = "android.camera.cts/android.hardware.cts.GLSurfaceViewCtsActivity";
+ if(SetupCmpName != null && GLSurfaceViewCtsCamera.equals(SetupCmpName.flattenToShortString())) {
+ SystemProperties.set("sys.cts.cameraGLSurfaceView","true");
+ }else{
+ if("true".equals(SystemProperties.get("sys.cts.cameraGLSurfaceView"))){
+ SystemProperties.set("sys.cts.cameraGLSurfaceView","");
+ }
+ }
}
ActivityRecord sourceRecord = null;