]> git.sesse.net Git - nageru/blob - flags.h
Support changing the interpolation quality.
[nageru] / flags.h
1 #ifndef _FLAGS_H
2 #define _FLAGS_H
3
4 #include <string>
5
6 struct Flags {
7         std::string stream_source;
8         bool slow_down_input = false;
9         int interpolation_quality = 2;
10 };
11 extern Flags global_flags;
12
13 void usage();
14 void parse_flags(int argc, char * const argv[]);
15
16 #endif  // !defined(_FLAGS_H)