Eaf, Adjust FHD size to 1920x1088(Eco service)

Adjust and relax the condition check to compatible with
more 3P apps with FHD size(From 1920 x1080 to 1920 x 1088).

Test: P22 Camera Test Checklist
Bug: 228521595
Change-Id: I51914de5151a42ce24599aded20c38580f2fab33
diff --git a/media/eco/ECOSession.cpp b/media/eco/ECOSession.cpp
index ea5d552..1a2e910 100644
--- a/media/eco/ECOSession.cpp
+++ b/media/eco/ECOSession.cpp
@@ -56,7 +56,7 @@
     // Only support up to 1080P.
     // TODO: Support the same resolution as in EAF.
     if (width <= 0 || height <= 0 || width > 5120 || height > 5120 ||
-        width > 1920 * 1080 / height) {
+        width > 1920 * 1088 / height) {
         ECOLOGE("Failed to create ECOSession with w: %d, h: %d, isCameraRecording: %d", width,
                 height, isCameraRecording);
         return nullptr;