]> git.sesse.net Git - nageru/commitdiff
Hook up the fourth camera display.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 13 Jun 2018 22:46:18 +0000 (00:46 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 13 Jun 2018 22:46:18 +0000 (00:46 +0200)
main.cpp

index 52c105f76b492875919e1c2575b8f9eeb43891dc..ad42075363054145fc23d80777b43b1c90f3ca8b 100644 (file)
--- 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);
                        }
                });