[PATCH 06/16] media: vimc: cap: Dynamically define stream pixelformat

From: Andrà Almeida
Date: Fri Mar 15 2019 - 12:45:22 EST


Define the pixelformat of the streamer depending to the
mode (single/multiplanar).

Signed-off-by: Andrà Almeida <andrealmeid@xxxxxxxxxxxxx>
---
drivers/media/platform/vimc/vimc-capture.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/vimc/vimc-capture.c b/drivers/media/platform/vimc/vimc-capture.c
index c7ec55c4fe13..a93241d53953 100644
--- a/drivers/media/platform/vimc/vimc-capture.c
+++ b/drivers/media/platform/vimc/vimc-capture.c
@@ -282,7 +282,12 @@ static int vimc_cap_start_streaming(struct vb2_queue *vq, unsigned int count)
return ret;
}

- vcap->stream.producer_pixfmt = vcap->format.fmt.pix.pixelformat;
+ if (vcap->format.type == V4L2_CAP_VIDEO_CAPTURE_MPLANE)
+ vcap->stream.producer_pixfmt =
+ vcap->format.fmt.pix_mp.pixelformat;
+ else
+ vcap->stream.producer_pixfmt =
+ vcap->format.fmt.pix.pixelformat;

ret = vimc_streamer_s_stream(&vcap->stream, &vcap->ved, 1);
if (ret) {
--
2.21.0