]> git.sesse.net Git - nageru/blobdiff - flags.h
Pull the Mux class out of HTTPD. (First step towards decoupling file and HTTP muxing.)
[nageru] / flags.h
diff --git a/flags.h b/flags.h
index f1755918c14209622abaf3cfe4bcbd50630bcdc2..b2dedb6c05a1ca689b1d5b588b994142da552f20 100644 (file)
--- a/flags.h
+++ b/flags.h
@@ -3,11 +3,17 @@
 
 #include <string>
 
+#include "defs.h"
+
 struct Flags {
        int num_cards = 2;
        std::string va_display;
        bool uncompressed_video_to_http = false;
        std::string theme_filename = "theme.lua";
+       bool flat_audio = false;
+       bool flush_pbos = true;
+       std::string stream_mux_name = DEFAULT_STREAM_MUX_NAME;
+       bool stream_coarse_timebase = false;
 };
 extern Flags global_flags;