obs.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227
  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. pthread_mutex_lock(&obs->data.sources_mutex);
  606. da_push_back(obs->data.user_sources, &source);
  607. obs_source_addref(source);
  608. pthread_mutex_unlock(&obs->data.sources_mutex);
  609. calldata_setptr(&params, "source", source);
  610. signal_handler_signal(obs->signals, "source_add", &params);
  611. calldata_free(&params);
  612. return true;
  613. }
  614. obs_source_t obs_get_output_source(uint32_t channel)
  615. {
  616. if (!obs) return NULL;
  617. return obs_view_getsource(&obs->data.main_view, channel);
  618. }
  619. void obs_set_output_source(uint32_t channel, obs_source_t source)
  620. {
  621. assert(channel < MAX_CHANNELS);
  622. if (!obs) return;
  623. if (channel >= MAX_CHANNELS) return;
  624. struct obs_source *prev_source;
  625. struct obs_view *view = &obs->data.main_view;
  626. struct calldata params = {0};
  627. pthread_mutex_lock(&view->channels_mutex);
  628. obs_source_addref(source);
  629. prev_source = view->channels[channel];
  630. calldata_setint(&params, "channel", channel);
  631. calldata_setptr(&params, "prev_source", prev_source);
  632. calldata_setptr(&params, "source", source);
  633. signal_handler_signal(obs->signals, "channel_change", &params);
  634. calldata_getptr(&params, "source", &source);
  635. calldata_free(&params);
  636. view->channels[channel] = source;
  637. pthread_mutex_unlock(&view->channels_mutex);
  638. if (source)
  639. obs_source_activate(source, MAIN_VIEW);
  640. if (prev_source) {
  641. obs_source_deactivate(prev_source, MAIN_VIEW);
  642. obs_source_release(prev_source);
  643. }
  644. }
  645. void obs_enum_sources(bool (*enum_proc)(void*, obs_source_t), void *param)
  646. {
  647. if (!obs) return;
  648. pthread_mutex_lock(&obs->data.user_sources_mutex);
  649. for (size_t i = 0; i < obs->data.user_sources.num; i++) {
  650. struct obs_source *source = obs->data.user_sources.array[i];
  651. if (!enum_proc(param, source))
  652. break;
  653. }
  654. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  655. }
  656. static inline void obs_enum(void *pstart, pthread_mutex_t *mutex, void *proc,
  657. void *param)
  658. {
  659. struct obs_context_data **start = pstart, *context;
  660. bool (*enum_proc)(void*, void*) = proc;
  661. assert(start);
  662. assert(mutex);
  663. assert(enum_proc);
  664. pthread_mutex_lock(mutex);
  665. context = *start;
  666. while (context) {
  667. if (!enum_proc(param, context))
  668. break;
  669. context = context->next;
  670. }
  671. pthread_mutex_unlock(mutex);
  672. }
  673. void obs_enum_outputs(bool (*enum_proc)(void*, obs_output_t), void *param)
  674. {
  675. if (!obs) return;
  676. obs_enum(&obs->data.first_output, &obs->data.outputs_mutex,
  677. enum_proc, param);
  678. }
  679. void obs_enum_encoders(bool (*enum_proc)(void*, obs_encoder_t), void *param)
  680. {
  681. if (!obs) return;
  682. obs_enum(&obs->data.first_encoder, &obs->data.encoders_mutex,
  683. enum_proc, param);
  684. }
  685. void obs_enum_services(bool (*enum_proc)(void*, obs_service_t), void *param)
  686. {
  687. if (!obs) return;
  688. obs_enum(&obs->data.first_service, &obs->data.services_mutex,
  689. enum_proc, param);
  690. }
  691. obs_source_t obs_get_source_by_name(const char *name)
  692. {
  693. struct obs_core_data *data = &obs->data;
  694. struct obs_source *source = NULL;
  695. size_t i;
  696. if (!obs) return NULL;
  697. pthread_mutex_lock(&data->user_sources_mutex);
  698. for (i = 0; i < data->user_sources.num; i++) {
  699. struct obs_source *cur_source = data->user_sources.array[i];
  700. if (strcmp(cur_source->context.name, name) == 0) {
  701. source = cur_source;
  702. obs_source_addref(source);
  703. break;
  704. }
  705. }
  706. pthread_mutex_unlock(&data->user_sources_mutex);
  707. return source;
  708. }
  709. static inline void *get_context_by_name(void *vfirst, const char *name,
  710. pthread_mutex_t *mutex)
  711. {
  712. struct obs_context_data **first = vfirst;
  713. struct obs_context_data *context;
  714. pthread_mutex_lock(mutex);
  715. context = *first;
  716. while (context) {
  717. if (strcmp(context->name, name) == 0)
  718. break;
  719. context = context->next;
  720. }
  721. pthread_mutex_unlock(mutex);
  722. return context;
  723. }
  724. obs_output_t obs_get_output_by_name(const char *name)
  725. {
  726. if (!obs) return NULL;
  727. return get_context_by_name(&obs->data.first_output, name,
  728. &obs->data.outputs_mutex);
  729. }
  730. obs_encoder_t obs_get_encoder_by_name(const char *name)
  731. {
  732. if (!obs) return NULL;
  733. return get_context_by_name(&obs->data.first_encoder, name,
  734. &obs->data.encoders_mutex);
  735. }
  736. obs_service_t obs_get_service_by_name(const char *name)
  737. {
  738. if (!obs) return NULL;
  739. return get_context_by_name(&obs->data.first_service, name,
  740. &obs->data.services_mutex);
  741. }
  742. effect_t obs_get_default_effect(void)
  743. {
  744. if (!obs) return NULL;
  745. return obs->video.default_effect;
  746. }
  747. signal_handler_t obs_signalhandler(void)
  748. {
  749. if (!obs) return NULL;
  750. return obs->signals;
  751. }
  752. proc_handler_t obs_prochandler(void)
  753. {
  754. if (!obs) return NULL;
  755. return obs->procs;
  756. }
  757. void obs_add_draw_callback(
  758. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  759. void *param)
  760. {
  761. if (!obs) return;
  762. obs_display_add_draw_callback(&obs->video.main_display, draw, param);
  763. }
  764. void obs_remove_draw_callback(
  765. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  766. void *param)
  767. {
  768. if (!obs) return;
  769. obs_display_remove_draw_callback(&obs->video.main_display, draw, param);
  770. }
  771. void obs_resize(uint32_t cx, uint32_t cy)
  772. {
  773. if (!obs || !obs->video.video || !obs->video.graphics) return;
  774. obs_display_resize(&obs->video.main_display, cx, cy);
  775. }
  776. void obs_render_main_view(void)
  777. {
  778. if (!obs) return;
  779. obs_view_render(&obs->data.main_view);
  780. }
  781. void obs_set_master_volume(float volume)
  782. {
  783. struct calldata data = {0};
  784. if (!obs) return;
  785. calldata_setfloat(&data, "volume", volume);
  786. signal_handler_signal(obs->signals, "master_volume", &data);
  787. volume = (float)calldata_float(&data, "volume");
  788. calldata_free(&data);
  789. obs->audio.user_volume = volume;
  790. }
  791. void obs_set_present_volume(float volume)
  792. {
  793. if (!obs) return;
  794. obs->audio.present_volume = volume;
  795. }
  796. float obs_get_master_volume(void)
  797. {
  798. return obs ? obs->audio.user_volume : 0.0f;
  799. }
  800. float obs_get_present_volume(void)
  801. {
  802. return obs ? obs->audio.present_volume : 0.0f;
  803. }
  804. obs_source_t obs_load_source(obs_data_t source_data)
  805. {
  806. obs_source_t source;
  807. const char *name = obs_data_getstring(source_data, "name");
  808. const char *id = obs_data_getstring(source_data, "id");
  809. obs_data_t settings = obs_data_getobj(source_data, "settings");
  810. double volume;
  811. source = obs_source_create(OBS_SOURCE_TYPE_INPUT, id, name, settings);
  812. obs_data_set_default_double(source_data, "volume", 1.0);
  813. volume = obs_data_getdouble(source_data, "volume");
  814. obs_source_setvolume(source, (float)volume);
  815. obs_data_release(settings);
  816. return source;
  817. }
  818. void obs_load_sources(obs_data_array_t array)
  819. {
  820. size_t count;
  821. size_t i;
  822. if (!obs) return;
  823. count = obs_data_array_count(array);
  824. pthread_mutex_lock(&obs->data.user_sources_mutex);
  825. for (i = 0; i < count; i++) {
  826. obs_data_t source_data = obs_data_array_item(array, i);
  827. obs_source_t source = obs_load_source(source_data);
  828. obs_add_source(source);
  829. obs_source_release(source);
  830. obs_data_release(source_data);
  831. }
  832. /* tell sources that we want to load */
  833. for (i = 0; i < obs->data.user_sources.num; i++)
  834. obs_source_load(obs->data.user_sources.array[i]);
  835. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  836. }
  837. obs_data_t obs_save_source(obs_source_t source)
  838. {
  839. obs_data_t source_data = obs_data_create();
  840. obs_data_t settings = obs_source_getsettings(source);
  841. float volume = obs_source_getvolume(source);
  842. const char *name = obs_source_getname(source);
  843. const char *id;
  844. obs_source_save(source);
  845. obs_source_gettype(source, NULL, &id);
  846. obs_data_setstring(source_data, "name", name);
  847. obs_data_setstring(source_data, "id", id);
  848. obs_data_setobj (source_data, "settings", settings);
  849. obs_data_setdouble(source_data, "volume", volume);
  850. obs_data_release(settings);
  851. return source_data;
  852. }
  853. obs_data_array_t obs_save_sources(void)
  854. {
  855. obs_data_array_t array;
  856. size_t i;
  857. if (!obs) return NULL;
  858. array = obs_data_array_create();
  859. pthread_mutex_lock(&obs->data.user_sources_mutex);
  860. for (i = 0; i < obs->data.user_sources.num; i++) {
  861. obs_source_t source = obs->data.user_sources.array[i];
  862. obs_data_t source_data = obs_save_source(source);
  863. obs_data_array_push_back(array, source_data);
  864. obs_data_release(source_data);
  865. }
  866. pthread_mutex_unlock(&obs->data.user_sources_mutex);
  867. return array;
  868. }
  869. /* ensures that names are never blank */
  870. static inline char *dup_name(const char *name)
  871. {
  872. if (!name || !*name) {
  873. struct dstr unnamed = {0};
  874. dstr_printf(&unnamed, "__unnamed%004lld",
  875. obs->data.unnamed_index++);
  876. return unnamed.array;
  877. } else {
  878. return bstrdup(name);
  879. }
  880. }
  881. static inline bool obs_context_data_init_wrap(
  882. struct obs_context_data *context,
  883. obs_data_t settings,
  884. const char *name)
  885. {
  886. assert(context);
  887. obs_context_data_free(context);
  888. context->signals = signal_handler_create();
  889. if (!context)
  890. return false;
  891. context->procs = proc_handler_create();
  892. if (!context->procs)
  893. return false;
  894. context->name = dup_name(name);
  895. context->settings = obs_data_newref(settings);
  896. return true;
  897. }
  898. bool obs_context_data_init(
  899. struct obs_context_data *context,
  900. obs_data_t settings,
  901. const char *name)
  902. {
  903. if (obs_context_data_init_wrap(context, settings, name)) {
  904. return true;
  905. } else {
  906. obs_context_data_free(context);
  907. return false;
  908. }
  909. }
  910. void obs_context_data_free(struct obs_context_data *context)
  911. {
  912. signal_handler_destroy(context->signals);
  913. proc_handler_destroy(context->procs);
  914. obs_data_release(context->settings);
  915. obs_context_data_remove(context);
  916. bfree(context->name);
  917. memset(context, 0, sizeof(*context));
  918. }
  919. void obs_context_data_insert(struct obs_context_data *context,
  920. pthread_mutex_t *mutex, void *pfirst)
  921. {
  922. struct obs_context_data **first = pfirst;
  923. assert(context);
  924. assert(mutex);
  925. assert(first);
  926. context->mutex = mutex;
  927. pthread_mutex_lock(mutex);
  928. context->prev_next = first;
  929. context->next = *first;
  930. *first = context;
  931. if (context->next)
  932. context->next->prev_next = &context->next;
  933. pthread_mutex_unlock(mutex);
  934. }
  935. void obs_context_data_remove(struct obs_context_data *context)
  936. {
  937. if (context && context->mutex) {
  938. pthread_mutex_lock(context->mutex);
  939. *context->prev_next = context->next;
  940. if (context->next)
  941. context->next->prev_next = context->prev_next;
  942. pthread_mutex_unlock(context->mutex);
  943. context->mutex = NULL;
  944. }
  945. }
  946. void obs_context_data_setname(struct obs_context_data *context,
  947. const char *name)
  948. {
  949. bfree(context->name);
  950. context->name = dup_name(name);
  951. }