Hi,
I am connecting video decoder board to my I.MX8QM board and I am supplying RGB888 data format to I.MX8QM board, for capturing video data I am running following command "mx8_v4l2_cap_drm -cam 1 -fmt BGR3". We are providing bpp as 32 from mx8_v4l2_cap_drm.c file then Image displaying in HDMI port of I.MX8QM is as below. and it is creating issue(drmModeSetCrtc() function getting failed) when I am providing bpp value is 24.
mxc-isi-cap - using mxc_isi_out_formats is, {
.name = "BGR24",
.fourcc = V4L2_PIX_FMT_BGR24,
.depth = { 32},
.color = MXC_ISI_OUT_FMT_RGB32P,
.memplanes = 1,
.colplanes = 1,
.mbus_code = MEDIA_BUS_FMT_RGB888_1X24,
}
Now I am getting Image as per below, some portion of screen at end it is in black color.

mxc-isi-cap - using mxc_isi_out_formats is, {
.name = "BGR24",
.fourcc = V4L2_PIX_FMT_BGR24,
.depth = { 24},
.color = MXC_ISI_OUT_FMT_RGB32P,
.memplanes = 1,
.colplanes = 1,
.mbus_code = MEDIA_BUS_FMT_RGB888_1X24,
}
I am getting image as below.

Please help us to resolve this Issue.
Thanks & Regards,
Mallikarjuna B.