This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DM3730 Display rotation

Other Parts Discussed in Thread: DM3730

Hi,

Im working on DM3730. I am displaying  using ioctl calls to v4l2 display driver. But there is a resolution setting problem that some portion of my video is not able to see in the lcd display. I tried to do rotate by adding the following code snippet in my application

"

ctrl.id = V4L2_CID_ROTATE;
ctrl.value = 90;
if (ioctl(v4l2fd, VIDIOC_S_CTRL, &ctrl) < 0)
{
printf("set ctrl rotate failed\n");
exit(0);
}"

With this setting my query buffer API VIDIOC_REQBUFS is failing. Im getting page allocation error.

Please suggest me some method by which I can resolve this issue.

Thanks in advance

Thushara Jayakumar.