From 0e5709f7da09f5353b107b2ad7a8e8c900dc8260 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 6 Oct 2021 02:33:26 +0200 Subject: [PATCH] filter/denoising: Update Source Identifier --- source/filters/filter-denoising.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/filters/filter-denoising.cpp b/source/filters/filter-denoising.cpp index 5209d4f4..9f415662 100644 --- a/source/filters/filter-denoising.cpp +++ b/source/filters/filter-denoising.cpp @@ -506,12 +506,15 @@ denoising_factory::denoising_factory() } // 3. In any other case, register the filter! - _info.id = S_PREFIX "filter-video-denoising"; + _info.id = S_PREFIX "filter-denoising"; _info.type = OBS_SOURCE_TYPE_FILTER; _info.output_flags = OBS_SOURCE_VIDEO; set_resolution_enabled(true); finish_setup(); + + // Proxies + register_proxy("streamfx-filter-video-denoising"); } const char* denoising_factory::get_name()