diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-07-24 12:13:44 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-09-04 15:34:53 +0200 |
commit | 3e7b97b2b945b616de12ba466592820145976daf (patch) | |
tree | 35c95eb34f68f2dce01406edb80149e1093eada1 /isp/omap3isp-priv.h | |
parent | febcb53ca85d911619456c09c4be49fd73c4964b (diff) |
Add omap3_isp_pipeline structure
The structure will be used to handle pipelines. For now it only contains
the video output node structure.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r-- | isp/omap3isp-priv.h | 12 |
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; }; |