diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-07-28 15:09:11 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-09-04 15:39:31 +0200 |
commit | ea5563000447f0cef5688a35feb0071ec5d1ea58 (patch) | |
tree | 641ed980478dc395199722aca41c5e7884037334 /isp/omap3isp-priv.h | |
parent | c2cef3c8853213e50809189a245af3d859cacb19 (diff) |
omap3isp: Implement pools buffer allocation and streaming events
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r-- | isp/omap3isp-priv.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h index e9dae0c..4e3d8cf 100644 --- a/isp/omap3isp-priv.h +++ b/isp/omap3isp-priv.h @@ -28,6 +28,8 @@ #include "omap3isp.h" #include "tools.h" +struct omap3_isp_device; + /* * struct omap3_isp_pad - OMAP3 entity pad * @link: Link connected to the pad @@ -88,6 +90,7 @@ struct omap3_isp_video { * struct omap3_isp_pool - OMAP3 buffers pool * @entity: OMAP3 entity * @list: Pools list + * @isp: OMAP3 ISP device * @input: Capture video device * @output: Output video device * @pool: Buffers pool @@ -95,6 +98,7 @@ struct omap3_isp_video { struct omap3_isp_pool { struct omap3_isp_entity entity; struct list_entry list; + struct omap3_isp_device *isp; struct omap3_isp_video *input; struct omap3_isp_video *output; struct v4l2_buffers_pool *pool; |