]> git.sesse.net Git - nageru/blob - flags.h
Add support for uncompressed video instead of H.264 (while still storing H.264 to...
[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 };
11 extern Flags global_flags;
12
13 void parse_flags(int argc, char * const argv[]);
14
15 #endif  // !defined(_FLAGS_H)