summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimmy Li <timmyli@google.com>2023-11-27 20:18:13 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-11-27 20:18:13 +0000
commitaa41c35a88415cf0ade50debd76fa8631c72e5b7 (patch)
tree89db03d35f0b0f15a4cb65e8c3473a987ab6bc55
parentaa8ebe114f6ce1182e557dd04a9cad831103b4cc (diff)
parent6cd97ce9d044de02559cc42b7ba53c5e048b3a5b (diff)
downloadcamera-aa41c35a88415cf0ade50debd76fa8631c72e5b7.tar.gz
Merge "Add log to include video_fps_throttle flag" into main
-rw-r--r--common/hal/utils/utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/hal/utils/utils.cc b/common/hal/utils/utils.cc
index 605cf92..f2d8122 100644
--- a/common/hal/utils/utils.cc
+++ b/common/hal/utils/utils.cc
@@ -430,9 +430,9 @@ bool IsSessionParameterCompatible(const HalCameraMetadata* old_session,
if (old_max_fps == new_max_fps || ignore_fps_range_diff) {
ALOGI(
"%s: Ignore fps (%d, %d) to (%d, %d). "
- "video_60_to_30fps_thermal_throttle: %u",
+ "video_60_to_30fps_thermal_throttle: %u. video_fps_throttle: %u.",
__FUNCTION__, old_min_fps, old_max_fps, new_min_fps, new_max_fps,
- video_60_to_30fps_thermal_throttle);
+ video_60_to_30fps_thermal_throttle, video_fps_throttle);
continue;
}