Browse Source

mac-capture: Clip gamut to sRGB

Mac likes P3, but OBS only supports sRGB for SDR.
jpark37 3 years ago
parent
commit
270d299258
1 changed files with 1 additions and 0 deletions
  1. 1 0
      plugins/mac-capture/mac-screen-capture.m

+ 1 - 0
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, *)) {