Increase auto-recenter rotation threshold to 10.5 deg

As per UX request, auto-recentering threshold needs to be adjusted to
be less sensitive (and thus trigger more often).

Test: Manual verification
Fixes: 219953523
Change-Id: Idbc0892673a53a5ffd4acf7366d1d05a5ff16545
Merged-In: Idbc0892673a53a5ffd4acf7366d1d05a5ff16545
(cherry picked from commit 08fb6ad38428e12cbd9f9767103da9d4ddf2f8b6)
diff --git a/services/audiopolicy/service/SpatializerPoseController.cpp b/services/audiopolicy/service/SpatializerPoseController.cpp
index 6a3c9d1..58a57ac 100644
--- a/services/audiopolicy/service/SpatializerPoseController.cpp
+++ b/services/audiopolicy/service/SpatializerPoseController.cpp
@@ -57,7 +57,7 @@
 constexpr float kAutoRecenterTranslationThreshold = 0.1f;
 
 // Auto-recenter considers head not still if rotated by this much (in radians, approx).
-constexpr float kAutoRecenterRotationThreshold = 7.0f / 180 * M_PI;
+constexpr float kAutoRecenterRotationThreshold = 10.5f / 180 * M_PI;
 
 // Screen is considered to be unstable (not still) if it has moved significantly within the last
 // time window of this duration.