summaryrefslogtreecommitdiff
path: root/isp/omap3isp-priv.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-07-25 12:10:23 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-09-04 15:38:29 +0200
commit42dba873f0da63e8ef40b233438eaf623515e294 (patch)
tree5b3db5ff22c16b78ec951195e9f0d379ecac1152 /isp/omap3isp-priv.h
parentbedefdf34cfe948169136865a13a82ba57eaef51 (diff)
omap3isp: Move scaler field from omap3_isp_video to omap3_isp_pipeline
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'isp/omap3isp-priv.h')
-rw-r--r--isp/omap3isp-priv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/isp/omap3isp-priv.h b/isp/omap3isp-priv.h
index 7864c63..b4d2114 100644
--- a/isp/omap3isp-priv.h
+++ b/isp/omap3isp-priv.h
@@ -65,7 +65,6 @@ struct omap3_isp_entity {
* @video: V4L2 capture device
* @format: Current video format
* @pool: Buffers pool
- * @scaler: Whether scaling should be performed on the ISP or the sensor
* @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
@@ -75,7 +74,6 @@ struct omap3_isp_video {
struct v4l2_device *video;
struct v4l2_mbus_framefmt format;
struct v4l2_buffers_pool *pool;
- enum omap3_isp_scaler scaler;
unsigned int dequeued;
unsigned int queued;
bool running;
@@ -86,10 +84,12 @@ struct omap3_isp_video {
/*
* struct omap3_isp_pipeline - OMAP3 pipeline
* @entitites: Entities in the pipeline
+ * @scaler: Whether scaling should be performed on the ISP or the sensor
* @output: Video device at the output of the pipeline
*/
struct omap3_isp_pipeline {
struct list_entry entities;
+ enum omap3_isp_scaler scaler;
struct omap3_isp_video *output;
};