X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=theme.h;h=1f4f429eec72387f44b4f3f26f56dca0a543c9a3;hb=2f270d0a7e185ae7b024586bbd26a2bc3c53062c;hp=4f2c2327c223c0917cab5e16d556b41b37f17769;hpb=fedd382abdd2723a2cc9b6868145101fab17b4e7;p=nageru diff --git a/theme.h b/theme.h index 4f2c232..1f4f429 100644 --- a/theme.h +++ b/theme.h @@ -5,6 +5,7 @@ #include #include #include +#include #include #include #include @@ -62,6 +63,8 @@ public: void transition_clicked(int transition_num, float t); void channel_clicked(int preview_num); + movit::ResourcePool *get_resource_pool() const { return resource_pool; } + private: void register_class(const char *class_name, const luaL_Reg *funcs); @@ -78,23 +81,23 @@ private: class LiveInputWrapper { public: - LiveInputWrapper(Theme *theme, movit::EffectChain *chain, bool override_bounce); + LiveInputWrapper(Theme *theme, movit::EffectChain *chain, bool override_bounce, bool deinterlace); void connect_signal(int signal_num); - movit::YCbCrInput *get_input() const + movit::Effect *get_effect() const { - return input; + if (deinterlace) { + return deinterlace_effect; + } else { + return inputs[0]; + } } - // Of last connected signal number (see connect_signal()). - // Only valid during get_chain() or the setup callback. - unsigned get_width() const; - unsigned get_height() const; - private: Theme *theme; // Not owned by us. - movit::YCbCrInput *input; // Owned by the chain. - int last_connected_signal_num = -1; + std::vector inputs; // Multiple ones if deinterlacing. Owned by the chain. + movit::Effect *deinterlace_effect = nullptr; // Owned by the chain. + bool deinterlace; }; #endif // !defined(_THEME_H)