]> git.sesse.net Git - nageru/blob - flags.h
Make the resampling audio queue length adjustable with a flag.
[nageru] / flags.h
1 #ifndef _FLAGS_H
2 #define _FLAGS_H
3
4 #include <map>
5 #include <string>
6 #include <vector>
7
8 #include "defs.h"
9
10 struct Flags {
11         int width = 1280, height = 720;
12         int num_cards = 2;
13         std::string va_display;
14         bool fake_cards_audio = false;
15         bool uncompressed_video_to_http = false;
16         bool x264_video_to_http = false;
17         std::vector<std::string> theme_dirs { ".", "/usr/local/share/nageru" };
18         std::string theme_filename = "theme.lua";
19         bool locut_enabled = true;
20         bool gain_staging_auto = true;
21         float initial_gain_staging_db = 0.0f;
22         bool compressor_enabled = true;
23         bool limiter_enabled = true;
24         bool final_makeup_gain_auto = true;
25         bool flush_pbos = true;
26         std::string stream_mux_name = DEFAULT_STREAM_MUX_NAME;
27         bool stream_coarse_timebase = false;
28         std::string stream_audio_codec_name;  // Blank = use the same as for the recording.
29         int stream_audio_codec_bitrate = DEFAULT_AUDIO_OUTPUT_BIT_RATE;  // Ignored if stream_audio_codec_name is blank.
30         std::string x264_preset;  // Empty will be overridden by X264_DEFAULT_PRESET, unless speedcontrol is set.
31         std::string x264_tune = X264_DEFAULT_TUNE;
32         bool x264_speedcontrol = false;
33         bool x264_speedcontrol_verbose = false;
34         int x264_bitrate = DEFAULT_X264_OUTPUT_BIT_RATE;  // In kilobit/sec.
35         int x264_vbv_max_bitrate = -1;  // In kilobits. 0 = no limit, -1 = same as <x264_bitrate> (CBR).
36         int x264_vbv_buffer_size = -1;  // In kilobits. 0 = one-frame VBV, -1 = same as <x264_bitrate> (one-second VBV).
37         std::vector<std::string> x264_extra_param;  // In “key[,value]” format.
38         bool enable_alsa_output = true;
39         std::map<int, int> default_stream_mapping;
40         bool multichannel_mapping_mode = false;  // Implicitly true if input_mapping_filename is nonempty.
41         std::string input_mapping_filename;  // Empty for none.
42         std::string midi_mapping_filename;  // Empty for none.
43         bool print_video_latency = false;
44         double audio_queue_length_ms = 100.0;
45 };
46 extern Flags global_flags;
47
48 void parse_flags(int argc, char * const argv[]);
49
50 #endif  // !defined(_FLAGS_H)