facetimehd: Add control for auto white balance

Signed-off-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
This commit is contained in:
Patrik Jakobsson
2015-12-06 14:47:26 +01:00
parent eb3e43505d
commit 2b45fb581a
3 changed files with 24 additions and 0 deletions

View File

@@ -702,10 +702,15 @@ struct isp_cmd_channel_hue_set {
u32 contrast;
};
struct isp_cmd_channel {
u32 channel;
};
struct isp_cmd_channel_buffer_return {
u32 channel;
};
struct fthd_isp_debug_cmd {
u32 show_errors;
u32 arg[64];
@@ -762,6 +767,7 @@ extern int fthd_isp_cmd_channel_brightness_set(struct fthd_private *dev_priv, in
extern int fthd_isp_cmd_channel_contrast_set(struct fthd_private *dev_priv, int channel, int contrast);
extern int fthd_isp_cmd_channel_saturation_set(struct fthd_private *dev_priv, int channel, int saturation);
extern int fthd_isp_cmd_channel_hue_set(struct fthd_private *dev_priv, int channel, int hue);
extern int fthd_isp_cmd_channel_awb(struct fthd_private *dev_priv, int channel, int hue);
extern int fthd_isp_cmd_channel_buffer_return(struct fthd_private *dev_priv, int channel);
extern int fthd_start_channel(struct fthd_private *dev_priv, int channel);
extern int fthd_stop_channel(struct fthd_private *dev_priv, int channel);