]> git.sesse.net Git - nageru/blob - flags.h
Add an option --flat-audio to start with almost all the audio processing turned off.
[nageru] / flags.h
1 #ifndef _FLAGS_H
2 #define _FLAGS_H
3
4 #include <string>
5
6 struct Flags {
7         int num_cards = 2;
8         std::string va_display;
9         bool uncompressed_video_to_http = false;
10         std::string theme_filename = "theme.lua";
11         bool flat_audio = false;
12 };
13 extern Flags global_flags;
14
15 void parse_flags(int argc, char * const argv[]);
16
17 #endif  // !defined(_FLAGS_H)