Hello
I'm working on GLSDK 7.04 with custom board which Jacinto6 based.
We have 4ch camera and I can see all camera input using below command
dmabuftest --multi 4 --kmscube --fov 20 -d /dev/video1 -c 1280x720@YUYV -d /dev/video2 -c 1280x720@YUYV -d /dev/video3 -c 1280x720@YUYV -d /dev/video4 -c 1280x720@YUYV
This time, I want display two camera stream to defined position in wayland. So I tried below command.
dmabuftest --multi 2 -w 640x360 --pos 0x0 -d /dev/video1 -c 1280x720@YUYV -w 640x360 --pos 0x360 -d /dev/video2 -c 1280x720@YUYV
I expected that first stream display at 0,0 and second stream display at 0,360
but I could not see multiple camera stream in defined position. how to use dmabuftest for multiple video streaming to defined position?
Please help me.