noobs 0.0.149 → 0.0.150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/noobs.node +0 -0
- package/package.json +1 -1
- package/src/obs_interface.cpp +1 -18
package/dist/noobs.node
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/obs_interface.cpp
CHANGED
|
@@ -61,22 +61,6 @@ void ObsInterface::list_output_types()
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
bool log_adapter(void *param, const char *node, uint32_t idx)
|
|
65
|
-
{
|
|
66
|
-
blog(LOG_INFO, " - %d: %s", idx, node);
|
|
67
|
-
return true;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
void list_adapters()
|
|
71
|
-
{
|
|
72
|
-
// Pretty sure OBS logs all this stuff anyway but do it ourselves for good measure.
|
|
73
|
-
obs_enter_graphics();
|
|
74
|
-
uint32_t count = gs_get_adapter_count();
|
|
75
|
-
blog(LOG_INFO, "Adapter count: %d", count);
|
|
76
|
-
gs_enum_adapters(log_adapter, NULL);
|
|
77
|
-
obs_leave_graphics();
|
|
78
|
-
}
|
|
79
|
-
|
|
80
64
|
void ObsInterface::load_module(const char* module, const char* data, bool allowFail) {
|
|
81
65
|
blog(LOG_INFO, "Loading module: %s", module);
|
|
82
66
|
blog(LOG_INFO, "Data path: %s", data);
|
|
@@ -153,7 +137,7 @@ int ObsInterface::reset_video(int fps, int width, int height) {
|
|
|
153
137
|
ovi.range = VIDEO_RANGE_PARTIAL;
|
|
154
138
|
ovi.scale_type = OBS_SCALE_BILINEAR;
|
|
155
139
|
ovi.adapter = 0;
|
|
156
|
-
ovi.gpu_conversion =
|
|
140
|
+
ovi.gpu_conversion = true;
|
|
157
141
|
ovi.graphics_module = "libobs-d3d11.dll";
|
|
158
142
|
|
|
159
143
|
return obs_reset_video(&ovi);
|
|
@@ -240,7 +224,6 @@ void ObsInterface::init_obs(const std::string& distPath) {
|
|
|
240
224
|
list_encoders();
|
|
241
225
|
list_source_types();
|
|
242
226
|
list_output_types();
|
|
243
|
-
list_adapters();
|
|
244
227
|
|
|
245
228
|
blog(LOG_INFO, "Initializing complete");
|
|
246
229
|
}
|