From 6a567eded646b2d97a755cd53bf35b0ef6f437d7 Mon Sep 17 00:00:00 2001 From: Exeldro Date: Sun, 19 Apr 2020 09:11:32 +0200 Subject: [PATCH] libobs: Don't check filter compatibility on not loaded sources --- libobs/obs-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/obs-source.c b/libobs/obs-source.c index 90b6a35f3..10301b501 100644 --- a/libobs/obs-source.c +++ b/libobs/obs-source.c @@ -2368,7 +2368,7 @@ void obs_source_filter_add(obs_source_t *source, obs_source_t *filter) return; } - if (!filter_compatible(source, filter)) { + if (!source->owns_info_id && !filter_compatible(source, filter)) { pthread_mutex_unlock(&source->filter_mutex); return; }