]> git.sesse.net Git - nageru/blobdiff - theme.h
Add the GPU memory metrics to the Grafana dashboard.
[nageru] / theme.h
diff --git a/theme.h b/theme.h
index 8712bf81542e9fb2df645f78ad0def61a475131c..0a239953baebf515f99c9b831e75ccdf6fc1b822 100644 (file)
--- a/theme.h
+++ b/theme.h
@@ -9,6 +9,7 @@
 #include <map>
 #include <mutex>
 #include <string>
+#include <unordered_map>
 #include <vector>
 
 #include "bmusb/bmusb.h"
@@ -82,25 +83,15 @@ public:
        }
 #endif
 
-       void register_video_signal_connection(LiveInputWrapper *live_input, FFmpegCapture *capture)
+       void register_video_signal_connection(movit::EffectChain *chain, LiveInputWrapper *live_input, FFmpegCapture *capture)
        {
-               video_signal_connections.emplace_back(live_input, capture);
-       }
-
-       std::vector<std::pair<LiveInputWrapper *, FFmpegCapture *>> get_video_signal_connections() const
-       {
-               return video_signal_connections;
+               video_signal_connections[chain].emplace_back(VideoSignalConnection { live_input, capture });
        }
 
 #ifdef HAVE_CEF
-       void register_html_signal_connection(LiveInputWrapper *live_input, CEFCapture *capture)
+       void register_html_signal_connection(movit::EffectChain *chain, LiveInputWrapper *live_input, CEFCapture *capture)
        {
-               html_signal_connections.emplace_back(live_input, capture);
-       }
-
-       std::vector<std::pair<LiveInputWrapper *, CEFCapture *>> get_html_signal_connections() const
-       {
-               return html_signal_connections;
+               html_signal_connections[chain].emplace_back(CEFSignalConnection { live_input, capture });
        }
 #endif
 
@@ -123,6 +114,8 @@ private:
        void register_class(const char *class_name, const luaL_Reg *funcs);
        int set_theme_menu(lua_State *L);
 
+       std::string theme_path;
+
        std::mutex m;
        lua_State *L;  // Protected by <m>.
        const InputState *input_state = nullptr;  // Protected by <m>. Only set temporarily, during chain setup.
@@ -134,10 +127,20 @@ private:
        std::map<int, int> signal_to_card_mapping;  // Protected by <map_m>.
 
        std::vector<FFmpegCapture *> video_inputs;
-       std::vector<std::pair<LiveInputWrapper *, FFmpegCapture *>> video_signal_connections;
+       struct VideoSignalConnection {
+               LiveInputWrapper *wrapper;
+               FFmpegCapture *source;
+       };
+       std::unordered_map<movit::EffectChain *, std::vector<VideoSignalConnection>>
+                video_signal_connections;
 #ifdef HAVE_CEF
        std::vector<CEFCapture *> html_inputs;
-       std::vector<std::pair<LiveInputWrapper *, CEFCapture *>> html_signal_connections;
+       struct CEFSignalConnection {
+               LiveInputWrapper *wrapper;
+               CEFCapture *source;
+       };
+       std::unordered_map<movit::EffectChain *, std::vector<CEFSignalConnection>>
+               html_signal_connections;
 #endif
 
        std::vector<MenuEntry> theme_menu;
@@ -155,9 +158,9 @@ private:
 class LiveInputWrapper {
 public:
        // Note: <override_bounce> is irrelevant for PixelFormat_8BitBGRA.
-       LiveInputWrapper(Theme *theme, movit::EffectChain *chain, bmusb::PixelFormat pixel_format, bool override_bounce, bool deinterlace);
+       LiveInputWrapper(Theme *theme, movit::EffectChain *chain, bmusb::PixelFormat pixel_format, bool override_bounce, bool deinterlace, bool user_connectable);
 
-       void connect_signal(int signal_num);  // Must be called with the theme's <m> lock held, since it accesses theme->input_state.
+       bool connect_signal(int signal_num);  // Must be called with the theme's <m> lock held, since it accesses theme->input_state. Returns false on error.
        void connect_signal_raw(int signal_num, const InputState &input_state);
        movit::Effect *get_effect() const
        {
@@ -178,6 +181,7 @@ private:
        std::vector<movit::FlatInput *> rgba_inputs;  // Multiple ones if deinterlacing. Owned by the chain.
        movit::Effect *deinterlace_effect = nullptr;  // Owned by the chain.
        bool deinterlace;
+       bool user_connectable;
 };
 
 #endif  // !defined(_THEME_H)