mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
obs/source-factory: Add support for OBS Studio 27.x
Also improves the functionality logic slightly to be more in line with real behavior.
This commit is contained in:
parent
9bbc35b293
commit
e3c7b13d6f
15 changed files with 803 additions and 491 deletions
|
@ -1086,7 +1086,7 @@ autoframing_factory::autoframing_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_resolution_enabled(true);
|
||||
support_size(true);
|
||||
finish_setup();
|
||||
|
||||
// Register proxy identifiers.
|
||||
|
|
|
@ -604,7 +604,7 @@ blur_factory::blur_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_resolution_enabled(false);
|
||||
support_size(false);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-blur");
|
||||
}
|
||||
|
|
|
@ -584,7 +584,7 @@ color_grade_factory::color_grade_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_resolution_enabled(false);
|
||||
support_size(false);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-color-grade");
|
||||
}
|
||||
|
|
|
@ -550,7 +550,7 @@ denoising_factory::denoising_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;
|
||||
|
||||
set_resolution_enabled(true);
|
||||
support_size(true);
|
||||
finish_setup();
|
||||
|
||||
// Proxies
|
||||
|
|
|
@ -150,7 +150,7 @@ displacement_factory::displacement_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW | OBS_SOURCE_DEPRECATED | OBS_SOURCE_CAP_DISABLED;
|
||||
|
||||
set_resolution_enabled(false);
|
||||
support_size(false);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-displacement");
|
||||
}
|
||||
|
|
|
@ -455,11 +455,11 @@ dynamic_mask_factory::dynamic_mask_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;
|
||||
|
||||
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);
|
||||
support_active_child_sources(true);
|
||||
support_child_sources(true);
|
||||
support_size(false);
|
||||
support_activity_tracking(true);
|
||||
support_visibility_tracking(true);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-dynamic-mask");
|
||||
}
|
||||
|
|
|
@ -570,7 +570,7 @@ sdf_effects_factory::sdf_effects_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_resolution_enabled(false);
|
||||
support_size(false);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-sdf-effects");
|
||||
}
|
||||
|
|
|
@ -179,8 +179,8 @@ shader_factory::shader_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_activity_tracking_enabled(true);
|
||||
set_visibility_tracking_enabled(true);
|
||||
support_activity_tracking(true);
|
||||
support_visibility_tracking(true);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-shader");
|
||||
}
|
||||
|
|
|
@ -597,7 +597,7 @@ transform_factory::transform_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO;
|
||||
|
||||
set_resolution_enabled(false);
|
||||
support_size(false);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-filter-transform");
|
||||
}
|
||||
|
|
|
@ -550,7 +550,7 @@ upscaling_factory::upscaling_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW /*| OBS_SOURCE_SRGB*/;
|
||||
|
||||
set_resolution_enabled(true);
|
||||
support_size(true);
|
||||
finish_setup();
|
||||
|
||||
// Proxies
|
||||
|
|
|
@ -554,7 +554,7 @@ virtual_greenscreen_factory::virtual_greenscreen_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_FILTER;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW /*| OBS_SOURCE_SRGB*/;
|
||||
|
||||
set_resolution_enabled(true);
|
||||
support_size(true);
|
||||
finish_setup();
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -296,8 +296,8 @@ mirror_factory::mirror_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_INPUT;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW | OBS_SOURCE_AUDIO;
|
||||
|
||||
set_have_active_child_sources(true);
|
||||
set_have_child_sources(true);
|
||||
support_active_child_sources(true);
|
||||
support_child_sources(true);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-source-mirror");
|
||||
}
|
||||
|
|
|
@ -132,8 +132,8 @@ shader_factory::shader_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_INPUT;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;
|
||||
|
||||
set_activity_tracking_enabled(true);
|
||||
set_visibility_tracking_enabled(true);
|
||||
support_activity_tracking(true);
|
||||
support_visibility_tracking(true);
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-source-shader");
|
||||
}
|
||||
|
|
|
@ -145,7 +145,7 @@ shader_factory::shader_factory()
|
|||
_info.type = OBS_SOURCE_TYPE_TRANSITION;
|
||||
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;
|
||||
|
||||
//set_activity_tracking_enabled(true); // Handled via transition start/stop
|
||||
//support_activity_tracking(true); // Handled via transition start/stop
|
||||
finish_setup();
|
||||
register_proxy("obs-stream-effects-transition-shader");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue