From a8640fb1324d3148ebe9337e000189f9ca54f4de Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 14 Jun 2018 00:46:18 +0200 Subject: [PATCH] Hook up the fourth camera display. --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 52c105f..ad42075 100644 --- a/main.cpp +++ b/main.cpp @@ -94,6 +94,8 @@ int record_thread_func() global_mainwindow->ui->input2_display->setFrame(pkt.stream_index, pkt.pts); } else if (pkt.stream_index == 2) { global_mainwindow->ui->input3_display->setFrame(pkt.stream_index, pkt.pts); + } else if (pkt.stream_index == 3) { + global_mainwindow->ui->input4_display->setFrame(pkt.stream_index, pkt.pts); } }); -- 2.39.2