libcamera: v4l2_device: Rename plane format fields

Rename the number of valid plane formats to 'planesCount' and the actual
per-plane size information array to 'planes'.

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Jacopo Mondi
2019-02-03 12:16:27 +01:00
parent 755644fe64
commit a9f302dc05
2 changed files with 16 additions and 17 deletions
+2 -2
View File
@@ -63,8 +63,8 @@ public:
struct {
uint32_t size;
uint32_t bpl;
} planesFmt[3];
unsigned int planes;
} planes[3];
unsigned int planesCount;
};
class MediaEntity;