X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=theme.h;h=0a239953baebf515f99c9b831e75ccdf6fc1b822;hb=c094b73565559282001764edfbf0f4926d3197fb;hp=8712bf81542e9fb2df645f78ad0def61a475131c;hpb=f3dbafe3251a6613433debfdde48dc814f5423a1;p=nageru diff --git a/theme.h b/theme.h index 8712bf8..0a23995 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; @@ -155,9 +158,9 @@ private: class LiveInputWrapper { public: // Note: 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 lock held, since it accesses theme->input_state. + bool connect_signal(int signal_num); // Must be called with the theme's 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 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)