X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=main.cpp;h=d0427d1489a353ffb720462051d537d08f8822a4;hb=9e47a2f661b9d292598ef0277e507458e3dad62f;hp=6cf1ddec055275855fd30bcd8824cfd4e0bd1aaf;hpb=8f98b9f1ae9c813859058bd8199f578c7029e7c9;p=nageru diff --git a/main.cpp b/main.cpp index 6cf1dde..d0427d1 100644 --- a/main.cpp +++ b/main.cpp @@ -4,28 +4,32 @@ extern "C" { #include #include #include -#include - +#include +#include // IWYU pragma: keep #include #include #include #include #include +#include +#include "basic_stats.h" #include "context.h" #include "flags.h" +#include "image_input.h" #include "mainwindow.h" #include "mixer.h" int main(int argc, char *argv[]) { - parse_flags(argc, argv); + parse_flags(PROGRAM_NAGERU, argc, argv); if (global_flags.va_display.empty() || global_flags.va_display[0] != '/') { // We normally use EGL for zerocopy, but if we use VA against DRM // instead of against X11, we turn it off, and then don't need EGL. setenv("QT_XCB_GL_INTEGRATION", "xcb_egl", 0); + using_egl = true; } setlinebuf(stdout); av_register_all(); @@ -39,21 +43,45 @@ int main(int argc, char *argv[]) fmt.setProfile(QSurfaceFormat::CoreProfile); fmt.setMajorVersion(3); fmt.setMinorVersion(1); + + // Turn off vsync, since Qt generally gives us at most frame rate + // (display frequency) / (number of QGLWidgets active). + fmt.setSwapInterval(0); + QSurfaceFormat::setDefaultFormat(fmt); QGLFormat::setDefaultFormat(QGLFormat::fromSurfaceFormat(fmt)); global_share_widget = new QGLWidget(); + if (!global_share_widget->isValid()) { + fprintf(stderr, "Failed to initialize OpenGL. Nageru needs at least OpenGL 3.1 to function properly.\n"); + exit(1); + } MainWindow mainWindow; - mainWindow.resize(QSize(1500, 810)); + mainWindow.resize(QSize(1500, 850)); mainWindow.show(); app.installEventFilter(&mainWindow); // For white balance color picking. + // Even on an otherwise unloaded system, it would seem writing the recording + // to disk (potentially terabytes of data as time goes by) causes Nageru + // to be pushed out of RAM. If we have the right privileges, simply lock us + // into memory for better realtime behavior. + if (mlockall(MCL_CURRENT | MCL_FUTURE) == -1) { + perror("mlockall()"); + fprintf(stderr, "Failed to lock Nageru into RAM. You probably want to\n"); + fprintf(stderr, "increase \"memlock\" for your user in limits.conf\n"); + fprintf(stderr, "for better realtime behavior.\n"); + uses_mlock = false; + } else { + uses_mlock = true; + } + int rc = app.exec(); global_mixer->quit(); mainWindow.mixer_shutting_down(); delete global_mixer; + ImageInput::shutdown_updaters(); return rc; }