From 270d29925872a5c0e47cc9a987f22bb84494c8ce Mon Sep 17 00:00:00 2001 From: jpark37 Date: Fri, 19 Aug 2022 22:07:15 -0700 Subject: [PATCH] mac-capture: Clip gamut to sRGB Mac likes P3, but OBS only supports sRGB for SDR. --- plugins/mac-capture/mac-screen-capture.m | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/mac-capture/mac-screen-capture.m b/plugins/mac-capture/mac-screen-capture.m index d6cc252e2..901ba4502 100644 --- a/plugins/mac-capture/mac-screen-capture.m +++ b/plugins/mac-capture/mac-screen-capture.m @@ -474,6 +474,7 @@ static bool init_screen_stream(struct screen_capture *sc) os_sem_post(sc->shareable_content_available); [sc->stream_properties setQueueDepth:8]; [sc->stream_properties setShowsCursor:!sc->hide_cursor]; + [sc->stream_properties setColorSpaceName:kCGColorSpaceSRGB]; [sc->stream_properties setPixelFormat:'BGRA']; #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 130000 if (@available(macOS 13.0, *)) {