]> git.sesse.net Git - nageru/blobdiff - nageru/main.cpp
Fix a Clang 19 warning.
[nageru] / nageru / main.cpp
index 37034edd2c823fbb36eb7d3dc262be86f258c7e2..f8b5395f4f9ffceb4cce3a9c65184309b7dfcfe9 100644 (file)
@@ -1,5 +1,6 @@
 extern "C" {
-#include <libavformat/avformat.h>
+#include <libavformat/version.h>
+#include <libavutil/version.h>
 }
 #include <stdbool.h>
 #include <stdio.h>
@@ -15,9 +16,6 @@ extern "C" {
 
 #ifdef HAVE_CEF
 #include <cef_app.h>
-#include <cef_browser.h>
-#include <cef_client.h>
-#include <cef_version.h>
 #endif
 
 #ifdef HAVE_SRT
@@ -30,7 +28,6 @@ extern "C" {
 #endif
 #include "shared/context.h"
 #include "flags.h"
-#include "image_input.h"
 #include "mainwindow.h"
 #include "mixer.h"
 #include "quicksync_encoder.h"
@@ -82,7 +79,7 @@ int main(int argc, char *argv[])
 #endif
 
 #ifdef HAVE_SRT
-       if (global_flags.srt_port >= 0) {
+       if (global_flags.srt_port >= 0 || !global_flags.srt_destination_host.empty()) {
                srt_startup();
        }
 #endif