[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190315164359.626-7-andrealmeid@collabora.com>
Date: Fri, 15 Mar 2019 13:43:49 -0300
From: André Almeida <andrealmeid@...labora.com>
To: linux-media@...r.kernel.org
Cc: mchehab@...nel.org, hverkuil@...all.nl, helen.koike@...labora.com,
lucmaga@...il.com, linux-kernel@...r.kernel.org,
kernel@...labora.com
Subject: [PATCH 06/16] media: vimc: cap: Dynamically define stream pixelformat
Define the pixelformat of the streamer depending to the
mode (single/multiplanar).
Signed-off-by: André Almeida <andrealmeid@...labora.com>
---
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
Powered by blists - more mailing lists