diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-07-04 16:02:19 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-10-20 21:28:24 +0200 |
commit | 51e34d1d5a4a18b8f918eaf9a6e9adf6ea1dcc76 (patch) | |
tree | 3d37964b414b08c9a717a3d028a1b1c0aae68273 /isp/omap3isp-priv.h | |
parent | 0ad854915eba288d17a9c9779c8deed831e74fec (diff) |
isp: Add support for memory-to-memory pipelines
Make building and trying format possible on a pipeline that starts with
a video node.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r-- | isp/omap3isp-priv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h index 2d639e1..c9f73a1 100644 --- a/isp/omap3isp-priv.h +++ b/isp/omap3isp-priv.h @@ -138,6 +138,7 @@ enum omap3_isp_pipeline_state { * @entitites: Entities in the pipeline * @scaler: Whether scaling should be performed on the ISP or the sensor * @pools: Pools in the pipeline + * @input: Video device at the input of the pipeline * @output: Video device at the output of the pipeline * @state: Pipeline state */ @@ -145,6 +146,7 @@ struct omap3_isp_pipeline { struct list_entry entities; enum omap3_isp_scaler scaler; struct list_entry pools; + struct omap3_isp_video *input; struct omap3_isp_video *output; enum omap3_isp_pipeline_state state; struct omap3_isp_resizer resizer; |