Dear Sir,
I got my AM572x EVM from TI website running Processor SDK 2.0,
I tried to draw two video frame on the same plane id by calling drmModeSetPlane(...) twice.
But there is flicker on the display output. Following is example code. How could I fix this problem ?
for example :
drmModeSetCrtc();
while(1) {
drmModeSetPlane(plane1, fb);
drmModeSetPlane(plane1, fb2);
}