obs.c 50 KB

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