Revert "Enable input window rotation flag"

This reverts commit 2919858e097178a240e0736399dfef8f18bdc31e.

Reason for revert: This is causing touches on foldable/large screen devices to be registered in the incorrect orientation. b/195617582

Bug: 195617582
Change-Id: I3659d8b19990eb85caa327ccab98f07692ac1f01
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp
index 5137a7e..0192f6c 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -3060,7 +3060,7 @@
 
 bool enablePerWindowInputRotation() {
     static bool value =
-            android::base::GetBoolProperty("persist.debug.per_window_input_rotation", true);
+            android::base::GetBoolProperty("persist.debug.per_window_input_rotation", false);
     return value;
 }