summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Chiu <chiucharles@google.com>2022-05-03 17:04:35 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-05-03 17:04:35 +0000
commitef338e70778ca7416374392acb6b5c1cae6c30cc (patch)
tree886f761919f0e077eefd25bd01ba79da6ab38372
parent2033451c902c6172ffc4ec34ea2370a5843e4b63 (diff)
parent46460e35bab1fe12c3a710eff39d9bec7daf1e56 (diff)
downloadav-ef338e70778ca7416374392acb6b5c1cae6c30cc.tar.gz
Eaf, Adjust FHD size to 1920x1088(Eco service) am: 46460e35ba
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/google/av/+/17859443 Change-Id: I899122910da24714e919df757919338614fdde21 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--media/eco/ECOSession.cpp2
1 files changed, 1 insertions, 1 deletions
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 @@ sp<ECOSession> ECOSession::createECOSession(int32_t width, int32_t height, bool
// 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;