]> git.sesse.net Git - nageru/blobdiff - flags.h
Rewrite the ALSA sequencer input loop.
[nageru] / flags.h
diff --git a/flags.h b/flags.h
index f75ccd0fe8ef3c541ab9770b4c083b568db23ae6..be02f388efd5dd5ce6868babf5495a46ff41e31b 100644 (file)
--- a/flags.h
+++ b/flags.h
@@ -10,6 +10,7 @@
 struct Flags {
        int num_cards = 2;
        std::string va_display;
+       bool fake_cards_audio = false;
        bool uncompressed_video_to_http = false;
        bool x264_video_to_http = false;
        std::vector<std::string> theme_dirs { ".", "/usr/local/share/nageru" };
@@ -35,6 +36,9 @@ struct Flags {
        std::vector<std::string> x264_extra_param;  // In “key[,value]” format.
        bool enable_alsa_output = true;
        std::map<int, int> default_stream_mapping;
+       bool multichannel_mapping_mode = false;  // Implicitly true if input_mapping_filename is nonempty.
+       std::string input_mapping_filename;  // Empty for none.
+       std::string midi_mapping_filename;  // Empty for none.
 };
 extern Flags global_flags;