forked from exeldro/obs-downstream-keyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput-source.c
237 lines (207 loc) · 6.34 KB
/
output-source.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include <obs-module.h>
#include <stdio.h>
#include <obs-frontend-api.h>
#include <util/dstr.h>
struct output_source_context {
obs_source_t *source;
bool rendering;
char *view_name;
uint32_t channel;
obs_source_t *outputSource;
uint32_t width;
uint32_t height;
struct vec4 color;
};
size_t get_view_count();
const char *get_view_name(size_t idx);
obs_view_t *get_view_by_name(const char *view_name);
static const char *output_source_get_name(void *type_data)
{
UNUSED_PARAMETER(type_data);
return obs_module_text("OutputSource");
}
static void output_source_update(void *data, obs_data_t *settings)
{
struct output_source_context *context = data;
const char *view_name = obs_data_get_string(settings, "view");
if (!context->view_name || strcmp(view_name, context->view_name) != 0) {
bfree(context->view_name);
context->view_name = bstrdup(view_name);
}
context->channel = (uint32_t)obs_data_get_int(settings, "channel");
vec4_from_rgba(&context->color,
(uint32_t)obs_data_get_int(settings, "color"));
}
static void *output_source_create(obs_data_t *settings, obs_source_t *source)
{
struct output_source_context *context =
bzalloc(sizeof(struct output_source_context));
context->source = source;
output_source_update(context, settings);
return context;
}
static void output_source_destroy(void *data)
{
struct output_source_context *context = data;
bfree(context->view_name);
bfree(context);
}
#define channel_name_count 7
static char *channel_names[] = {"StudioMode.Program", "Basic.DesktopDevice1",
"Basic.DesktopDevice2", "Basic.AuxDevice1",
"Basic.AuxDevice2", "Basic.AuxDevice3",
"Basic.AuxDevice4"};
static bool view_changed(void *priv, obs_properties_t *props,
obs_property_t *property, obs_data_t *settings)
{
UNUSED_PARAMETER(priv);
UNUSED_PARAMETER(property);
obs_property_t *channels = obs_properties_get(props, "channel");
const char *view_name = obs_data_get_string(settings, "view");
bool changed = false;
struct dstr buffer = {0};
obs_view_t *view = get_view_by_name(view_name);
for (uint32_t i = 0; i < MAX_CHANNELS; i++) {
if (i >= channel_name_count || (strlen(view_name) && i > 0)) {
dstr_printf(&buffer, "%i", i);
} else {
dstr_copy(&buffer, obs_frontend_get_locale_string(
channel_names[i]));
}
obs_source_t *source = view ? obs_view_get_source(view, i)
: obs_get_output_source(i);
if (source) {
if (obs_source_get_type(source) ==
OBS_SOURCE_TYPE_TRANSITION) {
obs_source_t *transition = source;
source = obs_transition_get_active_source(
transition);
if (source) {
obs_source_release(transition);
} else {
source = transition;
}
}
dstr_cat(&buffer, " - ");
dstr_cat(&buffer, obs_source_get_name(source));
obs_source_release(source);
}
if (strcmp(buffer.array,
obs_property_list_item_name(channels, i)) != 0) {
obs_property_list_item_remove(channels, i);
obs_property_list_insert_int(channels, i, buffer.array,
i);
changed = true;
}
}
dstr_free(&buffer);
return changed;
}
static obs_properties_t *output_source_properties(void *data)
{
obs_properties_t *ppts = obs_properties_create();
size_t c = get_view_count();
if (c > 1) {
obs_property_t *p = obs_properties_add_list(
ppts, "view", obs_module_text("View"),
OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
for (size_t i = 0; i < c; i++) {
const char *name = get_view_name(i);
obs_property_list_add_string(p, name, name);
}
obs_property_set_modified_callback2(p, view_changed, data);
}
obs_property_t *p = obs_properties_add_list(ppts, "channel",
obs_module_text("Channel"),
OBS_COMBO_TYPE_LIST,
OBS_COMBO_FORMAT_INT);
char buffer[10];
for (int i = 0; i < MAX_CHANNELS; i++) {
if (i < channel_name_count) {
obs_property_list_add_int(
p,
obs_frontend_get_locale_string(
channel_names[i]),
i);
} else {
snprintf(buffer, 10, "%i", i);
obs_property_list_add_int(p, buffer, i);
}
}
obs_properties_add_color(ppts, "color",
obs_module_text("FallbackColor"));
return ppts;
}
void output_source_defaults(obs_data_t *settings)
{
UNUSED_PARAMETER(settings);
}
static void output_source_video_render(void *data, gs_effect_t *effect)
{
UNUSED_PARAMETER(effect);
struct output_source_context *context = data;
if (context->rendering || !context->outputSource) {
gs_effect_t *solid = obs_get_base_effect(OBS_EFFECT_SOLID);
gs_eparam_t *color =
gs_effect_get_param_by_name(solid, "color");
gs_technique_t *tech = gs_effect_get_technique(solid, "Solid");
gs_effect_set_vec4(color, &context->color);
gs_technique_begin(tech);
gs_technique_begin_pass(tech, 0);
gs_draw_sprite(0, 0, context->width, context->height);
gs_technique_end_pass(tech);
gs_technique_end(tech);
return;
}
context->rendering = true;
obs_source_video_render(context->outputSource);
context->rendering = false;
}
static uint32_t output_source_getwidth(void *data)
{
struct output_source_context *context = data;
return context->width;
}
static uint32_t output_source_getheight(void *data)
{
struct output_source_context *context = data;
return context->height;
}
static void output_source_video_tick(void *data, float seconds)
{
UNUSED_PARAMETER(seconds);
struct output_source_context *context = data;
obs_view_t *view = NULL;
if (strlen(context->view_name))
view = get_view_by_name(context->view_name);
obs_source_t *source =
view ? obs_view_get_source(view, context->channel)
: obs_get_output_source(context->channel);
if (!source) {
if (context->outputSource) {
context->outputSource = NULL;
}
return;
}
context->outputSource = source;
context->width = obs_source_get_width(source);
context->height = obs_source_get_height(source);
obs_source_release(source);
}
struct obs_source_info output_source_info = {
.id = "ouput_source",
.type = OBS_SOURCE_TYPE_INPUT,
.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW,
.get_name = output_source_get_name,
.create = output_source_create,
.destroy = output_source_destroy,
.load = output_source_update,
.update = output_source_update,
.get_properties = output_source_properties,
.get_defaults = output_source_defaults,
.video_render = output_source_video_render,
.video_tick = output_source_video_tick,
.get_width = output_source_getwidth,
.get_height = output_source_getheight,
.icon_type = OBS_ICON_TYPE_UNKNOWN,
};