Hi erveryone!
I have a problem to run DM8168 add QT.
SDK: DVRRDK_01.09.01.21
capture data:1920X1080X60
display on chip HDMI:1920X1080X60
QT graphical interfaces SIZE:1920X120
usage:
capture video data and QT graphical interfaces all together display on DM8168 on chip HDMI port.
issue:
I had reference the code in DVRRDK_01.09.01.21 SDK package.(DVRRDK_01.09.01.21\dvr_rdk\dvrapp\dvrgui).
When app run. capture video data and QT graphical interfaces can not together display on HDMI port.
some code of main() :
int main(int argc, char *argv[])
{
LIB816x_Reach_startSystem(0, 0, 0, 0);
QApplication a(argc, argv);
reachgui w;
w.show();
return a.exec();
}
after LIB816x_Reach_startSystem(0, 0, 0, 0) run end . The capture video data is display on HDMI port.
Then after w.show() run end.capture video data is not display on HDMI port . and The QT graphical interfaces pic is display on HDMI port.
But if I close the QT graphical interfaces(clicked the X on QT graphical interfaces) Then capture video data is displaying on HDMI port again.
So, somebody can help me.where is wrong?
QT code write error? DM8168 setting wrong?
Thank You very much!