7e3656ab33
- Remove unnecessary UNUSED_PARAMETER - Add OBS_UNUSED attribute to unused parameters - Also removes unused variables
757 lines
20 KiB
C
757 lines
20 KiB
C
#include <windows.h>
|
|
|
|
#include <obs-module.h>
|
|
#include <util/dstr.h>
|
|
#include <util/threading.h>
|
|
|
|
#include "cursor-capture.h"
|
|
#include "../../libobs/util/platform.h"
|
|
#include "../../libobs-winrt/winrt-capture.h"
|
|
|
|
#define do_log(level, format, ...) \
|
|
blog(level, "[duplicator-monitor-capture: '%s'] " format, \
|
|
obs_source_get_name(capture->source), ##__VA_ARGS__)
|
|
|
|
#define warn(format, ...) do_log(LOG_WARNING, format, ##__VA_ARGS__)
|
|
#define info(format, ...) do_log(LOG_INFO, format, ##__VA_ARGS__)
|
|
#define debug(format, ...) do_log(LOG_DEBUG, format, ##__VA_ARGS__)
|
|
|
|
/* clang-format off */
|
|
|
|
#define TEXT_MONITOR_CAPTURE obs_module_text("MonitorCapture")
|
|
#define TEXT_CAPTURE_CURSOR obs_module_text("CaptureCursor")
|
|
#define TEXT_COMPATIBILITY obs_module_text("Compatibility")
|
|
#define TEXT_MONITOR obs_module_text("Monitor")
|
|
#define TEXT_PRIMARY_MONITOR obs_module_text("PrimaryMonitor")
|
|
#define TEXT_METHOD obs_module_text("Method")
|
|
#define TEXT_METHOD_AUTO obs_module_text("WindowCapture.Method.Auto")
|
|
#define TEXT_METHOD_DXGI obs_module_text("Method.DXGI")
|
|
#define TEXT_METHOD_WGC obs_module_text("Method.WindowsGraphicsCapture")
|
|
|
|
/* clang-format on */
|
|
|
|
#define RESET_INTERVAL_SEC 3.0f
|
|
|
|
typedef BOOL (*PFN_winrt_capture_supported)();
|
|
typedef BOOL (*PFN_winrt_capture_cursor_toggle_supported)();
|
|
typedef struct winrt_capture *(*PFN_winrt_capture_init_monitor)(
|
|
BOOL cursor, HMONITOR monitor);
|
|
typedef void (*PFN_winrt_capture_free)(struct winrt_capture *capture);
|
|
|
|
typedef BOOL (*PFN_winrt_capture_active)(const struct winrt_capture *capture);
|
|
typedef enum gs_color_space (*PFN_winrt_capture_get_color_space)(
|
|
const struct winrt_capture *capture);
|
|
typedef void (*PFN_winrt_capture_render)(struct winrt_capture *capture);
|
|
typedef uint32_t (*PFN_winrt_capture_width)(const struct winrt_capture *capture);
|
|
typedef uint32_t (*PFN_winrt_capture_height)(
|
|
const struct winrt_capture *capture);
|
|
|
|
struct winrt_exports {
|
|
PFN_winrt_capture_supported winrt_capture_supported;
|
|
PFN_winrt_capture_cursor_toggle_supported
|
|
winrt_capture_cursor_toggle_supported;
|
|
PFN_winrt_capture_init_monitor winrt_capture_init_monitor;
|
|
PFN_winrt_capture_free winrt_capture_free;
|
|
PFN_winrt_capture_active winrt_capture_active;
|
|
PFN_winrt_capture_get_color_space winrt_capture_get_color_space;
|
|
PFN_winrt_capture_render winrt_capture_render;
|
|
PFN_winrt_capture_width winrt_capture_width;
|
|
PFN_winrt_capture_height winrt_capture_height;
|
|
};
|
|
|
|
enum display_capture_method {
|
|
METHOD_AUTO,
|
|
METHOD_DXGI,
|
|
METHOD_WGC,
|
|
};
|
|
|
|
struct duplicator_capture {
|
|
obs_source_t *source;
|
|
pthread_mutex_t update_mutex;
|
|
int monitor;
|
|
int dxgi_index;
|
|
enum display_capture_method method;
|
|
bool reset_wgc;
|
|
HMONITOR handle;
|
|
bool capture_cursor;
|
|
bool showing;
|
|
LONG logged_width;
|
|
LONG logged_height;
|
|
|
|
long x;
|
|
long y;
|
|
int rot;
|
|
uint32_t width;
|
|
uint32_t height;
|
|
gs_duplicator_t *duplicator;
|
|
float reset_timeout;
|
|
struct cursor_data cursor_data;
|
|
|
|
void *winrt_module;
|
|
struct winrt_exports exports;
|
|
struct winrt_capture *capture_winrt;
|
|
};
|
|
|
|
struct wgc_monitor_info {
|
|
int cur_id;
|
|
int desired_id;
|
|
int id;
|
|
RECT rect;
|
|
HMONITOR handle;
|
|
};
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
static const char *get_method_name(int method)
|
|
{
|
|
const char *method_name = "";
|
|
switch (method) {
|
|
case METHOD_DXGI:
|
|
method_name = "DXGI";
|
|
break;
|
|
case METHOD_WGC:
|
|
method_name = "WGC";
|
|
break;
|
|
}
|
|
|
|
return method_name;
|
|
}
|
|
|
|
static BOOL CALLBACK enum_monitor(HMONITOR handle, HDC hdc, LPRECT rect,
|
|
LPARAM param)
|
|
{
|
|
struct wgc_monitor_info *monitor = (struct wgc_monitor_info *)param;
|
|
|
|
if (monitor->cur_id == 0 || monitor->desired_id == monitor->cur_id) {
|
|
monitor->id = monitor->cur_id;
|
|
monitor->rect = *rect;
|
|
monitor->handle = handle;
|
|
}
|
|
|
|
UNUSED_PARAMETER(hdc);
|
|
return (monitor->desired_id > monitor->cur_id++);
|
|
}
|
|
|
|
static void log_settings(struct duplicator_capture *capture, int monitor,
|
|
LONG width, LONG height)
|
|
{
|
|
info("update settings:\n"
|
|
"\tdisplay: %d (%ldx%ld)\n"
|
|
"\tcursor: %s\n"
|
|
"\tmethod: %s",
|
|
monitor + 1, width, height,
|
|
capture->capture_cursor ? "true" : "false",
|
|
get_method_name(capture->method));
|
|
}
|
|
|
|
static enum display_capture_method
|
|
choose_method(enum display_capture_method method, bool wgc_supported,
|
|
HMONITOR monitor, int *dxgi_index)
|
|
{
|
|
if (!wgc_supported)
|
|
method = METHOD_DXGI;
|
|
|
|
if (method != METHOD_WGC) {
|
|
obs_enter_graphics();
|
|
*dxgi_index = gs_duplicator_get_monitor_index(monitor);
|
|
obs_leave_graphics();
|
|
}
|
|
|
|
if (method == METHOD_AUTO) {
|
|
method = METHOD_DXGI;
|
|
if (*dxgi_index == -1) {
|
|
method = METHOD_WGC;
|
|
} else {
|
|
SYSTEM_POWER_STATUS status;
|
|
if (GetSystemPowerStatus(&status) &&
|
|
status.BatteryFlag < 128) {
|
|
obs_enter_graphics();
|
|
const uint32_t count = gs_get_adapter_count();
|
|
obs_leave_graphics();
|
|
if (count >= 2)
|
|
method = METHOD_WGC;
|
|
}
|
|
}
|
|
}
|
|
|
|
return method;
|
|
}
|
|
|
|
extern bool wgc_supported;
|
|
|
|
static inline void update_settings(struct duplicator_capture *capture,
|
|
obs_data_t *settings)
|
|
{
|
|
pthread_mutex_lock(&capture->update_mutex);
|
|
|
|
struct wgc_monitor_info monitor = {0};
|
|
monitor.desired_id = (int)obs_data_get_int(settings, "monitor");
|
|
EnumDisplayMonitors(NULL, NULL, enum_monitor, (LPARAM)&monitor);
|
|
|
|
capture->method = choose_method(
|
|
(int)obs_data_get_int(settings, "method"), wgc_supported,
|
|
monitor.handle, &capture->dxgi_index);
|
|
|
|
capture->monitor = monitor.id;
|
|
capture->handle = monitor.handle;
|
|
|
|
capture->capture_cursor = obs_data_get_bool(settings, "capture_cursor");
|
|
|
|
capture->logged_width = monitor.rect.right - monitor.rect.left;
|
|
capture->logged_height = monitor.rect.bottom - monitor.rect.top;
|
|
|
|
if (capture->duplicator) {
|
|
obs_enter_graphics();
|
|
|
|
gs_duplicator_destroy(capture->duplicator);
|
|
capture->duplicator = NULL;
|
|
|
|
obs_leave_graphics();
|
|
}
|
|
|
|
capture->width = 0;
|
|
capture->height = 0;
|
|
capture->x = 0;
|
|
capture->y = 0;
|
|
capture->rot = 0;
|
|
capture->reset_timeout = RESET_INTERVAL_SEC;
|
|
|
|
pthread_mutex_unlock(&capture->update_mutex);
|
|
}
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
static const char *duplicator_capture_getname(void *unused)
|
|
{
|
|
UNUSED_PARAMETER(unused);
|
|
return TEXT_MONITOR_CAPTURE;
|
|
}
|
|
|
|
static void duplicator_actual_destroy(void *data)
|
|
{
|
|
struct duplicator_capture *capture = data;
|
|
|
|
if (capture->capture_winrt) {
|
|
capture->exports.winrt_capture_free(capture->capture_winrt);
|
|
capture->capture_winrt = NULL;
|
|
}
|
|
|
|
obs_enter_graphics();
|
|
|
|
if (capture->duplicator) {
|
|
gs_duplicator_destroy(capture->duplicator);
|
|
capture->duplicator = NULL;
|
|
}
|
|
|
|
cursor_data_free(&capture->cursor_data);
|
|
|
|
obs_leave_graphics();
|
|
|
|
if (capture->winrt_module) {
|
|
os_dlclose(capture->winrt_module);
|
|
capture->winrt_module = NULL;
|
|
}
|
|
|
|
pthread_mutex_destroy(&capture->update_mutex);
|
|
|
|
bfree(capture);
|
|
}
|
|
|
|
static void duplicator_capture_destroy(void *data)
|
|
{
|
|
obs_queue_task(OBS_TASK_GRAPHICS, duplicator_actual_destroy, data,
|
|
false);
|
|
}
|
|
|
|
static void duplicator_capture_defaults(obs_data_t *settings)
|
|
{
|
|
obs_data_set_default_int(settings, "method", METHOD_AUTO);
|
|
obs_data_set_default_int(settings, "monitor", 0);
|
|
obs_data_set_default_int(settings, "monitor_wgc", 0);
|
|
obs_data_set_default_bool(settings, "capture_cursor", true);
|
|
}
|
|
|
|
static void duplicator_capture_update(void *data, obs_data_t *settings)
|
|
{
|
|
struct duplicator_capture *mc = data;
|
|
update_settings(mc, settings);
|
|
log_settings(mc, mc->monitor, mc->logged_width, mc->logged_height);
|
|
|
|
mc->reset_wgc = true;
|
|
}
|
|
|
|
#define WINRT_IMPORT(func) \
|
|
do { \
|
|
exports->func = (PFN_##func)os_dlsym(module, #func); \
|
|
if (!exports->func) { \
|
|
success = false; \
|
|
blog(LOG_ERROR, \
|
|
"Could not load function '%s' from " \
|
|
"module '%s'", \
|
|
#func, module_name); \
|
|
} \
|
|
} while (false)
|
|
|
|
static bool load_winrt_imports(struct winrt_exports *exports, void *module,
|
|
const char *module_name)
|
|
{
|
|
bool success = true;
|
|
|
|
WINRT_IMPORT(winrt_capture_supported);
|
|
WINRT_IMPORT(winrt_capture_cursor_toggle_supported);
|
|
WINRT_IMPORT(winrt_capture_init_monitor);
|
|
WINRT_IMPORT(winrt_capture_free);
|
|
WINRT_IMPORT(winrt_capture_active);
|
|
WINRT_IMPORT(winrt_capture_get_color_space);
|
|
WINRT_IMPORT(winrt_capture_render);
|
|
WINRT_IMPORT(winrt_capture_width);
|
|
WINRT_IMPORT(winrt_capture_height);
|
|
|
|
return success;
|
|
}
|
|
|
|
extern bool graphics_uses_d3d11;
|
|
|
|
static void *duplicator_capture_create(obs_data_t *settings,
|
|
obs_source_t *source)
|
|
{
|
|
struct duplicator_capture *capture;
|
|
|
|
capture = bzalloc(sizeof(struct duplicator_capture));
|
|
capture->source = source;
|
|
|
|
pthread_mutex_init(&capture->update_mutex, NULL);
|
|
|
|
if (graphics_uses_d3d11) {
|
|
static const char *const module = "libobs-winrt";
|
|
capture->winrt_module = os_dlopen(module);
|
|
if (capture->winrt_module) {
|
|
load_winrt_imports(&capture->exports,
|
|
capture->winrt_module, module);
|
|
}
|
|
}
|
|
|
|
update_settings(capture, settings);
|
|
log_settings(capture, capture->monitor, capture->logged_width,
|
|
capture->logged_height);
|
|
|
|
return capture;
|
|
}
|
|
|
|
static void reset_capture_data(struct duplicator_capture *capture)
|
|
{
|
|
struct gs_monitor_info monitor_info = {0};
|
|
gs_texture_t *texture = gs_duplicator_get_texture(capture->duplicator);
|
|
|
|
gs_get_duplicator_monitor_info(capture->dxgi_index, &monitor_info);
|
|
if (texture) {
|
|
capture->width = gs_texture_get_width(texture);
|
|
capture->height = gs_texture_get_height(texture);
|
|
} else {
|
|
capture->width = 0;
|
|
capture->height = 0;
|
|
}
|
|
capture->x = monitor_info.x;
|
|
capture->y = monitor_info.y;
|
|
capture->rot = monitor_info.rotation_degrees;
|
|
}
|
|
|
|
static void free_capture_data(struct duplicator_capture *capture)
|
|
{
|
|
if (capture->capture_winrt) {
|
|
capture->exports.winrt_capture_free(capture->capture_winrt);
|
|
capture->capture_winrt = NULL;
|
|
}
|
|
|
|
if (capture->duplicator) {
|
|
gs_duplicator_destroy(capture->duplicator);
|
|
capture->duplicator = NULL;
|
|
}
|
|
|
|
cursor_data_free(&capture->cursor_data);
|
|
|
|
capture->width = 0;
|
|
capture->height = 0;
|
|
capture->x = 0;
|
|
capture->y = 0;
|
|
capture->rot = 0;
|
|
capture->reset_timeout = 0.0f;
|
|
}
|
|
|
|
static void duplicator_capture_tick(void *data, float seconds)
|
|
{
|
|
struct duplicator_capture *capture = data;
|
|
|
|
/* completely shut down monitor capture if not in use, otherwise it can
|
|
* sometimes generate system lag when a game is in fullscreen mode */
|
|
if (!obs_source_showing(capture->source)) {
|
|
if (capture->showing) {
|
|
obs_enter_graphics();
|
|
free_capture_data(capture);
|
|
obs_leave_graphics();
|
|
|
|
capture->showing = false;
|
|
}
|
|
return;
|
|
}
|
|
|
|
/* always try to load the capture immediately when the source is first
|
|
* shown */
|
|
if (!capture->showing) {
|
|
capture->reset_timeout = RESET_INTERVAL_SEC;
|
|
}
|
|
|
|
obs_enter_graphics();
|
|
|
|
if (capture->method == METHOD_WGC) {
|
|
if (capture->reset_wgc && capture->capture_winrt) {
|
|
capture->exports.winrt_capture_free(
|
|
capture->capture_winrt);
|
|
capture->capture_winrt = NULL;
|
|
capture->reset_wgc = false;
|
|
capture->reset_timeout = RESET_INTERVAL_SEC;
|
|
}
|
|
|
|
if (!capture->capture_winrt) {
|
|
capture->reset_timeout += seconds;
|
|
|
|
if (capture->reset_timeout >= RESET_INTERVAL_SEC) {
|
|
capture->capture_winrt =
|
|
capture->exports
|
|
.winrt_capture_init_monitor(
|
|
capture->capture_cursor,
|
|
capture->handle);
|
|
|
|
capture->reset_timeout = 0.0f;
|
|
}
|
|
}
|
|
} else {
|
|
if (capture->capture_winrt) {
|
|
capture->exports.winrt_capture_free(
|
|
capture->capture_winrt);
|
|
capture->capture_winrt = NULL;
|
|
}
|
|
|
|
if (!capture->duplicator) {
|
|
capture->reset_timeout += seconds;
|
|
|
|
if (capture->reset_timeout >= RESET_INTERVAL_SEC) {
|
|
capture->duplicator = gs_duplicator_create(
|
|
capture->dxgi_index);
|
|
|
|
capture->reset_timeout = 0.0f;
|
|
}
|
|
}
|
|
|
|
if (capture->duplicator) {
|
|
if (capture->capture_cursor)
|
|
cursor_capture(&capture->cursor_data);
|
|
|
|
if (!gs_duplicator_update_frame(capture->duplicator)) {
|
|
free_capture_data(capture);
|
|
|
|
} else if (capture->width == 0) {
|
|
reset_capture_data(capture);
|
|
}
|
|
}
|
|
}
|
|
|
|
obs_leave_graphics();
|
|
|
|
if (!capture->showing)
|
|
capture->showing = true;
|
|
}
|
|
|
|
static uint32_t duplicator_capture_width(void *data)
|
|
{
|
|
struct duplicator_capture *capture = data;
|
|
return (capture->method == METHOD_WGC)
|
|
? capture->exports.winrt_capture_width(
|
|
capture->capture_winrt)
|
|
: (capture->rot % 180 == 0 ? capture->width
|
|
: capture->height);
|
|
}
|
|
|
|
static uint32_t duplicator_capture_height(void *data)
|
|
{
|
|
struct duplicator_capture *capture = data;
|
|
return (capture->method == METHOD_WGC)
|
|
? capture->exports.winrt_capture_height(
|
|
capture->capture_winrt)
|
|
: (capture->rot % 180 == 0 ? capture->height
|
|
: capture->width);
|
|
}
|
|
|
|
static void draw_cursor(struct duplicator_capture *capture)
|
|
{
|
|
cursor_draw(&capture->cursor_data, -capture->x, -capture->y,
|
|
capture->rot % 180 == 0 ? capture->width : capture->height,
|
|
capture->rot % 180 == 0 ? capture->height : capture->width);
|
|
}
|
|
|
|
static void duplicator_capture_render(void *data, gs_effect_t *unused)
|
|
{
|
|
UNUSED_PARAMETER(unused);
|
|
|
|
struct duplicator_capture *capture = data;
|
|
|
|
if (capture->method == METHOD_WGC) {
|
|
if (capture->capture_winrt) {
|
|
if (capture->exports.winrt_capture_active(
|
|
capture->capture_winrt)) {
|
|
capture->exports.winrt_capture_render(
|
|
capture->capture_winrt);
|
|
} else {
|
|
capture->exports.winrt_capture_free(
|
|
capture->capture_winrt);
|
|
capture->capture_winrt = NULL;
|
|
}
|
|
}
|
|
} else {
|
|
if (!capture->duplicator)
|
|
return;
|
|
|
|
gs_texture_t *const texture =
|
|
gs_duplicator_get_texture(capture->duplicator);
|
|
if (!texture)
|
|
return;
|
|
|
|
const bool previous = gs_framebuffer_srgb_enabled();
|
|
gs_enable_framebuffer_srgb(true);
|
|
gs_enable_blending(false);
|
|
|
|
const int rot = capture->rot;
|
|
if (rot != 0) {
|
|
float x = 0.0f;
|
|
float y = 0.0f;
|
|
|
|
switch (rot) {
|
|
case 90:
|
|
x = (float)capture->height;
|
|
break;
|
|
case 180:
|
|
x = (float)capture->width;
|
|
y = (float)capture->height;
|
|
break;
|
|
case 270:
|
|
y = (float)capture->width;
|
|
break;
|
|
}
|
|
|
|
gs_matrix_push();
|
|
gs_matrix_translate3f(x, y, 0.0f);
|
|
gs_matrix_rotaa4f(0.0f, 0.0f, 1.0f, RAD((float)rot));
|
|
}
|
|
|
|
const char *tech_name = "Draw";
|
|
float multiplier = 1.f;
|
|
const enum gs_color_space current_space = gs_get_color_space();
|
|
if (gs_texture_get_color_format(texture) == GS_RGBA16F) {
|
|
switch (current_space) {
|
|
case GS_CS_SRGB:
|
|
case GS_CS_SRGB_16F:
|
|
tech_name = "DrawMultiplyTonemap";
|
|
multiplier =
|
|
80.f / obs_get_video_sdr_white_level();
|
|
break;
|
|
case GS_CS_709_EXTENDED:
|
|
tech_name = "DrawMultiply";
|
|
multiplier =
|
|
80.f / obs_get_video_sdr_white_level();
|
|
}
|
|
} else if (current_space == GS_CS_709_SCRGB) {
|
|
tech_name = "DrawMultiply";
|
|
multiplier = obs_get_video_sdr_white_level() / 80.f;
|
|
}
|
|
|
|
gs_effect_t *const opaque_effect =
|
|
obs_get_base_effect(OBS_EFFECT_OPAQUE);
|
|
gs_eparam_t *multiplier_param = gs_effect_get_param_by_name(
|
|
opaque_effect, "multiplier");
|
|
gs_effect_set_float(multiplier_param, multiplier);
|
|
gs_eparam_t *image_param =
|
|
gs_effect_get_param_by_name(opaque_effect, "image");
|
|
gs_effect_set_texture_srgb(image_param, texture);
|
|
|
|
while (gs_effect_loop(opaque_effect, tech_name)) {
|
|
gs_draw_sprite(texture, 0, 0, 0);
|
|
}
|
|
|
|
if (rot != 0)
|
|
gs_matrix_pop();
|
|
|
|
gs_enable_blending(true);
|
|
gs_enable_framebuffer_srgb(previous);
|
|
|
|
if (capture->capture_cursor) {
|
|
gs_effect_t *const default_effect =
|
|
obs_get_base_effect(OBS_EFFECT_DEFAULT);
|
|
|
|
while (gs_effect_loop(default_effect, "Draw")) {
|
|
draw_cursor(capture);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static BOOL CALLBACK enum_monitor_props(HMONITOR handle, HDC hdc, LPRECT rect,
|
|
LPARAM param)
|
|
{
|
|
UNUSED_PARAMETER(hdc);
|
|
UNUSED_PARAMETER(rect);
|
|
|
|
obs_property_t *monitor_list = (obs_property_t *)param;
|
|
MONITORINFO mi;
|
|
size_t monitor_id = 0;
|
|
struct dstr monitor_desc = {0};
|
|
struct dstr resolution = {0};
|
|
struct dstr format_string = {0};
|
|
|
|
monitor_id = obs_property_list_item_count(monitor_list);
|
|
|
|
mi.cbSize = sizeof(mi);
|
|
GetMonitorInfo(handle, &mi);
|
|
|
|
dstr_catf(&resolution, "%dx%d @ %d,%d",
|
|
mi.rcMonitor.right - mi.rcMonitor.left,
|
|
mi.rcMonitor.bottom - mi.rcMonitor.top, mi.rcMonitor.left,
|
|
mi.rcMonitor.top);
|
|
|
|
dstr_copy(&format_string, "%s %d: %s");
|
|
if (mi.dwFlags == MONITORINFOF_PRIMARY) {
|
|
dstr_catf(&format_string, " (%s)", TEXT_PRIMARY_MONITOR);
|
|
}
|
|
|
|
dstr_catf(&monitor_desc, format_string.array, TEXT_MONITOR,
|
|
monitor_id + 1, resolution.array);
|
|
|
|
obs_property_list_add_int(monitor_list, monitor_desc.array,
|
|
(int)monitor_id);
|
|
|
|
dstr_free(&monitor_desc);
|
|
dstr_free(&resolution);
|
|
dstr_free(&format_string);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void update_settings_visibility(obs_properties_t *props,
|
|
struct duplicator_capture *capture)
|
|
{
|
|
pthread_mutex_lock(&capture->update_mutex);
|
|
|
|
const enum window_capture_method method = capture->method;
|
|
const bool dxgi_options = method == METHOD_DXGI;
|
|
const bool wgc_options = method == METHOD_WGC;
|
|
|
|
const bool wgc_cursor_toggle =
|
|
wgc_options &&
|
|
capture->exports.winrt_capture_cursor_toggle_supported();
|
|
|
|
obs_property_t *p = obs_properties_get(props, "cursor");
|
|
obs_property_set_visible(p, dxgi_options || wgc_cursor_toggle);
|
|
|
|
pthread_mutex_unlock(&capture->update_mutex);
|
|
}
|
|
|
|
static bool display_capture_method_changed(obs_properties_t *props,
|
|
obs_property_t *p,
|
|
obs_data_t *settings)
|
|
{
|
|
UNUSED_PARAMETER(p);
|
|
|
|
struct duplicator_capture *capture = obs_properties_get_param(props);
|
|
if (!capture)
|
|
return false;
|
|
|
|
update_settings(capture, settings);
|
|
|
|
update_settings_visibility(props, capture);
|
|
|
|
return true;
|
|
}
|
|
|
|
static obs_properties_t *duplicator_capture_properties(void *data)
|
|
{
|
|
struct duplicator_capture *capture = data;
|
|
|
|
obs_properties_t *props = obs_properties_create();
|
|
obs_properties_set_param(props, capture, NULL);
|
|
|
|
obs_property_t *p = obs_properties_add_list(props, "method",
|
|
TEXT_METHOD,
|
|
OBS_COMBO_TYPE_LIST,
|
|
OBS_COMBO_FORMAT_INT);
|
|
obs_property_list_add_int(p, TEXT_METHOD_AUTO, METHOD_AUTO);
|
|
obs_property_list_add_int(p, TEXT_METHOD_DXGI, METHOD_DXGI);
|
|
obs_property_list_add_int(p, TEXT_METHOD_WGC, METHOD_WGC);
|
|
obs_property_list_item_disable(p, 2, !wgc_supported);
|
|
obs_property_set_modified_callback(p, display_capture_method_changed);
|
|
|
|
obs_property_t *monitors = obs_properties_add_list(
|
|
props, "monitor", TEXT_MONITOR, OBS_COMBO_TYPE_LIST,
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_properties_add_bool(props, "capture_cursor", TEXT_CAPTURE_CURSOR);
|
|
|
|
EnumDisplayMonitors(NULL, NULL, enum_monitor_props, (LPARAM)monitors);
|
|
|
|
return props;
|
|
}
|
|
|
|
enum gs_color_space
|
|
duplicator_capture_get_color_space(void *data, size_t count,
|
|
const enum gs_color_space *preferred_spaces)
|
|
{
|
|
enum gs_color_space capture_space = GS_CS_SRGB;
|
|
|
|
struct duplicator_capture *capture = data;
|
|
if (capture->method == METHOD_WGC) {
|
|
if (capture->capture_winrt) {
|
|
capture_space =
|
|
capture->exports.winrt_capture_get_color_space(
|
|
capture->capture_winrt);
|
|
}
|
|
} else {
|
|
if (capture->duplicator) {
|
|
gs_texture_t *const texture =
|
|
gs_duplicator_get_texture(capture->duplicator);
|
|
if (texture) {
|
|
capture_space = (gs_texture_get_color_format(
|
|
texture) == GS_RGBA16F)
|
|
? GS_CS_709_EXTENDED
|
|
: GS_CS_SRGB;
|
|
}
|
|
}
|
|
}
|
|
|
|
enum gs_color_space space = capture_space;
|
|
for (size_t i = 0; i < count; ++i) {
|
|
const enum gs_color_space preferred_space = preferred_spaces[i];
|
|
space = preferred_space;
|
|
if (preferred_space == capture_space)
|
|
break;
|
|
}
|
|
|
|
return space;
|
|
}
|
|
|
|
struct obs_source_info duplicator_capture_info = {
|
|
.id = "monitor_capture",
|
|
.type = OBS_SOURCE_TYPE_INPUT,
|
|
.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW |
|
|
OBS_SOURCE_DO_NOT_DUPLICATE | OBS_SOURCE_SRGB,
|
|
.get_name = duplicator_capture_getname,
|
|
.create = duplicator_capture_create,
|
|
.destroy = duplicator_capture_destroy,
|
|
.video_render = duplicator_capture_render,
|
|
.video_tick = duplicator_capture_tick,
|
|
.update = duplicator_capture_update,
|
|
.get_width = duplicator_capture_width,
|
|
.get_height = duplicator_capture_height,
|
|
.get_defaults = duplicator_capture_defaults,
|
|
.get_properties = duplicator_capture_properties,
|
|
.icon_type = OBS_ICON_TYPE_DESKTOP_CAPTURE,
|
|
.video_get_color_space = duplicator_capture_get_color_space,
|
|
};
|