old mode 100755new mode 100644.. | .. |
---|
61 | 61 | #define kUSED_INTERPOLATION_SIZE "used_interpolation_size" |
---|
62 | 62 | #define kSUPPORT_INTERPOLATION_SIZE "key_support_src_interpolation_size" |
---|
63 | 63 | #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" |
---|
64 | 68 | |
---|
65 | 69 | #define kUSED_FLASH_MODE "used_flash_mode" |
---|
66 | 70 | #define kSUPPORT_FLASH_MODE "key_support_flash_mode" |
---|
.. | .. |
---|
199 | 203 | bool supportInterpolationSize(); |
---|
200 | 204 | char* supportInterpolationSizeValue(); |
---|
201 | 205 | char* defaultInterpolationSizeValue(); |
---|
| 206 | + bool supportReducecallnumSize(); |
---|
| 207 | + char * supportReducecallnumSizeValue(); |
---|
| 208 | + char * defaultReducecallnumSizeValue(); |
---|
202 | 209 | |
---|
203 | 210 | bool supportFlashMode(); |
---|
204 | 211 | char* supportFlashModeValue(); |
---|
.. | .. |
---|
245 | 252 | return mDefaultExposureCompensation; |
---|
246 | 253 | } |
---|
247 | 254 | |
---|
| 255 | + char * ReduceCallNumValue() { |
---|
| 256 | + return mReduceCallNum; |
---|
| 257 | + } |
---|
248 | 258 | // zoom |
---|
249 | 259 | bool supportZoom() { |
---|
250 | 260 | return usedKey(mUsedZoom); |
---|
.. | .. |
---|
296 | 306 | MEMBER_DEF(PreviewSize) |
---|
297 | 307 | MEMBER_DEF(PictureSize) |
---|
298 | 308 | MEMBER_DEF(InterpolationSize) |
---|
| 309 | + MEMBER_DEF(ReducecallnumSize) |
---|
299 | 310 | MEMBER_DEF(FlashMode) |
---|
300 | 311 | MEMBER_DEF(ColorEffect) |
---|
301 | 312 | MEMBER_DEF(FrameRate) |
---|
.. | .. |
---|
309 | 320 | char mStepExposureCompensation[4]; |
---|
310 | 321 | char mDefaultExposureCompensation[4]; |
---|
311 | 322 | |
---|
| 323 | + char mReduceCallNum[4]; |
---|
312 | 324 | char mUsedZoom[2]; |
---|
313 | 325 | char mZoomSupported[8]; |
---|
314 | 326 | char mSmoothZoomSupported[8]; |
---|