|
|
@@ -25,7 +25,12 @@ OBS_DECLARE_MODULE()
|
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("linux-xshm", "en-US")
|
|
|
MODULE_EXPORT const char *obs_module_description(void)
|
|
|
{
|
|
|
- return "xcomposite/xshm based window/screen capture for X11";
|
|
|
+#ifdef ENABLE_PIPEWIRE
|
|
|
+ if (obs_get_nix_platform() != OBS_NIX_PLATFORM_X11_GLX)
|
|
|
+ return "PipeWire based window/screen capture for X11 and Wayland";
|
|
|
+ else
|
|
|
+#endif
|
|
|
+ return "xcomposite/xshm based window/screen capture for X11";
|
|
|
}
|
|
|
|
|
|
extern struct obs_source_info xshm_input;
|