]> git.sesse.net Git - nageru/blobdiff - nageru/flags.h
Fix a Clang 19 warning.
[nageru] / nageru / flags.h
index 4d990f8511d7a2fb7567fb2195a0e31c5c2a2e16..7704410ec5d7f5feaadae43cd757a24b2a2f93a6 100644 (file)
@@ -8,17 +8,20 @@
 #include <vector>
 
 #include "defs.h"
+#include "shared/shared_defs.h"
 #include "ycbcr_interpretation.h"
 
 struct Flags {
        int width = 1280, height = 720;
-       int num_cards = 2;
+       int min_num_cards = 2;
+       int max_num_cards = MAX_VIDEO_CARDS;
        std::string va_display;
        bool fake_cards_audio = false;
-       bool uncompressed_video_to_http = false;
        bool x264_video_to_http = false;
        bool x264_video_to_disk = false;  // Disables Quick Sync entirely. Implies x264_video_to_http == true.
-       std::vector<std::string> theme_dirs { ".", "/usr/local/share/nageru" };
+       bool x264_separate_disk_encode = false;  // Disables Quick Sync entirely. Implies x264_video_to_disk == true.
+       bool av1_video_to_http = false;
+       std::vector<std::string> theme_dirs { ".", PREFIX "/share/nageru" };
        std::string recording_dir = ".";
        std::string theme_filename = "theme.lua";
        bool locut_enabled = true;
@@ -38,9 +41,20 @@ struct Flags {
        bool x264_speedcontrol_verbose = false;
        int x264_bitrate = -1;  // In kilobit/sec. -1 = not set = DEFAULT_X264_OUTPUT_BIT_RATE.
        float x264_crf = HUGE_VAL;  // From 51 - QP_MAX_SPEC to 51. HUGE_VAL = not set = use x264_bitrate instead.
-       int x264_vbv_max_bitrate = -1;  // In kilobits. 0 = no limit, -1 = same as <x264_bitrate> (CBR).
-       int x264_vbv_buffer_size = -1;  // In kilobits. 0 = one-frame VBV, -1 = same as <x264_bitrate> (one-second VBV).
        std::vector<std::string> x264_extra_param;  // In “key[,value]” format.
+
+       int av1_preset = DEFAULT_AV1_PRESET;
+       int av1_bitrate = DEFAULT_AV1_OUTPUT_BIT_RATE;
+       int av1_fps_num = DEFAULT_AV1_FPS_NUM, av1_fps_den = DEFAULT_AV1_FPS_DEN;
+       std::vector<std::string> av1_extra_param;  // In “key[,value]” format.
+
+       std::string x264_separate_disk_preset;  // Empty will be overridden by X264_DEFAULT_PRESET, unless speedcontrol is set.
+       std::string x264_separate_disk_tune = X264_DEFAULT_TUNE;
+       int x264_separate_disk_bitrate = -1;
+       float x264_separate_disk_crf = HUGE_VAL;
+       std::vector<std::string> x264_separate_disk_extra_param;  // In “key[,value]” format.
+
+       std::string v4l_output_device;  // Empty if none.
        bool enable_alsa_output = true;
        std::map<int, int> default_stream_mapping;
        bool multichannel_mapping_mode = false;  // Implicitly true if input_mapping_filename is nonempty.
@@ -54,20 +68,27 @@ struct Flags {
        int output_card = -1;
        double output_buffer_frames = 6.0;
        double output_slop_frames = 0.5;
+       bool output_card_is_master = true;
        int max_input_queue_frames = 6;
        int http_port = DEFAULT_HTTPD_PORT;
+       int srt_port = DEFAULT_SRT_PORT;  // -1 for none.
+       bool enable_srt = true;  // UI toggle; not settable from the command line. See also srt_port.
        bool display_timecode_in_stream = false;
        bool display_timecode_on_stdout = false;
        bool enable_quick_cut_keys = false;
-       bool ten_bit_input = false;
-       bool ten_bit_output = false;  // Implies x264_video_to_disk == true and x264_bit_depth == 10.
+       int bit_depth = 8;  // 8 or 10. 10 implies x264_video_to_disk == true.
        YCbCrInterpretation ycbcr_interpretation[MAX_VIDEO_CARDS];
+       bool transcode_video = true;  // Kaeru only.
        bool transcode_audio = true;  // Kaeru only.
-       int x264_bit_depth = 8;  // Not user-settable.
+       bool enable_audio = true;  // Kaeru only. If false, then transcode_audio is also false.
        bool use_zerocopy = false;  // Not user-settable.
-       bool can_disable_srgb_decoder = false;  // Not user-settable.
        bool fullscreen = false;
        std::map<unsigned, unsigned> card_to_mjpeg_stream_export;  // If a card is not in the map, it is not exported.
+       std::string srt_destination_host;
+       std::string srt_destination_port;
+       std::string srt_streamid;
+       std::string srt_passphrase;
+       int srt_output_latency_ms = DEFAULT_SRT_OUTPUT_LATENCY_MS;
 };
 extern Flags global_flags;