liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
android/hardware/aw/camera/3_4/camera_config.h
old mode 100755new mode 100644
....@@ -61,6 +61,10 @@
6161 #define kUSED_INTERPOLATION_SIZE "used_interpolation_size"
6262 #define kSUPPORT_INTERPOLATION_SIZE "key_support_src_interpolation_size"
6363 #define kDEFAULT_INTERPOLATION_SIZE "key_default_dst_interpolation_size"
64
+#define kREDUCE_CALL_NUM "key_reduce_call_num"
65
+#define kUSED_REDUCECALLNUM_SIZE "used_reducecallnum_size"
66
+#define kSUPPORT_REDUCECALLNUM_SIZE "key_support_src_reducecallnum_size"
67
+#define kDEFAULT_REDUCECALLNUM_SIZE "key_default_dst_reducecallnum_size"
6468
6569 #define kUSED_FLASH_MODE "used_flash_mode"
6670 #define kSUPPORT_FLASH_MODE "key_support_flash_mode"
....@@ -199,6 +203,9 @@
199203 bool supportInterpolationSize();
200204 char* supportInterpolationSizeValue();
201205 char* defaultInterpolationSizeValue();
206
+ bool supportReducecallnumSize();
207
+ char * supportReducecallnumSizeValue();
208
+ char * defaultReducecallnumSizeValue();
202209
203210 bool supportFlashMode();
204211 char* supportFlashModeValue();
....@@ -245,6 +252,9 @@
245252 return mDefaultExposureCompensation;
246253 }
247254
255
+ char * ReduceCallNumValue() {
256
+ return mReduceCallNum;
257
+ }
248258 // zoom
249259 bool supportZoom() {
250260 return usedKey(mUsedZoom);
....@@ -296,6 +306,7 @@
296306 MEMBER_DEF(PreviewSize)
297307 MEMBER_DEF(PictureSize)
298308 MEMBER_DEF(InterpolationSize)
309
+ MEMBER_DEF(ReducecallnumSize)
299310 MEMBER_DEF(FlashMode)
300311 MEMBER_DEF(ColorEffect)
301312 MEMBER_DEF(FrameRate)
....@@ -309,6 +320,7 @@
309320 char mStepExposureCompensation[4];
310321 char mDefaultExposureCompensation[4];
311322
323
+ char mReduceCallNum[4];
312324 char mUsedZoom[2];
313325 char mZoomSupported[8];
314326 char mSmoothZoomSupported[8];