obs.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  1. /******************************************************************************
  2. Copyright (C) 2013-2014 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #include "callback/calldata.h"
  15. #include "obs.h"
  16. #include "obs-internal.h"
  17. struct obs_core *obs = NULL;
  18. extern char *find_libobs_data_file(const char *file);
  19. static inline void make_gs_init_data(struct gs_init_data *gid,
  20. struct obs_video_info *ovi)
  21. {
  22. memcpy(&gid->window, &ovi->window, sizeof(struct gs_window));
  23. gid->cx = ovi->window_width;
  24. gid->cy = ovi->window_height;
  25. gid->num_backbuffers = 2;
  26. gid->format = GS_RGBA;
  27. gid->zsformat = GS_ZS_NONE;
  28. gid->adapter = ovi->adapter;
  29. }
  30. static inline void make_video_info(struct video_output_info *vi,
  31. struct obs_video_info *ovi)
  32. {
  33. vi->name = "video";
  34. vi->format = ovi->output_format;
  35. vi->fps_num = ovi->fps_num;
  36. vi->fps_den = ovi->fps_den;
  37. vi->width = ovi->output_width;
  38. vi->height = ovi->output_height;
  39. }
  40. #define PIXEL_SIZE 4
  41. #define GET_ALIGN(val, align) \
  42. (((val) + (align-1)) & ~(align-1))
  43. static inline void set_420p_sizes(const struct obs_video_info *ovi)
  44. {
  45. struct obs_core_video *video = &obs->video;
  46. uint32_t chroma_pixels;
  47. uint32_t total_bytes;
  48. chroma_pixels = (ovi->output_width * ovi->output_height / 4);
  49. chroma_pixels = GET_ALIGN(chroma_pixels, PIXEL_SIZE);
  50. video->plane_offsets[0] = 0;
  51. video->plane_offsets[1] = ovi->output_width * ovi->output_height;
  52. video->plane_offsets[2] = video->plane_offsets[1] + chroma_pixels;
  53. video->plane_linewidth[0] = ovi->output_width;
  54. video->plane_linewidth[1] = ovi->output_width/2;
  55. video->plane_linewidth[2] = ovi->output_width/2;
  56. video->plane_sizes[0] = video->plane_offsets[1];
  57. video->plane_sizes[1] = video->plane_sizes[0]/4;
  58. video->plane_sizes[2] = video->plane_sizes[1];
  59. total_bytes = video->plane_offsets[2] + chroma_pixels;
  60. video->conversion_height =
  61. (total_bytes/PIXEL_SIZE + ovi->output_width-1) /
  62. ovi->output_width;
  63. video->conversion_height = GET_ALIGN(video->conversion_height, 2);
  64. video->conversion_tech = "Planar420";
  65. }
  66. static inline void set_nv12_sizes(const struct obs_video_info *ovi)
  67. {
  68. struct obs_core_video *video = &obs->video;
  69. uint32_t chroma_pixels;
  70. uint32_t total_bytes;
  71. chroma_pixels = (ovi->output_width * ovi->output_height / 2);
  72. chroma_pixels = GET_ALIGN(chroma_pixels, PIXEL_SIZE);
  73. video->plane_offsets[0] = 0;
  74. video->plane_offsets[1] = ovi->output_width * ovi->output_height;
  75. video->plane_linewidth[0] = ovi->output_width;
  76. video->plane_linewidth[1] = ovi->output_width;
  77. video->plane_sizes[0] = video->plane_offsets[1];
  78. video->plane_sizes[1] = video->plane_sizes[0]/2;
  79. total_bytes = video->plane_offsets[1] + chroma_pixels;
  80. video->conversion_height =
  81. (total_bytes/PIXEL_SIZE + ovi->output_width-1) /
  82. ovi->output_width;
  83. video->conversion_height = GET_ALIGN(video->conversion_height, 2);
  84. video->conversion_tech = "NV12";
  85. }
  86. static inline void calc_gpu_conversion_sizes(const struct obs_video_info *ovi)
  87. {
  88. obs->video.conversion_height = 0;
  89. memset(obs->video.plane_offsets, 0, sizeof(obs->video.plane_offsets));
  90. memset(obs->video.plane_sizes, 0, sizeof(obs->video.plane_sizes));
  91. memset(obs->video.plane_linewidth, 0,
  92. sizeof(obs->video.plane_linewidth));
  93. switch ((uint32_t)ovi->output_format) {
  94. case VIDEO_FORMAT_I420:
  95. set_420p_sizes(ovi);
  96. break;
  97. case VIDEO_FORMAT_NV12:
  98. set_nv12_sizes(ovi);
  99. break;
  100. }
  101. }
  102. static bool obs_init_gpu_conversion(struct obs_video_info *ovi)
  103. {
  104. struct obs_core_video *video = &obs->video;
  105. calc_gpu_conversion_sizes(ovi);
  106. if (!video->conversion_height) {
  107. blog(LOG_INFO, "GPU conversion not available for format: %u",
  108. (unsigned int)ovi->output_format);
  109. video->gpu_conversion = false;
  110. return true;
  111. }
  112. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  113. video->convert_textures[i] = gs_create_texture(
  114. ovi->output_width, video->conversion_height,
  115. GS_RGBA, 1, NULL, GS_RENDERTARGET);
  116. if (!video->convert_textures[i])
  117. return false;
  118. }
  119. return true;
  120. }
  121. static bool obs_init_textures(struct obs_video_info *ovi)
  122. {
  123. struct obs_core_video *video = &obs->video;
  124. bool yuv = format_is_yuv(ovi->output_format);
  125. uint32_t output_height = video->gpu_conversion ?
  126. video->conversion_height : ovi->output_height;
  127. size_t i;
  128. for (i = 0; i < NUM_TEXTURES; i++) {
  129. video->copy_surfaces[i] = gs_create_stagesurface(
  130. ovi->output_width, output_height, GS_RGBA);
  131. if (!video->copy_surfaces[i])
  132. return false;
  133. video->render_textures[i] = gs_create_texture(
  134. ovi->base_width, ovi->base_height,
  135. GS_RGBA, 1, NULL, GS_RENDERTARGET);
  136. if (!video->render_textures[i])
  137. return false;
  138. video->output_textures[i] = gs_create_texture(
  139. ovi->output_width, ovi->output_height,
  140. GS_RGBA, 1, NULL, GS_RENDERTARGET);
  141. if (!video->output_textures[i])
  142. return false;
  143. if (yuv)
  144. source_frame_init(&video->convert_frames[i],
  145. ovi->output_format,
  146. ovi->output_width, ovi->output_height);
  147. }
  148. return true;
  149. }
  150. static bool obs_init_graphics(struct obs_video_info *ovi)
  151. {
  152. struct obs_core_video *video = &obs->video;
  153. struct gs_init_data graphics_data;
  154. bool success = true;
  155. int errorcode;
  156. make_gs_init_data(&graphics_data, ovi);
  157. errorcode = gs_create(&video->graphics, ovi->graphics_module,
  158. &graphics_data);
  159. if (errorcode != GS_SUCCESS) {
  160. if (errorcode == GS_ERROR_MODULENOTFOUND)
  161. blog(LOG_ERROR, "Could not find graphics module '%s'",
  162. ovi->graphics_module);
  163. return false;
  164. }
  165. gs_entercontext(video->graphics);
  166. if (success) {
  167. char *filename = find_libobs_data_file("default.effect");
  168. video->default_effect = gs_create_effect_from_file(filename,
  169. NULL);
  170. bfree(filename);
  171. filename = find_libobs_data_file("format_conversion.effect");
  172. video->conversion_effect = gs_create_effect_from_file(filename,
  173. NULL);
  174. bfree(filename);
  175. if (!video->default_effect)
  176. success = false;
  177. if (!video->conversion_effect)
  178. success = false;
  179. }
  180. gs_leavecontext();
  181. return success;
  182. }
  183. static bool obs_init_video(struct obs_video_info *ovi)
  184. {
  185. struct obs_core_video *video = &obs->video;
  186. struct video_output_info vi;
  187. int errorcode;
  188. make_video_info(&vi, ovi);
  189. video->base_width = ovi->base_width;
  190. video->base_height = ovi->base_height;
  191. video->output_width = ovi->output_width;
  192. video->output_height = ovi->output_height;
  193. video->gpu_conversion = ovi->gpu_conversion;
  194. errorcode = video_output_open(&video->video, &vi);
  195. if (errorcode != VIDEO_OUTPUT_SUCCESS) {
  196. if (errorcode == VIDEO_OUTPUT_INVALIDPARAM)
  197. blog(LOG_ERROR, "Invalid video parameters specified");
  198. else
  199. blog(LOG_ERROR, "Could not open video output");
  200. return false;
  201. }
  202. if (!obs_display_init(&video->main_display, NULL))
  203. return false;
  204. video->main_display.cx = ovi->window_width;
  205. video->main_display.cy = ovi->window_height;
  206. gs_entercontext(video->graphics);
  207. if (ovi->gpu_conversion && !obs_init_gpu_conversion(ovi))
  208. return false;
  209. if (!obs_init_textures(ovi))
  210. return false;
  211. gs_leavecontext();
  212. errorcode = pthread_create(&video->video_thread, NULL,
  213. obs_video_thread, obs);
  214. if (errorcode != 0)
  215. return false;
  216. video->thread_initialized = true;
  217. return true;
  218. }
  219. static void stop_video(void)
  220. {
  221. struct obs_core_video *video = &obs->video;
  222. void *thread_retval;
  223. if (video->video) {
  224. video_output_stop(video->video);
  225. if (video->thread_initialized) {
  226. pthread_join(video->video_thread, &thread_retval);
  227. video->thread_initialized = false;
  228. }
  229. }
  230. }
  231. static void obs_free_video(void)
  232. {
  233. struct obs_core_video *video = &obs->video;
  234. if (video->video) {
  235. obs_display_free(&video->main_display);
  236. video_output_close(video->video);
  237. video->video = NULL;
  238. if (!video->graphics)
  239. return;
  240. gs_entercontext(video->graphics);
  241. if (video->mapped_surface) {
  242. stagesurface_unmap(video->mapped_surface);
  243. video->mapped_surface = NULL;
  244. }
  245. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  246. stagesurface_destroy(video->copy_surfaces[i]);
  247. texture_destroy(video->render_textures[i]);
  248. texture_destroy(video->convert_textures[i]);
  249. texture_destroy(video->output_textures[i]);
  250. source_frame_free(&video->convert_frames[i]);
  251. video->copy_surfaces[i] = NULL;
  252. video->render_textures[i] = NULL;
  253. video->convert_textures[i] = NULL;
  254. video->output_textures[i] = NULL;
  255. }
  256. gs_leavecontext();
  257. video->cur_texture = 0;
  258. }
  259. }
  260. static void obs_free_graphics(void)
  261. {
  262. struct obs_core_video *video = &obs->video;
  263. if (video->graphics) {
  264. gs_entercontext(video->graphics);
  265. effect_destroy(video->default_effect);
  266. effect_destroy(video->conversion_effect);
  267. video->default_effect = NULL;
  268. gs_leavecontext();
  269. gs_destroy(video->graphics);
  270. video->graphics = NULL;
  271. }
  272. }
  273. static bool obs_init_audio(struct audio_output_info *ai)
  274. {
  275. struct obs_core_audio *audio = &obs->audio;
  276. int errorcode;
  277. /* TODO: sound subsystem */
  278. audio->user_volume = 1.0f;
  279. audio->present_volume = 1.0f;
  280. errorcode = audio_output_open(&audio->audio, ai);
  281. if (errorcode == AUDIO_OUTPUT_SUCCESS)
  282. return true;
  283. else if (errorcode == AUDIO_OUTPUT_INVALIDPARAM)
  284. blog(LOG_ERROR, "Invalid audio parameters specified");
  285. else
  286. blog(LOG_ERROR, "Could not open audio output");
  287. return false;
  288. }
  289. static void obs_free_audio(void)
  290. {
  291. struct obs_core_audio *audio = &obs->audio;
  292. if (audio->audio)
  293. audio_output_close(audio->audio);
  294. memset(audio, 0, sizeof(struct obs_core_audio));
  295. }
  296. static bool obs_init_data(void)
  297. {
  298. struct obs_core_data *data = &obs->data;
  299. pthread_mutexattr_t attr;
  300. assert(data != NULL);
  301. pthread_mutex_init_value(&obs->data.displays_mutex);
  302. if (pthread_mutexattr_init(&attr) != 0)
  303. return false;
  304. if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0)
  305. goto fail;
  306. if (pthread_mutex_init(&data->user_sources_mutex, &attr) != 0)
  307. goto fail;
  308. if (pthread_mutex_init(&data->sources_mutex, &attr) != 0)
  309. goto fail;
  310. if (pthread_mutex_init(&data->displays_mutex, &attr) != 0)
  311. goto fail;
  312. if (pthread_mutex_init(&data->outputs_mutex, &attr) != 0)
  313. goto fail;
  314. if (pthread_mutex_init(&data->encoders_mutex, &attr) != 0)
  315. goto fail;
  316. if (pthread_mutex_init(&data->services_mutex, &attr) != 0)
  317. goto fail;
  318. if (!obs_view_init(&data->main_view))
  319. goto fail;
  320. data->valid = true;
  321. fail:
  322. pthread_mutexattr_destroy(&attr);
  323. return data->valid;
  324. }
  325. #define FREE_OBS_LINKED_LIST(type) \
  326. do { \
  327. int unfreed = 0; \
  328. while (data->first_ ## type ) { \
  329. obs_ ## type ## _destroy(data->first_ ## type ); \
  330. unfreed++; \
  331. } \
  332. if (unfreed) \
  333. blog(LOG_INFO, "\t%d " #type "(s) were remaining", \
  334. unfreed); \
  335. } while (false)
  336. static void obs_free_data(void)
  337. {
  338. struct obs_core_data *data = &obs->data;
  339. data->valid = false;
  340. obs_view_free(&data->main_view);
  341. blog(LOG_INFO, "Freeing OBS context data");
  342. if (data->user_sources.num)
  343. blog(LOG_INFO, "\t%d user source(s) were remaining",
  344. (int)data->user_sources.num);
  345. while (data->user_sources.num)
  346. obs_source_remove(data->user_sources.array[0]);
  347. da_free(data->user_sources);
  348. FREE_OBS_LINKED_LIST(source);
  349. FREE_OBS_LINKED_LIST(output);
  350. FREE_OBS_LINKED_LIST(encoder);
  351. FREE_OBS_LINKED_LIST(display);
  352. FREE_OBS_LINKED_LIST(service);
  353. pthread_mutex_destroy(&data->user_sources_mutex);
  354. pthread_mutex_destroy(&data->sources_mutex);
  355. pthread_mutex_destroy(&data->displays_mutex);
  356. pthread_mutex_destroy(&data->outputs_mutex);
  357. pthread_mutex_destroy(&data->encoders_mutex);
  358. pthread_mutex_destroy(&data->services_mutex);
  359. }
  360. static const char *obs_signals[] = {
  361. "void source_create(ptr source)",
  362. "void source_destroy(ptr source)",
  363. "void source_add(ptr source)",
  364. "void source_remove(ptr source)",
  365. "void source_activate(ptr source)",
  366. "void source_deactivate(ptr source)",
  367. "void source_show(ptr source)",
  368. "void source_hide(ptr source)",
  369. "void source_volume(ptr source, in out float volume)",
  370. "void channel_change(int channel, in out ptr source, ptr prev_source)",
  371. "void master_volume(in out float volume)",
  372. NULL
  373. };
  374. static inline bool obs_init_handlers(void)
  375. {
  376. obs->signals = signal_handler_create();
  377. if (!obs->signals)
  378. return false;
  379. obs->procs = proc_handler_create();
  380. if (!obs->procs)
  381. return false;
  382. return signal_handler_add_array(obs->signals, obs_signals);
  383. }
  384. extern const struct obs_source_info scene_info;
  385. static bool obs_init(void)
  386. {
  387. obs = bzalloc(sizeof(struct obs_core));
  388. if (!obs_init_data())
  389. return false;
  390. if (!obs_init_handlers())
  391. return false;
  392. obs_register_source(&scene_info);
  393. return true;
  394. }
  395. bool obs_startup(void)
  396. {
  397. bool success;
  398. if (obs) {
  399. blog(LOG_WARNING, "Tried to call obs_startup more than once");
  400. return false;
  401. }
  402. success = obs_init();
  403. if (!success)
  404. obs_shutdown();
  405. return success;
  406. }
  407. void obs_shutdown(void)
  408. {
  409. if (!obs)
  410. return;
  411. da_free(obs->input_types);
  412. da_free(obs->filter_types);
  413. da_free(obs->encoder_types);
  414. da_free(obs->transition_types);
  415. da_free(obs->output_types);
  416. da_free(obs->service_types);
  417. da_free(obs->modal_ui_callbacks);
  418. da_free(obs->modeless_ui_callbacks);
  419. stop_video();
  420. obs_free_data();
  421. obs_free_video();
  422. obs_free_graphics();
  423. obs_free_audio();
  424. proc_handler_destroy(obs->procs);
  425. signal_handler_destroy(obs->signals);
  426. for (size_t i = 0; i < obs->modules.num; i++)
  427. free_module(obs->modules.array+i);
  428. da_free(obs->modules);
  429. bfree(obs);
  430. obs = NULL;
  431. }
  432. bool obs_initialized(void)
  433. {
  434. return obs != NULL;
  435. }
  436. bool obs_reset_video(struct obs_video_info *ovi)
  437. {
  438. if (!obs) return false;
  439. /* don't allow changing of video settings if active. */
  440. if (obs->video.video && video_output_active(obs->video.video))
  441. return false;
  442. struct obs_core_video *video = &obs->video;
  443. /* align to multiple-of-two and SSE alignment sizes */
  444. ovi->output_width &= 0xFFFFFFFC;
  445. ovi->output_height &= 0xFFFFFFFE;
  446. stop_video();
  447. obs_free_video();
  448. if (!ovi) {
  449. obs_free_graphics();
  450. return true;
  451. }
  452. if (!video->graphics && !obs_init_graphics(ovi))
  453. return false;
  454. return obs_init_video(ovi);
  455. }
  456. bool obs_reset_audio(struct audio_output_info *ai)
  457. {
  458. if (!obs) return false;
  459. /* don't allow changing of audio settings if active. */
  460. if (obs->audio.audio && audio_output_active(obs->audio.audio))
  461. return false;
  462. obs_free_audio();
  463. if(!ai)
  464. return true;
  465. return obs_init_audio(ai);
  466. }
  467. bool obs_get_video_info(struct obs_video_info *ovi)
  468. {
  469. struct obs_core_video *video = &obs->video;
  470. const struct video_output_info *info;
  471. if (!obs || !video->graphics)
  472. return false;
  473. info = video_output_getinfo(video->video);
  474. memset(ovi, 0, sizeof(struct obs_video_info));
  475. ovi->base_width = video->base_width;
  476. ovi->base_height = video->base_height;
  477. ovi->output_width = info->width;
  478. ovi->output_height = info->height;
  479. ovi->output_format = info->format;
  480. ovi->fps_num = info->fps_num;
  481. ovi->fps_den = info->fps_den;
  482. return true;
  483. }
  484. bool obs_get_audio_info(struct audio_output_info *aoi)
  485. {
  486. struct obs_core_audio *audio = &obs->audio;
  487. const struct audio_output_info *info;
  488. if (!obs || !audio->audio)
  489. return false;
  490. info = audio_output_getinfo(audio->audio);
  491. memcpy(aoi, info, sizeof(struct audio_output_info));
  492. return true;
  493. }
  494. bool obs_enum_input_types(size_t idx, const char **id)
  495. {
  496. if (!obs) return false;
  497. if (idx >= obs->input_types.num)
  498. return false;
  499. *id = obs->input_types.array[idx].id;
  500. return true;
  501. }
  502. bool obs_enum_filter_types(size_t idx, const char **id)
  503. {
  504. if (!obs) return false;
  505. if (idx >= obs->filter_types.num)
  506. return false;
  507. *id = obs->filter_types.array[idx].id;
  508. return true;
  509. }
  510. bool obs_enum_transition_types(size_t idx, const char **id)
  511. {
  512. if (!obs) return false;
  513. if (idx >= obs->transition_types.num)
  514. return false;
  515. *id = obs->transition_types.array[idx].id;
  516. return true;
  517. }
  518. bool obs_enum_output_types(size_t idx, const char **id)
  519. {
  520. if (!obs) return false;
  521. if (idx >= obs->output_types.num)
  522. return false;
  523. *id = obs->output_types.array[idx].id;
  524. return true;
  525. }
  526. bool obs_enum_encoder_types(size_t idx, const char **id)
  527. {
  528. if (!obs) return false;
  529. if (idx >= obs->encoder_types.num)
  530. return false;
  531. *id = obs->encoder_types.array[idx].id;
  532. return true;
  533. }
  534. bool obs_enum_service_types(size_t idx, const char **id)
  535. {
  536. if (!obs) return false;
  537. if (idx >= obs->service_types.num)
  538. return false;
  539. *id = obs->service_types.array[idx].id;
  540. return true;
  541. }
  542. graphics_t obs_graphics(void)
  543. {
  544. return (obs != NULL) ? obs->video.graphics : NULL;
  545. }
  546. audio_t obs_audio(void)
  547. {
  548. return (obs != NULL) ? obs->audio.audio : NULL;
  549. }
  550. video_t obs_video(void)
  551. {
  552. return (obs != NULL) ? obs->video.video : NULL;
  553. }
  554. /* TODO: optimize this later so it's not just O(N) string lookups */
  555. static inline struct obs_modal_ui *get_modal_ui_callback(const char *id,
  556. const char *task, const char *target)
  557. {
  558. for (size_t i = 0; i < obs->modal_ui_callbacks.num; i++) {
  559. struct obs_modal_ui *callback = obs->modal_ui_callbacks.array+i;
  560. if (strcmp(callback->id, id) == 0 &&
  561. strcmp(callback->task, task) == 0 &&
  562. strcmp(callback->target, target) == 0)
  563. return callback;
  564. }
  565. return NULL;
  566. }
  567. static inline struct obs_modeless_ui *get_modeless_ui_callback(const char *id,
  568. const char *task, const char *target)
  569. {
  570. for (size_t i = 0; i < obs->modeless_ui_callbacks.num; i++) {
  571. struct obs_modeless_ui *callback;
  572. callback = obs->modeless_ui_callbacks.array+i;
  573. if (strcmp(callback->id, id) == 0 &&
  574. strcmp(callback->task, task) == 0 &&
  575. strcmp(callback->target, target) == 0)
  576. return callback;
  577. }
  578. return NULL;
  579. }
  580. int obs_exec_ui(const char *name, const char *task, const char *target,
  581. void *data, void *ui_data)
  582. {
  583. struct obs_modal_ui *callback;
  584. int errorcode = OBS_UI_NOTFOUND;
  585. if (!obs) return errorcode;
  586. callback = get_modal_ui_callback(name, task, target);
  587. if (callback) {
  588. bool success = callback->exec(data, ui_data);
  589. errorcode = success ? OBS_UI_SUCCESS : OBS_UI_CANCEL;
  590. }
  591. return errorcode;
  592. }
  593. void *obs_create_ui(const char *name, const char *task, const char *target,
  594. void *data, void *ui_data)
  595. {
  596. struct obs_modeless_ui *callback;
  597. if (!obs) return NULL;
  598. callback = get_modeless_ui_callback(name, task, target);
  599. return callback ? callback->create(data, ui_data) : NULL;
  600. }
  601. bool obs_add_source(obs_source_t source)
  602. {
  603. struct calldata params = {0};
  604. if (!obs) return false;
  605. if (!source) return false;
  606. pthread_mutex_lock(&obs->data.sources_mutex);
  607. da_push_back(obs->data.user_sources, &source);
  608. obs_source_addref(source);
  609. pthread_mutex_unlock(&obs->data.sources_mutex);
  610. calldata_setptr(&params, "source", source);
  611. signal_handler_signal(obs->signals, "source_add", &params);
  612. calldata_free(&params);
  613. return true;
  614. }
  615. obs_source_t obs_get_output_source(uint32_t channel)
  616. {
  617. if (!obs) return NULL;
  618. return obs_view_getsource(&obs->data.main_view, channel);
  619. }
  620. void obs_set_output_source(uint32_t channel, obs_source_t source)
  621. {
  622. assert(channel < MAX_CHANNELS);
  623. if (!obs) return;
  624. if (channel >= MAX_CHANNELS) return;
  625. struct obs_source *prev_source;
  626. struct obs_view *view = &obs->data.main_view;
  627. struct calldata params = {0};
  628. pthread_mutex_lock(&view->channels_mutex);
  629. obs_source_addref(source);
  630. prev_source = view->channels[channel];
  631. calldata_setint(&params, "channel", channel);
  632. calldata_setptr(&params, "prev_source", prev_source);
  633. calldata_setptr(&params, "source", source);
  634. signal_handler_signal(obs->signals, "channel_change", &params);
  635. calldata_getptr(&params, "source", &source);
  636. calldata_free(&params);
  637. view->channels[channel] = source;
  638. pthread_mutex_unlock(&view->channels_mutex);
  639. if (source)
  640. obs_source_activate(source, MAIN_VIEW);
  641. if (prev_source) {
  642. obs_source_deactivate(prev_source, MAIN_VIEW);
  643. obs_source_release(prev_source);
  644. }
  645. }
  646. void obs_enum_sources(bool (*enum_proc)(void*, obs_source_t), void *param)
  647. {
  648. if (!obs) return;
  649. pthread_mutex_lock(&obs->data.user_sources_mutex);
  650. for (size_t i = 0; i < obs->data.user_sources.num; i++) {
  651. struct obs_source *source = obs->data.user_sources.array[i];
  652. if (!enum_proc(param, source))
  653. break;
  654. }
  655. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  656. }
  657. static inline void obs_enum(void *pstart, pthread_mutex_t *mutex, void *proc,
  658. void *param)
  659. {
  660. struct obs_context_data **start = pstart, *context;
  661. bool (*enum_proc)(void*, void*) = proc;
  662. assert(start);
  663. assert(mutex);
  664. assert(enum_proc);
  665. pthread_mutex_lock(mutex);
  666. context = *start;
  667. while (context) {
  668. if (!enum_proc(param, context))
  669. break;
  670. context = context->next;
  671. }
  672. pthread_mutex_unlock(mutex);
  673. }
  674. void obs_enum_outputs(bool (*enum_proc)(void*, obs_output_t), void *param)
  675. {
  676. if (!obs) return;
  677. obs_enum(&obs->data.first_output, &obs->data.outputs_mutex,
  678. enum_proc, param);
  679. }
  680. void obs_enum_encoders(bool (*enum_proc)(void*, obs_encoder_t), void *param)
  681. {
  682. if (!obs) return;
  683. obs_enum(&obs->data.first_encoder, &obs->data.encoders_mutex,
  684. enum_proc, param);
  685. }
  686. void obs_enum_services(bool (*enum_proc)(void*, obs_service_t), void *param)
  687. {
  688. if (!obs) return;
  689. obs_enum(&obs->data.first_service, &obs->data.services_mutex,
  690. enum_proc, param);
  691. }
  692. obs_source_t obs_get_source_by_name(const char *name)
  693. {
  694. struct obs_core_data *data = &obs->data;
  695. struct obs_source *source = NULL;
  696. size_t i;
  697. if (!obs) return NULL;
  698. pthread_mutex_lock(&data->user_sources_mutex);
  699. for (i = 0; i < data->user_sources.num; i++) {
  700. struct obs_source *cur_source = data->user_sources.array[i];
  701. if (strcmp(cur_source->context.name, name) == 0) {
  702. source = cur_source;
  703. obs_source_addref(source);
  704. break;
  705. }
  706. }
  707. pthread_mutex_unlock(&data->user_sources_mutex);
  708. return source;
  709. }
  710. static inline void *get_context_by_name(void *vfirst, const char *name,
  711. pthread_mutex_t *mutex)
  712. {
  713. struct obs_context_data **first = vfirst;
  714. struct obs_context_data *context;
  715. pthread_mutex_lock(mutex);
  716. context = *first;
  717. while (context) {
  718. if (strcmp(context->name, name) == 0)
  719. break;
  720. context = context->next;
  721. }
  722. pthread_mutex_unlock(mutex);
  723. return context;
  724. }
  725. obs_output_t obs_get_output_by_name(const char *name)
  726. {
  727. if (!obs) return NULL;
  728. return get_context_by_name(&obs->data.first_output, name,
  729. &obs->data.outputs_mutex);
  730. }
  731. obs_encoder_t obs_get_encoder_by_name(const char *name)
  732. {
  733. if (!obs) return NULL;
  734. return get_context_by_name(&obs->data.first_encoder, name,
  735. &obs->data.encoders_mutex);
  736. }
  737. obs_service_t obs_get_service_by_name(const char *name)
  738. {
  739. if (!obs) return NULL;
  740. return get_context_by_name(&obs->data.first_service, name,
  741. &obs->data.services_mutex);
  742. }
  743. effect_t obs_get_default_effect(void)
  744. {
  745. if (!obs) return NULL;
  746. return obs->video.default_effect;
  747. }
  748. signal_handler_t obs_signalhandler(void)
  749. {
  750. if (!obs) return NULL;
  751. return obs->signals;
  752. }
  753. proc_handler_t obs_prochandler(void)
  754. {
  755. if (!obs) return NULL;
  756. return obs->procs;
  757. }
  758. void obs_add_draw_callback(
  759. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  760. void *param)
  761. {
  762. if (!obs) return;
  763. obs_display_add_draw_callback(&obs->video.main_display, draw, param);
  764. }
  765. void obs_remove_draw_callback(
  766. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  767. void *param)
  768. {
  769. if (!obs) return;
  770. obs_display_remove_draw_callback(&obs->video.main_display, draw, param);
  771. }
  772. void obs_resize(uint32_t cx, uint32_t cy)
  773. {
  774. if (!obs || !obs->video.video || !obs->video.graphics) return;
  775. obs_display_resize(&obs->video.main_display, cx, cy);
  776. }
  777. void obs_render_main_view(void)
  778. {
  779. if (!obs) return;
  780. obs_view_render(&obs->data.main_view);
  781. }
  782. void obs_set_master_volume(float volume)
  783. {
  784. struct calldata data = {0};
  785. if (!obs) return;
  786. calldata_setfloat(&data, "volume", volume);
  787. signal_handler_signal(obs->signals, "master_volume", &data);
  788. volume = (float)calldata_float(&data, "volume");
  789. calldata_free(&data);
  790. obs->audio.user_volume = volume;
  791. }
  792. void obs_set_present_volume(float volume)
  793. {
  794. if (!obs) return;
  795. obs->audio.present_volume = volume;
  796. }
  797. float obs_get_master_volume(void)
  798. {
  799. return obs ? obs->audio.user_volume : 0.0f;
  800. }
  801. float obs_get_present_volume(void)
  802. {
  803. return obs ? obs->audio.present_volume : 0.0f;
  804. }
  805. obs_source_t obs_load_source(obs_data_t source_data)
  806. {
  807. obs_source_t source;
  808. const char *name = obs_data_getstring(source_data, "name");
  809. const char *id = obs_data_getstring(source_data, "id");
  810. obs_data_t settings = obs_data_getobj(source_data, "settings");
  811. double volume;
  812. source = obs_source_create(OBS_SOURCE_TYPE_INPUT, id, name, settings);
  813. obs_data_set_default_double(source_data, "volume", 1.0);
  814. volume = obs_data_getdouble(source_data, "volume");
  815. obs_source_setvolume(source, (float)volume);
  816. obs_data_release(settings);
  817. return source;
  818. }
  819. void obs_load_sources(obs_data_array_t array)
  820. {
  821. size_t count;
  822. size_t i;
  823. if (!obs) return;
  824. count = obs_data_array_count(array);
  825. pthread_mutex_lock(&obs->data.user_sources_mutex);
  826. for (i = 0; i < count; i++) {
  827. obs_data_t source_data = obs_data_array_item(array, i);
  828. obs_source_t source = obs_load_source(source_data);
  829. obs_add_source(source);
  830. obs_source_release(source);
  831. obs_data_release(source_data);
  832. }
  833. /* tell sources that we want to load */
  834. for (i = 0; i < obs->data.user_sources.num; i++)
  835. obs_source_load(obs->data.user_sources.array[i]);
  836. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  837. }
  838. obs_data_t obs_save_source(obs_source_t source)
  839. {
  840. obs_data_t source_data = obs_data_create();
  841. obs_data_t settings = obs_source_getsettings(source);
  842. float volume = obs_source_getvolume(source);
  843. const char *name = obs_source_getname(source);
  844. const char *id;
  845. obs_source_save(source);
  846. obs_source_gettype(source, NULL, &id);
  847. obs_data_setstring(source_data, "name", name);
  848. obs_data_setstring(source_data, "id", id);
  849. obs_data_setobj (source_data, "settings", settings);
  850. obs_data_setdouble(source_data, "volume", volume);
  851. obs_data_release(settings);
  852. return source_data;
  853. }
  854. obs_data_array_t obs_save_sources(void)
  855. {
  856. obs_data_array_t array;
  857. size_t i;
  858. if (!obs) return NULL;
  859. array = obs_data_array_create();
  860. pthread_mutex_lock(&obs->data.user_sources_mutex);
  861. for (i = 0; i < obs->data.user_sources.num; i++) {
  862. obs_source_t source = obs->data.user_sources.array[i];
  863. obs_data_t source_data = obs_save_source(source);
  864. obs_data_array_push_back(array, source_data);
  865. obs_data_release(source_data);
  866. }
  867. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  868. return array;
  869. }
  870. /* ensures that names are never blank */
  871. static inline char *dup_name(const char *name)
  872. {
  873. if (!name || !*name) {
  874. struct dstr unnamed = {0};
  875. dstr_printf(&unnamed, "__unnamed%004lld",
  876. obs->data.unnamed_index++);
  877. return unnamed.array;
  878. } else {
  879. return bstrdup(name);
  880. }
  881. }
  882. static inline bool obs_context_data_init_wrap(
  883. struct obs_context_data *context,
  884. obs_data_t settings,
  885. const char *name)
  886. {
  887. assert(context);
  888. obs_context_data_free(context);
  889. context->signals = signal_handler_create();
  890. if (!context)
  891. return false;
  892. context->procs = proc_handler_create();
  893. if (!context->procs)
  894. return false;
  895. context->name = dup_name(name);
  896. context->settings = obs_data_newref(settings);
  897. return true;
  898. }
  899. bool obs_context_data_init(
  900. struct obs_context_data *context,
  901. obs_data_t settings,
  902. const char *name)
  903. {
  904. if (obs_context_data_init_wrap(context, settings, name)) {
  905. return true;
  906. } else {
  907. obs_context_data_free(context);
  908. return false;
  909. }
  910. }
  911. void obs_context_data_free(struct obs_context_data *context)
  912. {
  913. signal_handler_destroy(context->signals);
  914. proc_handler_destroy(context->procs);
  915. obs_data_release(context->settings);
  916. obs_context_data_remove(context);
  917. bfree(context->name);
  918. memset(context, 0, sizeof(*context));
  919. }
  920. void obs_context_data_insert(struct obs_context_data *context,
  921. pthread_mutex_t *mutex, void *pfirst)
  922. {
  923. struct obs_context_data **first = pfirst;
  924. assert(context);
  925. assert(mutex);
  926. assert(first);
  927. context->mutex = mutex;
  928. pthread_mutex_lock(mutex);
  929. context->prev_next = first;
  930. context->next = *first;
  931. *first = context;
  932. if (context->next)
  933. context->next->prev_next = &context->next;
  934. pthread_mutex_unlock(mutex);
  935. }
  936. void obs_context_data_remove(struct obs_context_data *context)
  937. {
  938. if (context && context->mutex) {
  939. pthread_mutex_lock(context->mutex);
  940. *context->prev_next = context->next;
  941. if (context->next)
  942. context->next->prev_next = context->prev_next;
  943. pthread_mutex_unlock(context->mutex);
  944. context->mutex = NULL;
  945. }
  946. }
  947. void obs_context_data_setname(struct obs_context_data *context,
  948. const char *name)
  949. {
  950. bfree(context->name);
  951. context->name = dup_name(name);
  952. }