From: Steinar H. Gunderson Date: Wed, 13 Jun 2018 22:46:18 +0000 (+0200) Subject: Hook up the fourth camera display. X-Git-Tag: 1.8.0~76^2~278 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a8640fb1324d3148ebe9337e000189f9ca54f4de;p=nageru Hook up the fourth camera display. --- 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); } });