obs.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  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 <inttypes.h>
  15. #include "graphics/matrix4.h"
  16. #include "callback/calldata.h"
  17. #include "obs.h"
  18. #include "obs-internal.h"
  19. struct obs_core *obs = NULL;
  20. extern void add_default_module_paths(void);
  21. extern char *find_libobs_data_file(const char *file);
  22. static inline void make_video_info(struct video_output_info *vi,
  23. struct obs_video_info *ovi)
  24. {
  25. vi->name = "video";
  26. vi->format = ovi->output_format;
  27. vi->fps_num = ovi->fps_num;
  28. vi->fps_den = ovi->fps_den;
  29. vi->width = ovi->output_width;
  30. vi->height = ovi->output_height;
  31. vi->range = ovi->range;
  32. vi->colorspace = ovi->colorspace;
  33. vi->cache_size = 6;
  34. }
  35. #define PIXEL_SIZE 4
  36. #define GET_ALIGN(val, align) \
  37. (((val) + (align-1)) & ~(align-1))
  38. static inline void set_420p_sizes(const struct obs_video_info *ovi)
  39. {
  40. struct obs_core_video *video = &obs->video;
  41. uint32_t chroma_pixels;
  42. uint32_t total_bytes;
  43. chroma_pixels = (ovi->output_width * ovi->output_height / 4);
  44. chroma_pixels = GET_ALIGN(chroma_pixels, PIXEL_SIZE);
  45. video->plane_offsets[0] = 0;
  46. video->plane_offsets[1] = ovi->output_width * ovi->output_height;
  47. video->plane_offsets[2] = video->plane_offsets[1] + chroma_pixels;
  48. video->plane_linewidth[0] = ovi->output_width;
  49. video->plane_linewidth[1] = ovi->output_width/2;
  50. video->plane_linewidth[2] = ovi->output_width/2;
  51. video->plane_sizes[0] = video->plane_offsets[1];
  52. video->plane_sizes[1] = video->plane_sizes[0]/4;
  53. video->plane_sizes[2] = video->plane_sizes[1];
  54. total_bytes = video->plane_offsets[2] + chroma_pixels;
  55. video->conversion_height =
  56. (total_bytes/PIXEL_SIZE + ovi->output_width-1) /
  57. ovi->output_width;
  58. video->conversion_height = GET_ALIGN(video->conversion_height, 2);
  59. video->conversion_tech = "Planar420";
  60. }
  61. static inline void set_nv12_sizes(const struct obs_video_info *ovi)
  62. {
  63. struct obs_core_video *video = &obs->video;
  64. uint32_t chroma_pixels;
  65. uint32_t total_bytes;
  66. chroma_pixels = (ovi->output_width * ovi->output_height / 2);
  67. chroma_pixels = GET_ALIGN(chroma_pixels, PIXEL_SIZE);
  68. video->plane_offsets[0] = 0;
  69. video->plane_offsets[1] = ovi->output_width * ovi->output_height;
  70. video->plane_linewidth[0] = ovi->output_width;
  71. video->plane_linewidth[1] = ovi->output_width;
  72. video->plane_sizes[0] = video->plane_offsets[1];
  73. video->plane_sizes[1] = video->plane_sizes[0]/2;
  74. total_bytes = video->plane_offsets[1] + chroma_pixels;
  75. video->conversion_height =
  76. (total_bytes/PIXEL_SIZE + ovi->output_width-1) /
  77. ovi->output_width;
  78. video->conversion_height = GET_ALIGN(video->conversion_height, 2);
  79. video->conversion_tech = "NV12";
  80. }
  81. static inline void set_444p_sizes(const struct obs_video_info *ovi)
  82. {
  83. struct obs_core_video *video = &obs->video;
  84. uint32_t chroma_pixels;
  85. uint32_t total_bytes;
  86. chroma_pixels = (ovi->output_width * ovi->output_height);
  87. chroma_pixels = GET_ALIGN(chroma_pixels, PIXEL_SIZE);
  88. video->plane_offsets[0] = 0;
  89. video->plane_offsets[1] = chroma_pixels;
  90. video->plane_offsets[2] = chroma_pixels + chroma_pixels;
  91. video->plane_linewidth[0] = ovi->output_width;
  92. video->plane_linewidth[1] = ovi->output_width;
  93. video->plane_linewidth[2] = ovi->output_width;
  94. video->plane_sizes[0] = chroma_pixels;
  95. video->plane_sizes[1] = chroma_pixels;
  96. video->plane_sizes[2] = chroma_pixels;
  97. total_bytes = video->plane_offsets[2] + chroma_pixels;
  98. video->conversion_height =
  99. (total_bytes/PIXEL_SIZE + ovi->output_width-1) /
  100. ovi->output_width;
  101. video->conversion_height = GET_ALIGN(video->conversion_height, 2);
  102. video->conversion_tech = "Planar444";
  103. }
  104. static inline void calc_gpu_conversion_sizes(const struct obs_video_info *ovi)
  105. {
  106. obs->video.conversion_height = 0;
  107. memset(obs->video.plane_offsets, 0, sizeof(obs->video.plane_offsets));
  108. memset(obs->video.plane_sizes, 0, sizeof(obs->video.plane_sizes));
  109. memset(obs->video.plane_linewidth, 0,
  110. sizeof(obs->video.plane_linewidth));
  111. switch ((uint32_t)ovi->output_format) {
  112. case VIDEO_FORMAT_I420:
  113. set_420p_sizes(ovi);
  114. break;
  115. case VIDEO_FORMAT_NV12:
  116. set_nv12_sizes(ovi);
  117. break;
  118. case VIDEO_FORMAT_I444:
  119. set_444p_sizes(ovi);
  120. break;
  121. }
  122. }
  123. static bool obs_init_gpu_conversion(struct obs_video_info *ovi)
  124. {
  125. struct obs_core_video *video = &obs->video;
  126. calc_gpu_conversion_sizes(ovi);
  127. if (!video->conversion_height) {
  128. blog(LOG_INFO, "GPU conversion not available for format: %u",
  129. (unsigned int)ovi->output_format);
  130. video->gpu_conversion = false;
  131. return true;
  132. }
  133. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  134. video->convert_textures[i] = gs_texture_create(
  135. ovi->output_width, video->conversion_height,
  136. GS_RGBA, 1, NULL, GS_RENDER_TARGET);
  137. if (!video->convert_textures[i])
  138. return false;
  139. }
  140. return true;
  141. }
  142. static bool obs_init_textures(struct obs_video_info *ovi)
  143. {
  144. struct obs_core_video *video = &obs->video;
  145. uint32_t output_height = video->gpu_conversion ?
  146. video->conversion_height : ovi->output_height;
  147. size_t i;
  148. for (i = 0; i < NUM_TEXTURES; i++) {
  149. video->copy_surfaces[i] = gs_stagesurface_create(
  150. ovi->output_width, output_height, GS_RGBA);
  151. if (!video->copy_surfaces[i])
  152. return false;
  153. video->render_textures[i] = gs_texture_create(
  154. ovi->base_width, ovi->base_height,
  155. GS_RGBA, 1, NULL, GS_RENDER_TARGET);
  156. if (!video->render_textures[i])
  157. return false;
  158. video->output_textures[i] = gs_texture_create(
  159. ovi->output_width, ovi->output_height,
  160. GS_RGBA, 1, NULL, GS_RENDER_TARGET);
  161. if (!video->output_textures[i])
  162. return false;
  163. }
  164. return true;
  165. }
  166. gs_effect_t *obs_load_effect(gs_effect_t **effect, const char *file)
  167. {
  168. if (!*effect) {
  169. char *filename = find_libobs_data_file(file);
  170. *effect = gs_effect_create_from_file(filename, NULL);
  171. bfree(filename);
  172. }
  173. return *effect;
  174. }
  175. static int obs_init_graphics(struct obs_video_info *ovi)
  176. {
  177. struct obs_core_video *video = &obs->video;
  178. uint8_t transparent_tex_data[2*2*4] = {0};
  179. const uint8_t *transparent_tex = transparent_tex_data;
  180. bool success = true;
  181. int errorcode;
  182. errorcode = gs_create(&video->graphics, ovi->graphics_module,
  183. ovi->adapter);
  184. if (errorcode != GS_SUCCESS) {
  185. switch (errorcode) {
  186. case GS_ERROR_MODULE_NOT_FOUND:
  187. return OBS_VIDEO_MODULE_NOT_FOUND;
  188. case GS_ERROR_NOT_SUPPORTED:
  189. return OBS_VIDEO_NOT_SUPPORTED;
  190. default:
  191. return OBS_VIDEO_FAIL;
  192. }
  193. }
  194. gs_enter_context(video->graphics);
  195. char *filename = find_libobs_data_file("default.effect");
  196. video->default_effect = gs_effect_create_from_file(filename,
  197. NULL);
  198. bfree(filename);
  199. if (gs_get_device_type() == GS_DEVICE_OPENGL) {
  200. filename = find_libobs_data_file("default_rect.effect");
  201. video->default_rect_effect = gs_effect_create_from_file(
  202. filename, NULL);
  203. bfree(filename);
  204. }
  205. filename = find_libobs_data_file("opaque.effect");
  206. video->opaque_effect = gs_effect_create_from_file(filename,
  207. NULL);
  208. bfree(filename);
  209. filename = find_libobs_data_file("solid.effect");
  210. video->solid_effect = gs_effect_create_from_file(filename,
  211. NULL);
  212. bfree(filename);
  213. filename = find_libobs_data_file("format_conversion.effect");
  214. video->conversion_effect = gs_effect_create_from_file(filename,
  215. NULL);
  216. bfree(filename);
  217. filename = find_libobs_data_file("bicubic_scale.effect");
  218. video->bicubic_effect = gs_effect_create_from_file(filename,
  219. NULL);
  220. bfree(filename);
  221. filename = find_libobs_data_file("lanczos_scale.effect");
  222. video->lanczos_effect = gs_effect_create_from_file(filename,
  223. NULL);
  224. bfree(filename);
  225. filename = find_libobs_data_file("bilinear_lowres_scale.effect");
  226. video->bilinear_lowres_effect = gs_effect_create_from_file(filename,
  227. NULL);
  228. bfree(filename);
  229. filename = find_libobs_data_file("premultiplied_alpha.effect");
  230. video->premultiplied_alpha_effect = gs_effect_create_from_file(filename,
  231. NULL);
  232. bfree(filename);
  233. obs->video.transparent_texture = gs_texture_create(2, 2, GS_RGBA, 1,
  234. &transparent_tex, 0);
  235. if (!video->default_effect)
  236. success = false;
  237. if (gs_get_device_type() == GS_DEVICE_OPENGL) {
  238. if (!video->default_rect_effect)
  239. success = false;
  240. }
  241. if (!video->opaque_effect)
  242. success = false;
  243. if (!video->solid_effect)
  244. success = false;
  245. if (!video->conversion_effect)
  246. success = false;
  247. if (!video->premultiplied_alpha_effect)
  248. success = false;
  249. if (!video->transparent_texture)
  250. success = false;
  251. gs_leave_context();
  252. return success ? OBS_VIDEO_SUCCESS : OBS_VIDEO_FAIL;
  253. }
  254. static inline void set_video_matrix(struct obs_core_video *video,
  255. struct obs_video_info *ovi)
  256. {
  257. struct matrix4 mat;
  258. struct vec4 r_row;
  259. if (format_is_yuv(ovi->output_format)) {
  260. video_format_get_parameters(ovi->colorspace, ovi->range,
  261. (float*)&mat, NULL, NULL);
  262. matrix4_inv(&mat, &mat);
  263. /* swap R and G */
  264. r_row = mat.x;
  265. mat.x = mat.y;
  266. mat.y = r_row;
  267. } else {
  268. matrix4_identity(&mat);
  269. }
  270. memcpy(video->color_matrix, &mat, sizeof(float) * 16);
  271. }
  272. static int obs_init_video(struct obs_video_info *ovi)
  273. {
  274. struct obs_core_video *video = &obs->video;
  275. struct video_output_info vi;
  276. int errorcode;
  277. make_video_info(&vi, ovi);
  278. video->base_width = ovi->base_width;
  279. video->base_height = ovi->base_height;
  280. video->output_width = ovi->output_width;
  281. video->output_height = ovi->output_height;
  282. video->gpu_conversion = ovi->gpu_conversion;
  283. video->scale_type = ovi->scale_type;
  284. set_video_matrix(video, ovi);
  285. errorcode = video_output_open(&video->video, &vi);
  286. if (errorcode != VIDEO_OUTPUT_SUCCESS) {
  287. if (errorcode == VIDEO_OUTPUT_INVALIDPARAM) {
  288. blog(LOG_ERROR, "Invalid video parameters specified");
  289. return OBS_VIDEO_INVALID_PARAM;
  290. } else {
  291. blog(LOG_ERROR, "Could not open video output");
  292. }
  293. return OBS_VIDEO_FAIL;
  294. }
  295. gs_enter_context(video->graphics);
  296. if (ovi->gpu_conversion && !obs_init_gpu_conversion(ovi))
  297. return OBS_VIDEO_FAIL;
  298. if (!obs_init_textures(ovi))
  299. return OBS_VIDEO_FAIL;
  300. gs_leave_context();
  301. errorcode = pthread_create(&video->video_thread, NULL,
  302. obs_video_thread, obs);
  303. if (errorcode != 0)
  304. return OBS_VIDEO_FAIL;
  305. video->thread_initialized = true;
  306. return OBS_VIDEO_SUCCESS;
  307. }
  308. static void stop_video(void)
  309. {
  310. struct obs_core_video *video = &obs->video;
  311. void *thread_retval;
  312. if (video->video) {
  313. video_output_stop(video->video);
  314. if (video->thread_initialized) {
  315. pthread_join(video->video_thread, &thread_retval);
  316. video->thread_initialized = false;
  317. }
  318. }
  319. }
  320. static void obs_free_video(void)
  321. {
  322. struct obs_core_video *video = &obs->video;
  323. if (video->video) {
  324. video_output_close(video->video);
  325. video->video = NULL;
  326. if (!video->graphics)
  327. return;
  328. gs_enter_context(video->graphics);
  329. if (video->mapped_surface) {
  330. gs_stagesurface_unmap(video->mapped_surface);
  331. video->mapped_surface = NULL;
  332. }
  333. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  334. gs_stagesurface_destroy(video->copy_surfaces[i]);
  335. gs_texture_destroy(video->render_textures[i]);
  336. gs_texture_destroy(video->convert_textures[i]);
  337. gs_texture_destroy(video->output_textures[i]);
  338. video->copy_surfaces[i] = NULL;
  339. video->render_textures[i] = NULL;
  340. video->convert_textures[i] = NULL;
  341. video->output_textures[i] = NULL;
  342. }
  343. gs_leave_context();
  344. circlebuf_free(&video->vframe_info_buffer);
  345. memset(&video->textures_rendered, 0,
  346. sizeof(video->textures_rendered));
  347. memset(&video->textures_output, 0,
  348. sizeof(video->textures_output));
  349. memset(&video->textures_copied, 0,
  350. sizeof(video->textures_copied));
  351. memset(&video->textures_converted, 0,
  352. sizeof(video->textures_converted));
  353. video->cur_texture = 0;
  354. }
  355. }
  356. static void obs_free_graphics(void)
  357. {
  358. struct obs_core_video *video = &obs->video;
  359. if (video->graphics) {
  360. gs_enter_context(video->graphics);
  361. gs_texture_destroy(video->transparent_texture);
  362. gs_effect_destroy(video->default_effect);
  363. gs_effect_destroy(video->default_rect_effect);
  364. gs_effect_destroy(video->opaque_effect);
  365. gs_effect_destroy(video->solid_effect);
  366. gs_effect_destroy(video->conversion_effect);
  367. gs_effect_destroy(video->bicubic_effect);
  368. gs_effect_destroy(video->lanczos_effect);
  369. gs_effect_destroy(video->bilinear_lowres_effect);
  370. video->default_effect = NULL;
  371. gs_leave_context();
  372. gs_destroy(video->graphics);
  373. video->graphics = NULL;
  374. }
  375. }
  376. static bool obs_init_audio(struct audio_output_info *ai)
  377. {
  378. struct obs_core_audio *audio = &obs->audio;
  379. int errorcode;
  380. /* TODO: sound subsystem */
  381. audio->user_volume = 1.0f;
  382. errorcode = audio_output_open(&audio->audio, ai);
  383. if (errorcode == AUDIO_OUTPUT_SUCCESS)
  384. return true;
  385. else if (errorcode == AUDIO_OUTPUT_INVALIDPARAM)
  386. blog(LOG_ERROR, "Invalid audio parameters specified");
  387. else
  388. blog(LOG_ERROR, "Could not open audio output");
  389. return false;
  390. }
  391. static void obs_free_audio(void)
  392. {
  393. struct obs_core_audio *audio = &obs->audio;
  394. if (audio->audio)
  395. audio_output_close(audio->audio);
  396. circlebuf_free(&audio->buffered_timestamps);
  397. da_free(audio->render_order);
  398. da_free(audio->root_nodes);
  399. memset(audio, 0, sizeof(struct obs_core_audio));
  400. }
  401. static bool obs_init_data(void)
  402. {
  403. struct obs_core_data *data = &obs->data;
  404. pthread_mutexattr_t attr;
  405. assert(data != NULL);
  406. pthread_mutex_init_value(&obs->data.displays_mutex);
  407. if (pthread_mutexattr_init(&attr) != 0)
  408. return false;
  409. if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0)
  410. goto fail;
  411. if (pthread_mutex_init(&data->sources_mutex, &attr) != 0)
  412. goto fail;
  413. if (pthread_mutex_init(&data->audio_sources_mutex, &attr) != 0)
  414. goto fail;
  415. if (pthread_mutex_init(&data->displays_mutex, &attr) != 0)
  416. goto fail;
  417. if (pthread_mutex_init(&data->outputs_mutex, &attr) != 0)
  418. goto fail;
  419. if (pthread_mutex_init(&data->encoders_mutex, &attr) != 0)
  420. goto fail;
  421. if (pthread_mutex_init(&data->services_mutex, &attr) != 0)
  422. goto fail;
  423. if (!obs_view_init(&data->main_view))
  424. goto fail;
  425. data->valid = true;
  426. fail:
  427. pthread_mutexattr_destroy(&attr);
  428. return data->valid;
  429. }
  430. void obs_main_view_free(struct obs_view *view)
  431. {
  432. if (!view) return;
  433. for (size_t i = 0; i < MAX_CHANNELS; i++)
  434. obs_source_release(view->channels[i]);
  435. memset(view->channels, 0, sizeof(view->channels));
  436. pthread_mutex_destroy(&view->channels_mutex);
  437. }
  438. #define FREE_OBS_LINKED_LIST(type) \
  439. do { \
  440. int unfreed = 0; \
  441. while (data->first_ ## type ) { \
  442. obs_ ## type ## _destroy(data->first_ ## type ); \
  443. unfreed++; \
  444. } \
  445. if (unfreed) \
  446. blog(LOG_INFO, "\t%d " #type "(s) were remaining", \
  447. unfreed); \
  448. } while (false)
  449. static void obs_free_data(void)
  450. {
  451. struct obs_core_data *data = &obs->data;
  452. data->valid = false;
  453. obs_main_view_free(&data->main_view);
  454. blog(LOG_INFO, "Freeing OBS context data");
  455. FREE_OBS_LINKED_LIST(source);
  456. FREE_OBS_LINKED_LIST(output);
  457. FREE_OBS_LINKED_LIST(encoder);
  458. FREE_OBS_LINKED_LIST(display);
  459. FREE_OBS_LINKED_LIST(service);
  460. pthread_mutex_destroy(&data->sources_mutex);
  461. pthread_mutex_destroy(&data->audio_sources_mutex);
  462. pthread_mutex_destroy(&data->displays_mutex);
  463. pthread_mutex_destroy(&data->outputs_mutex);
  464. pthread_mutex_destroy(&data->encoders_mutex);
  465. pthread_mutex_destroy(&data->services_mutex);
  466. }
  467. static const char *obs_signals[] = {
  468. "void source_create(ptr source)",
  469. "void source_destroy(ptr source)",
  470. "void source_remove(ptr source)",
  471. "void source_save(ptr source)",
  472. "void source_load(ptr source)",
  473. "void source_activate(ptr source)",
  474. "void source_deactivate(ptr source)",
  475. "void source_show(ptr source)",
  476. "void source_hide(ptr source)",
  477. "void source_rename(ptr source, string new_name, string prev_name)",
  478. "void source_volume(ptr source, in out float volume)",
  479. "void source_volume_level(ptr source, float level, float magnitude, "
  480. "float peak)",
  481. "void source_transition_start(ptr source)",
  482. "void source_transition_video_stop(ptr source)",
  483. "void source_transition_stop(ptr source)",
  484. "void channel_change(int channel, in out ptr source, ptr prev_source)",
  485. "void master_volume(in out float volume)",
  486. "void hotkey_layout_change()",
  487. "void hotkey_register(ptr hotkey)",
  488. "void hotkey_unregister(ptr hotkey)",
  489. "void hotkey_bindings_changed(ptr hotkey)",
  490. NULL
  491. };
  492. static inline bool obs_init_handlers(void)
  493. {
  494. obs->signals = signal_handler_create();
  495. if (!obs->signals)
  496. return false;
  497. obs->procs = proc_handler_create();
  498. if (!obs->procs)
  499. return false;
  500. return signal_handler_add_array(obs->signals, obs_signals);
  501. }
  502. static pthread_once_t obs_pthread_once_init_token = PTHREAD_ONCE_INIT;
  503. static inline bool obs_init_hotkeys(void)
  504. {
  505. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  506. pthread_mutexattr_t attr;
  507. bool success = false;
  508. assert(hotkeys != NULL);
  509. da_init(hotkeys->hotkeys);
  510. hotkeys->signals = obs->signals;
  511. hotkeys->name_map_init_token = obs_pthread_once_init_token;
  512. hotkeys->mute = bstrdup("Mute");
  513. hotkeys->unmute = bstrdup("Unmute");
  514. hotkeys->push_to_mute = bstrdup("Push-to-mute");
  515. hotkeys->push_to_talk = bstrdup("Push-to-talk");
  516. hotkeys->sceneitem_show = bstrdup("Show '%1'");
  517. hotkeys->sceneitem_hide = bstrdup("Hide '%1'");
  518. if (!obs_hotkeys_platform_init(hotkeys))
  519. return false;
  520. if (pthread_mutexattr_init(&attr) != 0)
  521. return false;
  522. if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0)
  523. goto fail;
  524. if (pthread_mutex_init(&hotkeys->mutex, &attr) != 0)
  525. goto fail;
  526. if (os_event_init(&hotkeys->stop_event, OS_EVENT_TYPE_MANUAL) != 0)
  527. goto fail;
  528. if (pthread_create(&hotkeys->hotkey_thread, NULL,
  529. obs_hotkey_thread, NULL))
  530. goto fail;
  531. hotkeys->hotkey_thread_initialized = true;
  532. success = true;
  533. fail:
  534. pthread_mutexattr_destroy(&attr);
  535. return success;
  536. }
  537. static inline void stop_hotkeys(void)
  538. {
  539. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  540. void *thread_ret;
  541. if (hotkeys->hotkey_thread_initialized) {
  542. os_event_signal(hotkeys->stop_event);
  543. pthread_join(hotkeys->hotkey_thread, &thread_ret);
  544. hotkeys->hotkey_thread_initialized = false;
  545. }
  546. os_event_destroy(hotkeys->stop_event);
  547. obs_hotkeys_free();
  548. }
  549. static inline void obs_free_hotkeys(void)
  550. {
  551. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  552. bfree(hotkeys->mute);
  553. bfree(hotkeys->unmute);
  554. bfree(hotkeys->push_to_mute);
  555. bfree(hotkeys->push_to_talk);
  556. bfree(hotkeys->sceneitem_show);
  557. bfree(hotkeys->sceneitem_hide);
  558. obs_hotkey_name_map_free();
  559. obs_hotkeys_platform_free(hotkeys);
  560. pthread_mutex_destroy(&hotkeys->mutex);
  561. }
  562. extern const struct obs_source_info scene_info;
  563. extern void log_system_info(void);
  564. static bool obs_init(const char *locale, const char *module_config_path,
  565. profiler_name_store_t *store)
  566. {
  567. obs = bzalloc(sizeof(struct obs_core));
  568. obs->name_store_owned = !store;
  569. obs->name_store = store ? store : profiler_name_store_create();
  570. if (!obs->name_store) {
  571. blog(LOG_ERROR, "Couldn't create profiler name store");
  572. return false;
  573. }
  574. log_system_info();
  575. if (!obs_init_data())
  576. return false;
  577. if (!obs_init_handlers())
  578. return false;
  579. if (!obs_init_hotkeys())
  580. return false;
  581. if (module_config_path)
  582. obs->module_config_path = bstrdup(module_config_path);
  583. obs->locale = bstrdup(locale);
  584. obs_register_source(&scene_info);
  585. add_default_module_paths();
  586. return true;
  587. }
  588. #ifdef _WIN32
  589. extern void initialize_crash_handler(void);
  590. extern void initialize_com(void);
  591. extern void uninitialize_com(void);
  592. #endif
  593. static const char *obs_startup_name = "obs_startup";
  594. bool obs_startup(const char *locale, const char *module_config_path,
  595. profiler_name_store_t *store)
  596. {
  597. bool success;
  598. profile_start(obs_startup_name);
  599. if (obs) {
  600. blog(LOG_WARNING, "Tried to call obs_startup more than once");
  601. return false;
  602. }
  603. #ifdef _WIN32
  604. initialize_crash_handler();
  605. initialize_com();
  606. #endif
  607. success = obs_init(locale, module_config_path, store);
  608. profile_end(obs_startup_name);
  609. if (!success)
  610. obs_shutdown();
  611. return success;
  612. }
  613. void obs_shutdown(void)
  614. {
  615. struct obs_module *module;
  616. if (!obs)
  617. return;
  618. #define FREE_REGISTERED_TYPES(structure, list) \
  619. do { \
  620. for (size_t i = 0; i < list.num; i++) { \
  621. struct structure *item = &list.array[i]; \
  622. if (item->type_data && item->free_type_data) \
  623. item->free_type_data(item->type_data); \
  624. } \
  625. da_free(list); \
  626. } while (false)
  627. FREE_REGISTERED_TYPES(obs_source_info, obs->source_types);
  628. FREE_REGISTERED_TYPES(obs_source_info, obs->input_types);
  629. FREE_REGISTERED_TYPES(obs_source_info, obs->filter_types);
  630. FREE_REGISTERED_TYPES(obs_source_info, obs->transition_types);
  631. FREE_REGISTERED_TYPES(obs_output_info, obs->output_types);
  632. FREE_REGISTERED_TYPES(obs_encoder_info, obs->encoder_types);
  633. FREE_REGISTERED_TYPES(obs_service_info, obs->service_types);
  634. FREE_REGISTERED_TYPES(obs_modal_ui, obs->modal_ui_callbacks);
  635. FREE_REGISTERED_TYPES(obs_modeless_ui, obs->modeless_ui_callbacks);
  636. #undef FREE_REGISTERED_TYPES
  637. stop_video();
  638. stop_hotkeys();
  639. obs_free_audio();
  640. obs_free_data();
  641. obs_free_video();
  642. obs_free_hotkeys();
  643. obs_free_graphics();
  644. proc_handler_destroy(obs->procs);
  645. signal_handler_destroy(obs->signals);
  646. module = obs->first_module;
  647. while (module) {
  648. struct obs_module *next = module->next;
  649. free_module(module);
  650. module = next;
  651. }
  652. obs->first_module = NULL;
  653. for (size_t i = 0; i < obs->module_paths.num; i++)
  654. free_module_path(obs->module_paths.array+i);
  655. da_free(obs->module_paths);
  656. if (obs->name_store_owned)
  657. profiler_name_store_free(obs->name_store);
  658. bfree(obs->module_config_path);
  659. bfree(obs->locale);
  660. bfree(obs);
  661. obs = NULL;
  662. #ifdef _WIN32
  663. uninitialize_com();
  664. #endif
  665. }
  666. bool obs_initialized(void)
  667. {
  668. return obs != NULL;
  669. }
  670. uint32_t obs_get_version(void)
  671. {
  672. return LIBOBS_API_VER;
  673. }
  674. void obs_set_locale(const char *locale)
  675. {
  676. struct obs_module *module;
  677. if (!obs)
  678. return;
  679. if (obs->locale)
  680. bfree(obs->locale);
  681. obs->locale = bstrdup(locale);
  682. module = obs->first_module;
  683. while (module) {
  684. if (module->set_locale)
  685. module->set_locale(locale);
  686. module = module->next;
  687. }
  688. }
  689. const char *obs_get_locale(void)
  690. {
  691. return obs ? obs->locale : NULL;
  692. }
  693. #define OBS_SIZE_MIN 2
  694. #define OBS_SIZE_MAX (32 * 1024)
  695. static inline bool size_valid(uint32_t width, uint32_t height)
  696. {
  697. return (width >= OBS_SIZE_MIN && height >= OBS_SIZE_MIN &&
  698. width <= OBS_SIZE_MAX && height <= OBS_SIZE_MAX);
  699. }
  700. int obs_reset_video(struct obs_video_info *ovi)
  701. {
  702. if (!obs) return OBS_VIDEO_FAIL;
  703. /* don't allow changing of video settings if active. */
  704. if (obs->video.video && video_output_active(obs->video.video))
  705. return OBS_VIDEO_CURRENTLY_ACTIVE;
  706. if (!size_valid(ovi->output_width, ovi->output_height) ||
  707. !size_valid(ovi->base_width, ovi->base_height))
  708. return OBS_VIDEO_INVALID_PARAM;
  709. struct obs_core_video *video = &obs->video;
  710. stop_video();
  711. obs_free_video();
  712. if (!ovi) {
  713. obs_free_graphics();
  714. return OBS_VIDEO_SUCCESS;
  715. }
  716. /* align to multiple-of-two and SSE alignment sizes */
  717. ovi->output_width &= 0xFFFFFFFC;
  718. ovi->output_height &= 0xFFFFFFFE;
  719. if (!video->graphics) {
  720. int errorcode = obs_init_graphics(ovi);
  721. if (errorcode != OBS_VIDEO_SUCCESS) {
  722. obs_free_graphics();
  723. return errorcode;
  724. }
  725. }
  726. blog(LOG_INFO, "---------------------------------");
  727. blog(LOG_INFO, "video settings reset:\n"
  728. "\tbase resolution: %dx%d\n"
  729. "\toutput resolution: %dx%d\n"
  730. "\tfps: %d/%d\n"
  731. "\tformat: %s",
  732. ovi->base_width, ovi->base_height,
  733. ovi->output_width, ovi->output_height,
  734. ovi->fps_num, ovi->fps_den,
  735. get_video_format_name(ovi->output_format));
  736. return obs_init_video(ovi);
  737. }
  738. bool obs_reset_audio(const struct obs_audio_info *oai)
  739. {
  740. struct audio_output_info ai;
  741. if (!obs) return false;
  742. /* don't allow changing of audio settings if active. */
  743. if (obs->audio.audio && audio_output_active(obs->audio.audio))
  744. return false;
  745. obs_free_audio();
  746. if (!oai)
  747. return true;
  748. ai.name = "Audio";
  749. ai.samples_per_sec = oai->samples_per_sec;
  750. ai.format = AUDIO_FORMAT_FLOAT_PLANAR;
  751. ai.speakers = oai->speakers;
  752. ai.input_callback = audio_callback;
  753. blog(LOG_INFO, "---------------------------------");
  754. blog(LOG_INFO, "audio settings reset:\n"
  755. "\tsamples per sec: %d\n"
  756. "\tspeakers: %d",
  757. (int)ai.samples_per_sec,
  758. (int)ai.speakers);
  759. return obs_init_audio(&ai);
  760. }
  761. bool obs_get_video_info(struct obs_video_info *ovi)
  762. {
  763. struct obs_core_video *video = &obs->video;
  764. const struct video_output_info *info;
  765. if (!obs || !video->graphics)
  766. return false;
  767. info = video_output_get_info(video->video);
  768. if (!info)
  769. return false;
  770. memset(ovi, 0, sizeof(struct obs_video_info));
  771. ovi->base_width = video->base_width;
  772. ovi->base_height = video->base_height;
  773. ovi->gpu_conversion= video->gpu_conversion;
  774. ovi->scale_type = video->scale_type;
  775. ovi->colorspace = info->colorspace;
  776. ovi->range = info->range;
  777. ovi->output_width = info->width;
  778. ovi->output_height = info->height;
  779. ovi->output_format = info->format;
  780. ovi->fps_num = info->fps_num;
  781. ovi->fps_den = info->fps_den;
  782. return true;
  783. }
  784. bool obs_get_audio_info(struct obs_audio_info *oai)
  785. {
  786. struct obs_core_audio *audio = &obs->audio;
  787. const struct audio_output_info *info;
  788. if (!obs || !oai || !audio->audio)
  789. return false;
  790. info = audio_output_get_info(audio->audio);
  791. oai->samples_per_sec = info->samples_per_sec;
  792. oai->speakers = info->speakers;
  793. return true;
  794. }
  795. bool obs_enum_source_types(size_t idx, const char **id)
  796. {
  797. if (!obs) return false;
  798. if (idx >= obs->source_types.num)
  799. return false;
  800. *id = obs->source_types.array[idx].id;
  801. return true;
  802. }
  803. bool obs_enum_input_types(size_t idx, const char **id)
  804. {
  805. if (!obs) return false;
  806. if (idx >= obs->input_types.num)
  807. return false;
  808. *id = obs->input_types.array[idx].id;
  809. return true;
  810. }
  811. bool obs_enum_filter_types(size_t idx, const char **id)
  812. {
  813. if (!obs) return false;
  814. if (idx >= obs->filter_types.num)
  815. return false;
  816. *id = obs->filter_types.array[idx].id;
  817. return true;
  818. }
  819. bool obs_enum_transition_types(size_t idx, const char **id)
  820. {
  821. if (!obs) return false;
  822. if (idx >= obs->transition_types.num)
  823. return false;
  824. *id = obs->transition_types.array[idx].id;
  825. return true;
  826. }
  827. bool obs_enum_output_types(size_t idx, const char **id)
  828. {
  829. if (!obs) return false;
  830. if (idx >= obs->output_types.num)
  831. return false;
  832. *id = obs->output_types.array[idx].id;
  833. return true;
  834. }
  835. bool obs_enum_encoder_types(size_t idx, const char **id)
  836. {
  837. if (!obs) return false;
  838. if (idx >= obs->encoder_types.num)
  839. return false;
  840. *id = obs->encoder_types.array[idx].id;
  841. return true;
  842. }
  843. bool obs_enum_service_types(size_t idx, const char **id)
  844. {
  845. if (!obs) return false;
  846. if (idx >= obs->service_types.num)
  847. return false;
  848. *id = obs->service_types.array[idx].id;
  849. return true;
  850. }
  851. void obs_enter_graphics(void)
  852. {
  853. if (obs && obs->video.graphics)
  854. gs_enter_context(obs->video.graphics);
  855. }
  856. void obs_leave_graphics(void)
  857. {
  858. if (obs && obs->video.graphics)
  859. gs_leave_context();
  860. }
  861. audio_t *obs_get_audio(void)
  862. {
  863. return (obs != NULL) ? obs->audio.audio : NULL;
  864. }
  865. video_t *obs_get_video(void)
  866. {
  867. return (obs != NULL) ? obs->video.video : NULL;
  868. }
  869. /* TODO: optimize this later so it's not just O(N) string lookups */
  870. static inline struct obs_modal_ui *get_modal_ui_callback(const char *id,
  871. const char *task, const char *target)
  872. {
  873. for (size_t i = 0; i < obs->modal_ui_callbacks.num; i++) {
  874. struct obs_modal_ui *callback = obs->modal_ui_callbacks.array+i;
  875. if (strcmp(callback->id, id) == 0 &&
  876. strcmp(callback->task, task) == 0 &&
  877. strcmp(callback->target, target) == 0)
  878. return callback;
  879. }
  880. return NULL;
  881. }
  882. static inline struct obs_modeless_ui *get_modeless_ui_callback(const char *id,
  883. const char *task, const char *target)
  884. {
  885. for (size_t i = 0; i < obs->modeless_ui_callbacks.num; i++) {
  886. struct obs_modeless_ui *callback;
  887. callback = obs->modeless_ui_callbacks.array+i;
  888. if (strcmp(callback->id, id) == 0 &&
  889. strcmp(callback->task, task) == 0 &&
  890. strcmp(callback->target, target) == 0)
  891. return callback;
  892. }
  893. return NULL;
  894. }
  895. int obs_exec_ui(const char *name, const char *task, const char *target,
  896. void *data, void *ui_data)
  897. {
  898. struct obs_modal_ui *callback;
  899. int errorcode = OBS_UI_NOTFOUND;
  900. if (!obs) return errorcode;
  901. callback = get_modal_ui_callback(name, task, target);
  902. if (callback) {
  903. bool success = callback->exec(data, ui_data);
  904. errorcode = success ? OBS_UI_SUCCESS : OBS_UI_CANCEL;
  905. }
  906. return errorcode;
  907. }
  908. void *obs_create_ui(const char *name, const char *task, const char *target,
  909. void *data, void *ui_data)
  910. {
  911. struct obs_modeless_ui *callback;
  912. if (!obs) return NULL;
  913. callback = get_modeless_ui_callback(name, task, target);
  914. return callback ? callback->create(data, ui_data) : NULL;
  915. }
  916. obs_source_t *obs_get_output_source(uint32_t channel)
  917. {
  918. if (!obs) return NULL;
  919. return obs_view_get_source(&obs->data.main_view, channel);
  920. }
  921. void obs_set_output_source(uint32_t channel, obs_source_t *source)
  922. {
  923. assert(channel < MAX_CHANNELS);
  924. if (!obs) return;
  925. if (channel >= MAX_CHANNELS) return;
  926. struct obs_source *prev_source;
  927. struct obs_view *view = &obs->data.main_view;
  928. struct calldata params = {0};
  929. pthread_mutex_lock(&view->channels_mutex);
  930. obs_source_addref(source);
  931. prev_source = view->channels[channel];
  932. calldata_set_int(&params, "channel", channel);
  933. calldata_set_ptr(&params, "prev_source", prev_source);
  934. calldata_set_ptr(&params, "source", source);
  935. signal_handler_signal(obs->signals, "channel_change", &params);
  936. calldata_get_ptr(&params, "source", &source);
  937. calldata_free(&params);
  938. view->channels[channel] = source;
  939. pthread_mutex_unlock(&view->channels_mutex);
  940. if (source)
  941. obs_source_activate(source, MAIN_VIEW);
  942. if (prev_source) {
  943. obs_source_deactivate(prev_source, MAIN_VIEW);
  944. obs_source_release(prev_source);
  945. }
  946. }
  947. void obs_enum_sources(bool (*enum_proc)(void*, obs_source_t*), void *param)
  948. {
  949. obs_source_t *source;
  950. if (!obs) return;
  951. pthread_mutex_lock(&obs->data.sources_mutex);
  952. source = obs->data.first_source;
  953. while (source) {
  954. obs_source_t *next_source =
  955. (obs_source_t*)source->context.next;
  956. if ((source->info.type == OBS_SOURCE_TYPE_INPUT) != 0 &&
  957. !enum_proc(param, source))
  958. break;
  959. source = next_source;
  960. }
  961. pthread_mutex_unlock(&obs->data.sources_mutex);
  962. }
  963. static inline void obs_enum(void *pstart, pthread_mutex_t *mutex, void *proc,
  964. void *param)
  965. {
  966. struct obs_context_data **start = pstart, *context;
  967. bool (*enum_proc)(void*, void*) = proc;
  968. assert(start);
  969. assert(mutex);
  970. assert(enum_proc);
  971. pthread_mutex_lock(mutex);
  972. context = *start;
  973. while (context) {
  974. if (!enum_proc(param, context))
  975. break;
  976. context = context->next;
  977. }
  978. pthread_mutex_unlock(mutex);
  979. }
  980. void obs_enum_outputs(bool (*enum_proc)(void*, obs_output_t*), void *param)
  981. {
  982. if (!obs) return;
  983. obs_enum(&obs->data.first_output, &obs->data.outputs_mutex,
  984. enum_proc, param);
  985. }
  986. void obs_enum_encoders(bool (*enum_proc)(void*, obs_encoder_t*), void *param)
  987. {
  988. if (!obs) return;
  989. obs_enum(&obs->data.first_encoder, &obs->data.encoders_mutex,
  990. enum_proc, param);
  991. }
  992. void obs_enum_services(bool (*enum_proc)(void*, obs_service_t*), void *param)
  993. {
  994. if (!obs) return;
  995. obs_enum(&obs->data.first_service, &obs->data.services_mutex,
  996. enum_proc, param);
  997. }
  998. static inline void *get_context_by_name(void *vfirst, const char *name,
  999. pthread_mutex_t *mutex, void *(*addref)(void*))
  1000. {
  1001. struct obs_context_data **first = vfirst;
  1002. struct obs_context_data *context;
  1003. pthread_mutex_lock(mutex);
  1004. context = *first;
  1005. while (context) {
  1006. if (!context->private && strcmp(context->name, name) == 0) {
  1007. context = addref(context);
  1008. break;
  1009. }
  1010. context = context->next;
  1011. }
  1012. pthread_mutex_unlock(mutex);
  1013. return context;
  1014. }
  1015. static inline void *obs_source_addref_safe_(void *ref)
  1016. {
  1017. return obs_source_get_ref(ref);
  1018. }
  1019. static inline void *obs_output_addref_safe_(void *ref)
  1020. {
  1021. return obs_output_get_ref(ref);
  1022. }
  1023. static inline void *obs_encoder_addref_safe_(void *ref)
  1024. {
  1025. return obs_encoder_get_ref(ref);
  1026. }
  1027. static inline void *obs_service_addref_safe_(void *ref)
  1028. {
  1029. return obs_service_get_ref(ref);
  1030. }
  1031. static inline void *obs_id_(void *data)
  1032. {
  1033. return data;
  1034. }
  1035. obs_source_t *obs_get_source_by_name(const char *name)
  1036. {
  1037. if (!obs) return NULL;
  1038. return get_context_by_name(&obs->data.first_source, name,
  1039. &obs->data.sources_mutex, obs_source_addref_safe_);
  1040. }
  1041. obs_output_t *obs_get_output_by_name(const char *name)
  1042. {
  1043. if (!obs) return NULL;
  1044. return get_context_by_name(&obs->data.first_output, name,
  1045. &obs->data.outputs_mutex, obs_output_addref_safe_);
  1046. }
  1047. obs_encoder_t *obs_get_encoder_by_name(const char *name)
  1048. {
  1049. if (!obs) return NULL;
  1050. return get_context_by_name(&obs->data.first_encoder, name,
  1051. &obs->data.encoders_mutex, obs_encoder_addref_safe_);
  1052. }
  1053. obs_service_t *obs_get_service_by_name(const char *name)
  1054. {
  1055. if (!obs) return NULL;
  1056. return get_context_by_name(&obs->data.first_service, name,
  1057. &obs->data.services_mutex, obs_service_addref_safe_);
  1058. }
  1059. gs_effect_t *obs_get_base_effect(enum obs_base_effect effect)
  1060. {
  1061. if (!obs) return NULL;
  1062. switch (effect) {
  1063. case OBS_EFFECT_DEFAULT:
  1064. return obs->video.default_effect;
  1065. case OBS_EFFECT_DEFAULT_RECT:
  1066. return obs->video.default_rect_effect;
  1067. case OBS_EFFECT_OPAQUE:
  1068. return obs->video.opaque_effect;
  1069. case OBS_EFFECT_SOLID:
  1070. return obs->video.solid_effect;
  1071. case OBS_EFFECT_BICUBIC:
  1072. return obs->video.bicubic_effect;
  1073. case OBS_EFFECT_LANCZOS:
  1074. return obs->video.lanczos_effect;
  1075. case OBS_EFFECT_BILINEAR_LOWRES:
  1076. return obs->video.bilinear_lowres_effect;
  1077. case OBS_EFFECT_PREMULTIPLIED_ALPHA:
  1078. return obs->video.premultiplied_alpha_effect;
  1079. }
  1080. return NULL;
  1081. }
  1082. /* DEPRECATED */
  1083. gs_effect_t *obs_get_default_rect_effect(void)
  1084. {
  1085. if (!obs) return NULL;
  1086. return obs->video.default_rect_effect;
  1087. }
  1088. signal_handler_t *obs_get_signal_handler(void)
  1089. {
  1090. if (!obs) return NULL;
  1091. return obs->signals;
  1092. }
  1093. proc_handler_t *obs_get_proc_handler(void)
  1094. {
  1095. if (!obs) return NULL;
  1096. return obs->procs;
  1097. }
  1098. void obs_render_main_view(void)
  1099. {
  1100. if (!obs) return;
  1101. obs_view_render(&obs->data.main_view);
  1102. }
  1103. void obs_set_master_volume(float volume)
  1104. {
  1105. struct calldata data = {0};
  1106. if (!obs) return;
  1107. calldata_set_float(&data, "volume", volume);
  1108. signal_handler_signal(obs->signals, "master_volume", &data);
  1109. volume = (float)calldata_float(&data, "volume");
  1110. calldata_free(&data);
  1111. obs->audio.user_volume = volume;
  1112. }
  1113. float obs_get_master_volume(void)
  1114. {
  1115. return obs ? obs->audio.user_volume : 0.0f;
  1116. }
  1117. static obs_source_t *obs_load_source_type(obs_data_t *source_data)
  1118. {
  1119. obs_data_array_t *filters = obs_data_get_array(source_data, "filters");
  1120. obs_source_t *source;
  1121. const char *name = obs_data_get_string(source_data, "name");
  1122. const char *id = obs_data_get_string(source_data, "id");
  1123. obs_data_t *settings = obs_data_get_obj(source_data, "settings");
  1124. obs_data_t *hotkeys = obs_data_get_obj(source_data, "hotkeys");
  1125. double volume;
  1126. int64_t sync;
  1127. uint32_t flags;
  1128. uint32_t mixers;
  1129. int di_order;
  1130. int di_mode;
  1131. source = obs_source_create(id, name, settings, hotkeys);
  1132. obs_data_release(hotkeys);
  1133. obs_data_set_default_double(source_data, "volume", 1.0);
  1134. volume = obs_data_get_double(source_data, "volume");
  1135. obs_source_set_volume(source, (float)volume);
  1136. sync = obs_data_get_int(source_data, "sync");
  1137. obs_source_set_sync_offset(source, sync);
  1138. obs_data_set_default_int(source_data, "mixers", 0xF);
  1139. mixers = (uint32_t)obs_data_get_int(source_data, "mixers");
  1140. obs_source_set_audio_mixers(source, mixers);
  1141. obs_data_set_default_int(source_data, "flags", source->default_flags);
  1142. flags = (uint32_t)obs_data_get_int(source_data, "flags");
  1143. obs_source_set_flags(source, flags);
  1144. obs_data_set_default_bool(source_data, "enabled", true);
  1145. obs_source_set_enabled(source,
  1146. obs_data_get_bool(source_data, "enabled"));
  1147. obs_data_set_default_bool(source_data, "muted", false);
  1148. obs_source_set_muted(source, obs_data_get_bool(source_data, "muted"));
  1149. obs_data_set_default_bool(source_data, "push-to-mute", false);
  1150. obs_source_enable_push_to_mute(source,
  1151. obs_data_get_bool(source_data, "push-to-mute"));
  1152. obs_data_set_default_int(source_data, "push-to-mute-delay", 0);
  1153. obs_source_set_push_to_mute_delay(source,
  1154. obs_data_get_int(source_data, "push-to-mute-delay"));
  1155. obs_data_set_default_bool(source_data, "push-to-talk", false);
  1156. obs_source_enable_push_to_talk(source,
  1157. obs_data_get_bool(source_data, "push-to-talk"));
  1158. obs_data_set_default_int(source_data, "push-to-talk-delay", 0);
  1159. obs_source_set_push_to_talk_delay(source,
  1160. obs_data_get_int(source_data, "push-to-talk-delay"));
  1161. di_mode = (int)obs_data_get_int(source_data, "deinterlace_mode");
  1162. obs_source_set_deinterlace_mode(source,
  1163. (enum obs_deinterlace_mode)di_mode);
  1164. di_order = (int)obs_data_get_int(source_data, "deinterlace_field_order");
  1165. obs_source_set_deinterlace_field_order(source,
  1166. (enum obs_deinterlace_field_order)di_order);
  1167. if (filters) {
  1168. size_t count = obs_data_array_count(filters);
  1169. for (size_t i = 0; i < count; i++) {
  1170. obs_data_t *filter_data =
  1171. obs_data_array_item(filters, i);
  1172. obs_source_t *filter = obs_load_source_type(
  1173. filter_data);
  1174. if (filter) {
  1175. obs_source_filter_add(source, filter);
  1176. obs_source_release(filter);
  1177. }
  1178. obs_data_release(filter_data);
  1179. }
  1180. obs_data_array_release(filters);
  1181. }
  1182. obs_data_release(settings);
  1183. return source;
  1184. }
  1185. obs_source_t *obs_load_source(obs_data_t *source_data)
  1186. {
  1187. return obs_load_source_type(source_data);
  1188. }
  1189. void obs_load_sources(obs_data_array_t *array, obs_load_source_cb cb,
  1190. void *private_data)
  1191. {
  1192. if (!obs) return;
  1193. struct obs_core_data *data = &obs->data;
  1194. DARRAY(obs_source_t*) sources;
  1195. size_t count;
  1196. size_t i;
  1197. da_init(sources);
  1198. count = obs_data_array_count(array);
  1199. da_reserve(sources, count);
  1200. pthread_mutex_lock(&data->sources_mutex);
  1201. for (i = 0; i < count; i++) {
  1202. obs_data_t *source_data = obs_data_array_item(array, i);
  1203. obs_source_t *source = obs_load_source(source_data);
  1204. da_push_back(sources, &source);
  1205. obs_data_release(source_data);
  1206. }
  1207. /* tell sources that we want to load */
  1208. for (i = 0; i < sources.num; i++) {
  1209. obs_source_t *source = sources.array[i];
  1210. obs_data_t *source_data = obs_data_array_item(array, i);
  1211. if (source) {
  1212. if (source->info.type == OBS_SOURCE_TYPE_TRANSITION)
  1213. obs_transition_load(source, source_data);
  1214. obs_source_load(source);
  1215. cb(private_data, source);
  1216. }
  1217. obs_data_release(source_data);
  1218. }
  1219. for (i = 0; i < sources.num; i++)
  1220. obs_source_release(sources.array[i]);
  1221. pthread_mutex_unlock(&data->sources_mutex);
  1222. da_free(sources);
  1223. }
  1224. obs_data_t *obs_save_source(obs_source_t *source)
  1225. {
  1226. obs_data_array_t *filters = obs_data_array_create();
  1227. obs_data_t *source_data = obs_data_create();
  1228. obs_data_t *settings = obs_source_get_settings(source);
  1229. obs_data_t *hotkey_data = source->context.hotkey_data;
  1230. obs_data_t *hotkeys;
  1231. float volume = obs_source_get_volume(source);
  1232. uint32_t mixers = obs_source_get_audio_mixers(source);
  1233. int64_t sync = obs_source_get_sync_offset(source);
  1234. uint32_t flags = obs_source_get_flags(source);
  1235. const char *name = obs_source_get_name(source);
  1236. const char *id = obs_source_get_id(source);
  1237. bool enabled = obs_source_enabled(source);
  1238. bool muted = obs_source_muted(source);
  1239. bool push_to_mute= obs_source_push_to_mute_enabled(source);
  1240. uint64_t ptm_delay = obs_source_get_push_to_mute_delay(source);
  1241. bool push_to_talk= obs_source_push_to_talk_enabled(source);
  1242. uint64_t ptt_delay = obs_source_get_push_to_talk_delay(source);
  1243. int di_mode = (int)obs_source_get_deinterlace_mode(source);
  1244. int di_order =
  1245. (int)obs_source_get_deinterlace_field_order(source);
  1246. obs_source_save(source);
  1247. hotkeys = obs_hotkeys_save_source(source);
  1248. if (hotkeys) {
  1249. obs_data_release(hotkey_data);
  1250. source->context.hotkey_data = hotkeys;
  1251. hotkey_data = hotkeys;
  1252. }
  1253. obs_data_set_string(source_data, "name", name);
  1254. obs_data_set_string(source_data, "id", id);
  1255. obs_data_set_obj (source_data, "settings", settings);
  1256. obs_data_set_int (source_data, "mixers", mixers);
  1257. obs_data_set_int (source_data, "sync", sync);
  1258. obs_data_set_int (source_data, "flags", flags);
  1259. obs_data_set_double(source_data, "volume", volume);
  1260. obs_data_set_bool (source_data, "enabled", enabled);
  1261. obs_data_set_bool (source_data, "muted", muted);
  1262. obs_data_set_bool (source_data, "push-to-mute", push_to_mute);
  1263. obs_data_set_int (source_data, "push-to-mute-delay", ptm_delay);
  1264. obs_data_set_bool (source_data, "push-to-talk", push_to_talk);
  1265. obs_data_set_int (source_data, "push-to-talk-delay", ptt_delay);
  1266. obs_data_set_obj (source_data, "hotkeys", hotkey_data);
  1267. obs_data_set_int (source_data, "deinterlace_mode", di_mode);
  1268. obs_data_set_int (source_data, "deinterlace_field_order", di_order);
  1269. if (source->info.type == OBS_SOURCE_TYPE_TRANSITION)
  1270. obs_transition_save(source, source_data);
  1271. pthread_mutex_lock(&source->filter_mutex);
  1272. if (source->filters.num) {
  1273. for (size_t i = source->filters.num; i > 0; i--) {
  1274. obs_source_t *filter = source->filters.array[i - 1];
  1275. obs_data_t *filter_data = obs_save_source(filter);
  1276. obs_data_array_push_back(filters, filter_data);
  1277. obs_data_release(filter_data);
  1278. }
  1279. obs_data_set_array(source_data, "filters", filters);
  1280. }
  1281. pthread_mutex_unlock(&source->filter_mutex);
  1282. obs_data_release(settings);
  1283. obs_data_array_release(filters);
  1284. return source_data;
  1285. }
  1286. obs_data_array_t *obs_save_sources_filtered(obs_save_source_filter_cb cb,
  1287. void *data_)
  1288. {
  1289. if (!obs) return NULL;
  1290. struct obs_core_data *data = &obs->data;
  1291. obs_data_array_t *array;
  1292. obs_source_t *source;
  1293. array = obs_data_array_create();
  1294. pthread_mutex_lock(&data->sources_mutex);
  1295. source = data->first_source;
  1296. while (source) {
  1297. if ((source->info.type != OBS_SOURCE_TYPE_FILTER) != 0 &&
  1298. !source->context.private && cb(data_, source)) {
  1299. obs_data_t *source_data = obs_save_source(source);
  1300. obs_data_array_push_back(array, source_data);
  1301. obs_data_release(source_data);
  1302. }
  1303. source = (obs_source_t*)source->context.next;
  1304. }
  1305. pthread_mutex_unlock(&data->sources_mutex);
  1306. return array;
  1307. }
  1308. static bool save_source_filter(void *data, obs_source_t *source)
  1309. {
  1310. UNUSED_PARAMETER(data);
  1311. UNUSED_PARAMETER(source);
  1312. return true;
  1313. }
  1314. obs_data_array_t *obs_save_sources(void)
  1315. {
  1316. return obs_save_sources_filtered(save_source_filter, NULL);
  1317. }
  1318. /* ensures that names are never blank */
  1319. static inline char *dup_name(const char *name, bool private)
  1320. {
  1321. if (private && !name)
  1322. return NULL;
  1323. if (!name || !*name) {
  1324. struct dstr unnamed = {0};
  1325. dstr_printf(&unnamed, "__unnamed%04lld",
  1326. obs->data.unnamed_index++);
  1327. return unnamed.array;
  1328. } else {
  1329. return bstrdup(name);
  1330. }
  1331. }
  1332. static inline bool obs_context_data_init_wrap(
  1333. struct obs_context_data *context,
  1334. enum obs_obj_type type,
  1335. obs_data_t *settings,
  1336. const char *name,
  1337. obs_data_t *hotkey_data,
  1338. bool private)
  1339. {
  1340. assert(context);
  1341. memset(context, 0, sizeof(*context));
  1342. context->private = private;
  1343. context->type = type;
  1344. pthread_mutex_init_value(&context->rename_cache_mutex);
  1345. if (pthread_mutex_init(&context->rename_cache_mutex, NULL) < 0)
  1346. return false;
  1347. context->signals = signal_handler_create();
  1348. if (!context->signals)
  1349. return false;
  1350. context->procs = proc_handler_create();
  1351. if (!context->procs)
  1352. return false;
  1353. context->name = dup_name(name, private);
  1354. context->settings = obs_data_newref(settings);
  1355. context->hotkey_data = obs_data_newref(hotkey_data);
  1356. return true;
  1357. }
  1358. bool obs_context_data_init(
  1359. struct obs_context_data *context,
  1360. enum obs_obj_type type,
  1361. obs_data_t *settings,
  1362. const char *name,
  1363. obs_data_t *hotkey_data,
  1364. bool private)
  1365. {
  1366. if (obs_context_data_init_wrap(context, type, settings, name,
  1367. hotkey_data, private)) {
  1368. return true;
  1369. } else {
  1370. obs_context_data_free(context);
  1371. return false;
  1372. }
  1373. }
  1374. void obs_context_data_free(struct obs_context_data *context)
  1375. {
  1376. obs_hotkeys_context_release(context);
  1377. signal_handler_destroy(context->signals);
  1378. proc_handler_destroy(context->procs);
  1379. obs_data_release(context->settings);
  1380. obs_context_data_remove(context);
  1381. pthread_mutex_destroy(&context->rename_cache_mutex);
  1382. bfree(context->name);
  1383. for (size_t i = 0; i < context->rename_cache.num; i++)
  1384. bfree(context->rename_cache.array[i]);
  1385. da_free(context->rename_cache);
  1386. memset(context, 0, sizeof(*context));
  1387. }
  1388. void obs_context_data_insert(struct obs_context_data *context,
  1389. pthread_mutex_t *mutex, void *pfirst)
  1390. {
  1391. struct obs_context_data **first = pfirst;
  1392. assert(context);
  1393. assert(mutex);
  1394. assert(first);
  1395. context->mutex = mutex;
  1396. pthread_mutex_lock(mutex);
  1397. context->prev_next = first;
  1398. context->next = *first;
  1399. *first = context;
  1400. if (context->next)
  1401. context->next->prev_next = &context->next;
  1402. pthread_mutex_unlock(mutex);
  1403. }
  1404. void obs_context_data_remove(struct obs_context_data *context)
  1405. {
  1406. if (context && context->mutex) {
  1407. pthread_mutex_lock(context->mutex);
  1408. if (context->prev_next)
  1409. *context->prev_next = context->next;
  1410. if (context->next)
  1411. context->next->prev_next = context->prev_next;
  1412. pthread_mutex_unlock(context->mutex);
  1413. context->mutex = NULL;
  1414. }
  1415. }
  1416. void obs_context_data_setname(struct obs_context_data *context,
  1417. const char *name)
  1418. {
  1419. pthread_mutex_lock(&context->rename_cache_mutex);
  1420. if (context->name)
  1421. da_push_back(context->rename_cache, &context->name);
  1422. context->name = dup_name(name, context->private);
  1423. pthread_mutex_unlock(&context->rename_cache_mutex);
  1424. }
  1425. profiler_name_store_t *obs_get_profiler_name_store(void)
  1426. {
  1427. if (!obs)
  1428. return NULL;
  1429. return obs->name_store;
  1430. }
  1431. uint64_t obs_get_video_frame_time(void)
  1432. {
  1433. return obs ? obs->video.video_time : 0;
  1434. }
  1435. enum obs_obj_type obs_obj_get_type(void *obj)
  1436. {
  1437. struct obs_context_data *context = obj;
  1438. return context ? context->type : OBS_OBJ_TYPE_INVALID;
  1439. }
  1440. const char *obs_obj_get_id(void *obj)
  1441. {
  1442. struct obs_context_data *context = obj;
  1443. if (!context)
  1444. return NULL;
  1445. switch (context->type) {
  1446. case OBS_OBJ_TYPE_SOURCE: return ((obs_source_t*)obj)->info.id;
  1447. case OBS_OBJ_TYPE_OUTPUT: return ((obs_output_t*)obj)->info.id;
  1448. case OBS_OBJ_TYPE_ENCODER: return ((obs_encoder_t*)obj)->info.id;
  1449. case OBS_OBJ_TYPE_SERVICE: return ((obs_service_t*)obj)->info.id;
  1450. default:;
  1451. }
  1452. return NULL;
  1453. }