X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=nageru%2Fflags.h;h=bbe84c254e17c73f6977e983134ffe04f39c1176;hb=82eaaa3d91b33479a3dee767d5de12aeb6da5b93;hp=4d990f8511d7a2fb7567fb2195a0e31c5c2a2e16;hpb=c1b4f6c5e8a1fe046f6dddf62ef705f4f799789a;p=nageru diff --git a/nageru/flags.h b/nageru/flags.h index 4d990f8..bbe84c2 100644 --- a/nageru/flags.h +++ b/nageru/flags.h @@ -12,13 +12,14 @@ 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 theme_dirs { ".", "/usr/local/share/nageru" }; + std::vector theme_dirs { ".", PREFIX "/share/nageru" }; std::string recording_dir = "."; std::string theme_filename = "theme.lua"; bool locut_enabled = true; @@ -41,6 +42,7 @@ struct Flags { int x264_vbv_max_bitrate = -1; // In kilobits. 0 = no limit, -1 = same as (CBR). int x264_vbv_buffer_size = -1; // In kilobits. 0 = one-frame VBV, -1 = same as (one-second VBV). std::vector x264_extra_param; // In “key[,value]” format. + std::string v4l_output_device; // Empty if none. bool enable_alsa_output = true; std::map default_stream_mapping; bool multichannel_mapping_mode = false; // Implicitly true if input_mapping_filename is nonempty. @@ -56,6 +58,8 @@ struct Flags { double output_slop_frames = 0.5; 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; @@ -63,9 +67,9 @@ struct Flags { bool ten_bit_output = false; // Implies x264_video_to_disk == true and x264_bit_depth == 10. YCbCrInterpretation ycbcr_interpretation[MAX_VIDEO_CARDS]; bool transcode_audio = true; // Kaeru only. + bool enable_audio = true; // Kaeru only. If false, then transcode_audio is also false. int x264_bit_depth = 8; // Not user-settable. bool use_zerocopy = false; // Not user-settable. - bool can_disable_srgb_decoder = false; // Not user-settable. bool fullscreen = false; std::map card_to_mjpeg_stream_export; // If a card is not in the map, it is not exported. };