summaryrefslogtreecommitdiff
path: root/isp/omap3isp-priv.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2012-07-04 12:46:53 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2012-10-20 21:28:24 +0200
commitb2f773c5c53c2efe108e44e176a604bca79a6d4b (patch)
tree616717c68848449d76d6007e14e8c88570199fa2 /isp/omap3isp-priv.h
parent51e34d1d5a4a18b8f918eaf9a6e9adf6ea1dcc76 (diff)
isp: Split the viewfinder and snapshot API
Don't suspend and resume the viewfinder implicitly when taking a snapshot, but let the application stop the viewfinder before taking the snapshot, and restart it afterwards. Applications are now responsible for keeping track of the viewfinder output buffers state and pass of bitmask of output buffers indices to be queued when starting the viewfinder. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r--isp/omap3isp-priv.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h
index c9f73a1..4e24d31 100644
--- a/isp/omap3isp-priv.h
+++ b/isp/omap3isp-priv.h
@@ -75,7 +75,6 @@ struct omap3_isp_entity {
* @video: V4L2 capture device
* @format: Current video format
* @pool: Buffers pool
- * @dequeued: Bitmask of dequeued buffers that belong to the application
* @queued: Number of buffers queued to the driver
* @running: Whether video capture is running on the device
*/
@@ -85,7 +84,6 @@ struct omap3_isp_video {
struct v4l2_device *video;
struct v4l2_mbus_framefmt format;
struct v4l2_buffers_pool *pool;
- unsigned int dequeued;
unsigned int queued;
bool running;
};