File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 207
207
#define RKMODULE_SET_WB_GAIN \
208
208
_IOW('V', BASE_VIDIOC_PRIVATE + 47, struct rkmodule_wb_gain_group)
209
209
210
+ #define RKMODULE_SET_BLC \
211
+ _IOW('V', BASE_VIDIOC_PRIVATE + 48, struct rkmodule_blc_group)
212
+
210
213
struct rkmodule_i2cdev_info {
211
214
__u8 slave_addr ;
212
215
} __attribute__ ((packed ));
@@ -920,4 +923,19 @@ struct rkmodule_wb_gain_group {
920
923
struct rkmodule_wb_gain wb_gain [RKMODULE_MAX_WB_GAIN_GROUP ];
921
924
};
922
925
926
+ #define RKMODULE_MAX_BLC_GROUP (4)
927
+
928
+ enum rkmodule_blc_type {
929
+ RKMODULE_HCG_BLC ,
930
+ RKMODULE_LCG_BLC ,
931
+ RKMODULE_SPD_BLC ,
932
+ RKMODULE_VS_BLC ,
933
+ };
934
+
935
+ struct rkmodule_blc_group {
936
+ __u32 group_num ;
937
+ enum rkmodule_blc_type blc_type [RKMODULE_MAX_BLC_GROUP ];
938
+ __u32 blc [RKMODULE_MAX_BLC_GROUP ];
939
+ };
940
+
923
941
#endif /* _UAPI_RKMODULE_CAMERA_H */
You can’t perform that action at this time.
0 commit comments