From e4fdd61c74dc8e9653b2eac1b6f84828b5866799 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Wed, 14 Jan 2015 01:07:41 -0800 Subject: [PATCH] libobs: Clarify comment on obs_source_set_flags The comment says "these are different", but doesn't state why. Actually, I should really rename the output flags so they're not flags, but instead just "caps", because that's really all that they are. --- libobs/obs.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libobs/obs.h b/libobs/obs.h index 8933d4399..e6f64886c 100644 --- a/libobs/obs.h +++ b/libobs/obs.h @@ -761,8 +761,11 @@ EXPORT void obs_source_load(obs_source_t *source); /** Specifies to force audio to mono */ #define OBS_SOURCE_FLAG_FORCE_MONO (1<<1) -/** Sets source flags. Note that these are different from the main output - * flags. */ +/** + * Sets source flags. Note that these are different from the main output + * flags. These are generally things that can be set by the source or user, + * while the output flags are more used to determine capabilities of a source. + */ EXPORT void obs_source_set_flags(obs_source_t *source, uint32_t flags); /** Gets source flags. */