summaryrefslogtreecommitdiff
path: root/isp/omap3isp-priv.h
diff options
context:
space:
mode:
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r--isp/omap3isp-priv.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h
index fe03d96..3e78acc 100644
--- a/isp/omap3isp-priv.h
+++ b/isp/omap3isp-priv.h
@@ -49,6 +49,14 @@ struct omap3_isp_video {
bool running;
};
+/*
+ * struct omap3_isp_pipeline - OMAP3 pipeline
+ * @output: Video device at the output of the pipeline
+ */
+struct omap3_isp_pipeline {
+ struct omap3_isp_video output;
+};
+
struct omap3_isp_device {
struct media_device *mdev;
@@ -59,8 +67,8 @@ struct omap3_isp_device {
struct v4l2_mbus_framefmt sensor_format;
- struct omap3_isp_video viewfinder;
- struct omap3_isp_video snapshot;
+ struct omap3_isp_pipeline viewfinder;
+ struct omap3_isp_pipeline snapshot;
const struct omap3_isp_operations *ops;
};