mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-24 12:25:11 +00:00
filter/dynamic-mask: Explicitly increase showing/active references
Fixes #384
This commit is contained in:
parent
74c478321c
commit
f7cb14fd34
2 changed files with 80 additions and 17 deletions
|
@ -58,12 +58,10 @@ dynamic_mask_instance::dynamic_mask_instance(obs_data_t* settings, obs_source_t*
|
|||
_filter_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
||||
_final_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
||||
|
||||
{
|
||||
try {
|
||||
_effect = gs::effect::create(streamfx::data_file_path("effects/channel-mask.effect").u8string());
|
||||
} catch (const std::exception& ex) {
|
||||
DLOG_ERROR("Loading channel mask effect failed with error(s):\n%s", ex.what());
|
||||
}
|
||||
try {
|
||||
_effect = gs::effect::create(streamfx::data_file_path("effects/channel-mask.effect").u8string());
|
||||
} catch (const std::exception& ex) {
|
||||
DLOG_ERROR("Loading channel mask effect failed with error(s):\n%s", ex.what());
|
||||
}
|
||||
|
||||
update(settings);
|
||||
|
@ -82,14 +80,26 @@ void dynamic_mask_instance::update(obs_data_t* settings)
|
|||
{
|
||||
// Update source.
|
||||
try {
|
||||
_input = std::make_shared<obs::deprecated_source>(obs_data_get_string(settings, ST_INPUT));
|
||||
_input_capture = std::make_shared<gfx::source_texture>(_input, _self);
|
||||
_input->events.rename += std::bind(&dynamic_mask_instance::input_renamed, this, std::placeholders::_1,
|
||||
std::placeholders::_2, std::placeholders::_3);
|
||||
} catch (...) {
|
||||
_input.reset();
|
||||
auto input = std::make_shared<obs::deprecated_source>(obs_data_get_string(settings, ST_INPUT));
|
||||
auto gctx = gs::context();
|
||||
auto capture = std::make_shared<gfx::source_texture>(input, _self);
|
||||
|
||||
input->events.rename += std::bind(&dynamic_mask_instance::input_renamed, this, std::placeholders::_1,
|
||||
std::placeholders::_2, std::placeholders::_3);
|
||||
|
||||
_input = input;
|
||||
_input_capture = capture;
|
||||
|
||||
activate();
|
||||
show();
|
||||
} catch (std::exception const& ex) {
|
||||
deactivate();
|
||||
hide();
|
||||
|
||||
_input_capture.reset();
|
||||
_input_texture.reset();
|
||||
_input.reset();
|
||||
|
||||
DLOG_ERROR("Failed to update input: %s", ex.what());
|
||||
}
|
||||
|
||||
// Update data store
|
||||
|
@ -341,13 +351,55 @@ void dynamic_mask_instance::video_render(gs_effect_t* in_effect)
|
|||
}
|
||||
}
|
||||
|
||||
void dynamic_mask_instance::enum_active_sources(obs_source_enum_proc_t enum_callback, void* param)
|
||||
{
|
||||
if (_input)
|
||||
enum_callback(_self, _input->get(), param);
|
||||
}
|
||||
|
||||
void dynamic_mask_instance::enum_all_sources(obs_source_enum_proc_t enum_callback, void* param)
|
||||
{
|
||||
if (_input)
|
||||
enum_callback(_self, _input->get(), param);
|
||||
}
|
||||
|
||||
void streamfx::filter::dynamic_mask::dynamic_mask_instance::show()
|
||||
{
|
||||
if (!_input || !obs_source_showing(obs_filter_get_parent(_self)))
|
||||
return;
|
||||
|
||||
_input_vs = std::make_shared<obs::tools::visible_source>(_input->get());
|
||||
}
|
||||
|
||||
void streamfx::filter::dynamic_mask::dynamic_mask_instance::hide()
|
||||
{
|
||||
_input_vs.reset();
|
||||
}
|
||||
|
||||
void streamfx::filter::dynamic_mask::dynamic_mask_instance::activate()
|
||||
{
|
||||
if (!_input || !obs_source_active(obs_filter_get_parent(_self)))
|
||||
return;
|
||||
|
||||
_input_ac = std::make_shared<obs::tools::active_source>(_input->get());
|
||||
}
|
||||
|
||||
void streamfx::filter::dynamic_mask::dynamic_mask_instance::deactivate()
|
||||
{
|
||||
_input_ac.reset();
|
||||
}
|
||||
|
||||
dynamic_mask_factory::dynamic_mask_factory()
|
||||
{
|
||||
_info.id = PREFIX "filter-dynamic-mask";
|
||||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_have_active_child_sources(true);
|
||||
set_have_child_sources(true);
|
||||
set_resolution_enabled(false);
|
||||
set_activity_tracking_enabled(true);
|
||||
set_visibility_tracking_enabled(true);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-dynamic-mask");
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include "obs/obs-source-factory.hpp"
|
||||
#include "obs/obs-source-tracker.hpp"
|
||||
#include "obs/obs-source.hpp"
|
||||
#include "obs/obs-tools.hpp"
|
||||
|
||||
namespace streamfx::filter::dynamic_mask {
|
||||
enum class channel : int8_t { Invalid = -1, Red, Green, Blue, Alpha };
|
||||
|
@ -39,10 +40,12 @@ namespace streamfx::filter::dynamic_mask {
|
|||
std::shared_ptr<gs::rendertarget> _filter_rt;
|
||||
std::shared_ptr<gs::texture> _filter_texture;
|
||||
|
||||
bool _have_input_texture;
|
||||
std::shared_ptr<obs::deprecated_source> _input;
|
||||
std::shared_ptr<gfx::source_texture> _input_capture;
|
||||
std::shared_ptr<gs::texture> _input_texture;
|
||||
bool _have_input_texture;
|
||||
std::shared_ptr<obs::deprecated_source> _input;
|
||||
std::shared_ptr<gfx::source_texture> _input_capture;
|
||||
std::shared_ptr<gs::texture> _input_texture;
|
||||
std::shared_ptr<obs::tools::visible_source> _input_vs;
|
||||
std::shared_ptr<obs::tools::active_source> _input_ac;
|
||||
|
||||
bool _have_final_texture;
|
||||
std::shared_ptr<gs::rendertarget> _final_rt;
|
||||
|
@ -74,6 +77,14 @@ namespace streamfx::filter::dynamic_mask {
|
|||
|
||||
virtual void video_tick(float_t _time) override;
|
||||
virtual void video_render(gs_effect_t* effect) override;
|
||||
|
||||
void enum_active_sources(obs_source_enum_proc_t enum_callback, void* param) override;
|
||||
void enum_all_sources(obs_source_enum_proc_t enum_callback, void* param) override;
|
||||
|
||||
void show() override;
|
||||
void hide() override;
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
};
|
||||
|
||||
class dynamic_mask_factory : public obs::source_factory<filter::dynamic_mask::dynamic_mask_factory,
|
||||
|
|
Loading…
Reference in a new issue