X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=theme.h;h=bbef35ef350d1513afc92aa8216836b13b36b937;hb=4a0187ffb4075b4d217b8d9e9c96cac548b199d8;hp=8712bf81542e9fb2df645f78ad0def61a475131c;hpb=f3dbafe3251a6613433debfdde48dc814f5423a1;p=nageru diff --git a/theme.h b/theme.h index 8712bf8..bbef35e 100644 --- a/theme.h +++ b/theme.h @@ -9,6 +9,7 @@ #include #include #include +#include #include #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> 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> 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 . const InputState *input_state = nullptr; // Protected by . Only set temporarily, during chain setup. @@ -134,10 +127,20 @@ private: std::map signal_to_card_mapping; // Protected by . std::vector video_inputs; - std::vector> video_signal_connections; + struct VideoSignalConnection { + LiveInputWrapper *wrapper; + FFmpegCapture *source; + }; + std::unordered_map> + video_signal_connections; #ifdef HAVE_CEF std::vector html_inputs; - std::vector> html_signal_connections; + struct CEFSignalConnection { + LiveInputWrapper *wrapper; + CEFCapture *source; + }; + std::unordered_map> + html_signal_connections; #endif std::vector theme_menu;