obs.c 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  1. /******************************************************************************
  2. Copyright (C) 2023 by Lain 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. static THREAD_LOCAL bool is_ui_thread = false;
  21. extern void add_default_module_paths(void);
  22. extern char *find_libobs_data_file(const char *file);
  23. static inline void make_video_info(struct video_output_info *vi, 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. static inline void calc_gpu_conversion_sizes(struct obs_core_video_mix *video)
  36. {
  37. const struct video_output_info *info = video_output_get_info(video->video);
  38. video->conversion_needed = false;
  39. video->conversion_techs[0] = NULL;
  40. video->conversion_techs[1] = NULL;
  41. video->conversion_techs[2] = NULL;
  42. video->conversion_width_i = 0.f;
  43. video->conversion_height_i = 0.f;
  44. switch (info->format) {
  45. case VIDEO_FORMAT_I420:
  46. video->conversion_needed = true;
  47. video->conversion_techs[0] = "Planar_Y";
  48. video->conversion_techs[1] = "Planar_U_Left";
  49. video->conversion_techs[2] = "Planar_V_Left";
  50. video->conversion_width_i = 1.f / (float)info->width;
  51. break;
  52. case VIDEO_FORMAT_NV12:
  53. video->conversion_needed = true;
  54. video->conversion_techs[0] = "NV12_Y";
  55. video->conversion_techs[1] = "NV12_UV";
  56. video->conversion_width_i = 1.f / (float)info->width;
  57. break;
  58. case VIDEO_FORMAT_I444:
  59. video->conversion_needed = true;
  60. video->conversion_techs[0] = "Planar_Y";
  61. video->conversion_techs[1] = "Planar_U";
  62. video->conversion_techs[2] = "Planar_V";
  63. break;
  64. case VIDEO_FORMAT_I010:
  65. video->conversion_needed = true;
  66. video->conversion_width_i = 1.f / (float)info->width;
  67. video->conversion_height_i = 1.f / (float)info->height;
  68. if (info->colorspace == VIDEO_CS_2100_PQ) {
  69. video->conversion_techs[0] = "I010_PQ_Y";
  70. video->conversion_techs[1] = "I010_PQ_U";
  71. video->conversion_techs[2] = "I010_PQ_V";
  72. } else if (info->colorspace == VIDEO_CS_2100_HLG) {
  73. video->conversion_techs[0] = "I010_HLG_Y";
  74. video->conversion_techs[1] = "I010_HLG_U";
  75. video->conversion_techs[2] = "I010_HLG_V";
  76. } else {
  77. video->conversion_techs[0] = "I010_SRGB_Y";
  78. video->conversion_techs[1] = "I010_SRGB_U";
  79. video->conversion_techs[2] = "I010_SRGB_V";
  80. }
  81. break;
  82. case VIDEO_FORMAT_P010:
  83. video->conversion_needed = true;
  84. video->conversion_width_i = 1.f / (float)info->width;
  85. video->conversion_height_i = 1.f / (float)info->height;
  86. if (info->colorspace == VIDEO_CS_2100_PQ) {
  87. video->conversion_techs[0] = "P010_PQ_Y";
  88. video->conversion_techs[1] = "P010_PQ_UV";
  89. } else if (info->colorspace == VIDEO_CS_2100_HLG) {
  90. video->conversion_techs[0] = "P010_HLG_Y";
  91. video->conversion_techs[1] = "P010_HLG_UV";
  92. } else {
  93. video->conversion_techs[0] = "P010_SRGB_Y";
  94. video->conversion_techs[1] = "P010_SRGB_UV";
  95. }
  96. break;
  97. case VIDEO_FORMAT_P216:
  98. video->conversion_needed = true;
  99. video->conversion_width_i = 1.f / (float)info->width;
  100. video->conversion_height_i = 1.f / (float)info->height;
  101. if (info->colorspace == VIDEO_CS_2100_PQ) {
  102. video->conversion_techs[0] = "P216_PQ_Y";
  103. video->conversion_techs[1] = "P216_PQ_UV";
  104. } else if (info->colorspace == VIDEO_CS_2100_HLG) {
  105. video->conversion_techs[0] = "P216_HLG_Y";
  106. video->conversion_techs[1] = "P216_HLG_UV";
  107. } else {
  108. video->conversion_techs[0] = "P216_SRGB_Y";
  109. video->conversion_techs[1] = "P216_SRGB_UV";
  110. }
  111. break;
  112. case VIDEO_FORMAT_P416:
  113. video->conversion_needed = true;
  114. video->conversion_width_i = 1.f / (float)info->width;
  115. video->conversion_height_i = 1.f / (float)info->height;
  116. if (info->colorspace == VIDEO_CS_2100_PQ) {
  117. video->conversion_techs[0] = "P416_PQ_Y";
  118. video->conversion_techs[1] = "P416_PQ_UV";
  119. } else if (info->colorspace == VIDEO_CS_2100_HLG) {
  120. video->conversion_techs[0] = "P416_HLG_Y";
  121. video->conversion_techs[1] = "P416_HLG_UV";
  122. } else {
  123. video->conversion_techs[0] = "P416_SRGB_Y";
  124. video->conversion_techs[1] = "P416_SRGB_UV";
  125. }
  126. break;
  127. default:
  128. break;
  129. }
  130. }
  131. static bool obs_init_gpu_conversion(struct obs_core_video_mix *video)
  132. {
  133. const struct video_output_info *info = video_output_get_info(video->video);
  134. calc_gpu_conversion_sizes(video);
  135. video->using_nv12_tex = info->format == VIDEO_FORMAT_NV12 ? gs_nv12_available() : false;
  136. video->using_p010_tex = info->format == VIDEO_FORMAT_P010 ? gs_p010_available() : false;
  137. if (!video->conversion_needed) {
  138. blog(LOG_INFO, "GPU conversion not available for format: %u", (unsigned int)info->format);
  139. video->gpu_conversion = false;
  140. video->using_nv12_tex = false;
  141. video->using_p010_tex = false;
  142. blog(LOG_INFO, "NV12 texture support not available");
  143. return true;
  144. }
  145. if (video->using_nv12_tex)
  146. blog(LOG_INFO, "NV12 texture support enabled");
  147. else
  148. blog(LOG_INFO, "NV12 texture support not available");
  149. if (video->using_p010_tex)
  150. blog(LOG_INFO, "P010 texture support enabled");
  151. else
  152. blog(LOG_INFO, "P010 texture support not available");
  153. video->convert_textures[0] = NULL;
  154. video->convert_textures[1] = NULL;
  155. video->convert_textures[2] = NULL;
  156. video->convert_textures_encode[0] = NULL;
  157. video->convert_textures_encode[1] = NULL;
  158. video->convert_textures_encode[2] = NULL;
  159. if (video->using_nv12_tex) {
  160. if (!gs_texture_create_nv12(&video->convert_textures_encode[0], &video->convert_textures_encode[1],
  161. info->width, info->height, GS_RENDER_TARGET | GS_SHARED_KM_TEX)) {
  162. return false;
  163. }
  164. } else if (video->using_p010_tex) {
  165. if (!gs_texture_create_p010(&video->convert_textures_encode[0], &video->convert_textures_encode[1],
  166. info->width, info->height, GS_RENDER_TARGET | GS_SHARED_KM_TEX)) {
  167. return false;
  168. }
  169. }
  170. bool success = true;
  171. switch (info->format) {
  172. case VIDEO_FORMAT_I420:
  173. video->convert_textures[0] =
  174. gs_texture_create(info->width, info->height, GS_R8, 1, NULL, GS_RENDER_TARGET);
  175. video->convert_textures[1] =
  176. gs_texture_create(info->width / 2, info->height / 2, GS_R8, 1, NULL, GS_RENDER_TARGET);
  177. video->convert_textures[2] =
  178. gs_texture_create(info->width / 2, info->height / 2, GS_R8, 1, NULL, GS_RENDER_TARGET);
  179. if (!video->convert_textures[0] || !video->convert_textures[1] || !video->convert_textures[2])
  180. success = false;
  181. break;
  182. case VIDEO_FORMAT_NV12:
  183. video->convert_textures[0] =
  184. gs_texture_create(info->width, info->height, GS_R8, 1, NULL, GS_RENDER_TARGET);
  185. video->convert_textures[1] =
  186. gs_texture_create(info->width / 2, info->height / 2, GS_R8G8, 1, NULL, GS_RENDER_TARGET);
  187. if (!video->convert_textures[0] || !video->convert_textures[1])
  188. success = false;
  189. break;
  190. case VIDEO_FORMAT_I444:
  191. video->convert_textures[0] =
  192. gs_texture_create(info->width, info->height, GS_R8, 1, NULL, GS_RENDER_TARGET);
  193. video->convert_textures[1] =
  194. gs_texture_create(info->width, info->height, GS_R8, 1, NULL, GS_RENDER_TARGET);
  195. video->convert_textures[2] =
  196. gs_texture_create(info->width, info->height, GS_R8, 1, NULL, GS_RENDER_TARGET);
  197. if (!video->convert_textures[0] || !video->convert_textures[1] || !video->convert_textures[2])
  198. success = false;
  199. break;
  200. case VIDEO_FORMAT_I010:
  201. video->convert_textures[0] =
  202. gs_texture_create(info->width, info->height, GS_R16, 1, NULL, GS_RENDER_TARGET);
  203. video->convert_textures[1] =
  204. gs_texture_create(info->width / 2, info->height / 2, GS_R16, 1, NULL, GS_RENDER_TARGET);
  205. video->convert_textures[2] =
  206. gs_texture_create(info->width / 2, info->height / 2, GS_R16, 1, NULL, GS_RENDER_TARGET);
  207. if (!video->convert_textures[0] || !video->convert_textures[1] || !video->convert_textures[2])
  208. success = false;
  209. break;
  210. case VIDEO_FORMAT_P010:
  211. video->convert_textures[0] =
  212. gs_texture_create(info->width, info->height, GS_R16, 1, NULL, GS_RENDER_TARGET);
  213. video->convert_textures[1] =
  214. gs_texture_create(info->width / 2, info->height / 2, GS_RG16, 1, NULL, GS_RENDER_TARGET);
  215. if (!video->convert_textures[0] || !video->convert_textures[1])
  216. success = false;
  217. break;
  218. case VIDEO_FORMAT_P216:
  219. video->convert_textures[0] =
  220. gs_texture_create(info->width, info->height, GS_R16, 1, NULL, GS_RENDER_TARGET);
  221. video->convert_textures[1] =
  222. gs_texture_create(info->width / 2, info->height, GS_RG16, 1, NULL, GS_RENDER_TARGET);
  223. if (!video->convert_textures[0] || !video->convert_textures[1])
  224. success = false;
  225. break;
  226. case VIDEO_FORMAT_P416:
  227. video->convert_textures[0] =
  228. gs_texture_create(info->width, info->height, GS_R16, 1, NULL, GS_RENDER_TARGET);
  229. video->convert_textures[1] =
  230. gs_texture_create(info->width, info->height, GS_RG16, 1, NULL, GS_RENDER_TARGET);
  231. if (!video->convert_textures[0] || !video->convert_textures[1])
  232. success = false;
  233. break;
  234. default:
  235. break;
  236. }
  237. if (!success) {
  238. for (size_t c = 0; c < NUM_CHANNELS; c++) {
  239. if (video->convert_textures[c]) {
  240. gs_texture_destroy(video->convert_textures[c]);
  241. video->convert_textures[c] = NULL;
  242. }
  243. if (video->convert_textures_encode[c]) {
  244. gs_texture_destroy(video->convert_textures_encode[c]);
  245. video->convert_textures_encode[c] = NULL;
  246. }
  247. }
  248. }
  249. return success;
  250. }
  251. static bool obs_init_gpu_copy_surfaces(struct obs_core_video_mix *video, size_t i)
  252. {
  253. const struct video_output_info *info = video_output_get_info(video->video);
  254. switch (info->format) {
  255. case VIDEO_FORMAT_I420:
  256. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R8);
  257. if (!video->copy_surfaces[i][0])
  258. return false;
  259. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_R8);
  260. if (!video->copy_surfaces[i][1])
  261. return false;
  262. video->copy_surfaces[i][2] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_R8);
  263. if (!video->copy_surfaces[i][2])
  264. return false;
  265. break;
  266. case VIDEO_FORMAT_NV12:
  267. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R8);
  268. if (!video->copy_surfaces[i][0])
  269. return false;
  270. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_R8G8);
  271. if (!video->copy_surfaces[i][1])
  272. return false;
  273. break;
  274. case VIDEO_FORMAT_I444:
  275. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R8);
  276. if (!video->copy_surfaces[i][0])
  277. return false;
  278. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width, info->height, GS_R8);
  279. if (!video->copy_surfaces[i][1])
  280. return false;
  281. video->copy_surfaces[i][2] = gs_stagesurface_create(info->width, info->height, GS_R8);
  282. if (!video->copy_surfaces[i][2])
  283. return false;
  284. break;
  285. case VIDEO_FORMAT_I010:
  286. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R16);
  287. if (!video->copy_surfaces[i][0])
  288. return false;
  289. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_R16);
  290. if (!video->copy_surfaces[i][1])
  291. return false;
  292. video->copy_surfaces[i][2] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_R16);
  293. if (!video->copy_surfaces[i][2])
  294. return false;
  295. break;
  296. case VIDEO_FORMAT_P010:
  297. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R16);
  298. if (!video->copy_surfaces[i][0])
  299. return false;
  300. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width / 2, info->height / 2, GS_RG16);
  301. if (!video->copy_surfaces[i][1])
  302. return false;
  303. break;
  304. case VIDEO_FORMAT_P216:
  305. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R16);
  306. if (!video->copy_surfaces[i][0])
  307. return false;
  308. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width / 2, info->height, GS_RG16);
  309. if (!video->copy_surfaces[i][1])
  310. return false;
  311. break;
  312. case VIDEO_FORMAT_P416:
  313. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, GS_R16);
  314. if (!video->copy_surfaces[i][0])
  315. return false;
  316. video->copy_surfaces[i][1] = gs_stagesurface_create(info->width, info->height, GS_RG16);
  317. if (!video->copy_surfaces[i][1])
  318. return false;
  319. break;
  320. default:
  321. break;
  322. }
  323. return true;
  324. }
  325. static bool obs_init_textures(struct obs_core_video_mix *video)
  326. {
  327. const struct video_output_info *info = video_output_get_info(video->video);
  328. bool success = true;
  329. enum gs_color_format format = GS_BGRA;
  330. switch (info->format) {
  331. case VIDEO_FORMAT_I010:
  332. case VIDEO_FORMAT_P010:
  333. case VIDEO_FORMAT_I210:
  334. case VIDEO_FORMAT_I412:
  335. case VIDEO_FORMAT_YA2L:
  336. case VIDEO_FORMAT_P216:
  337. case VIDEO_FORMAT_P416:
  338. format = GS_RGBA16F;
  339. break;
  340. default:
  341. break;
  342. }
  343. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  344. #ifdef _WIN32
  345. if (video->using_nv12_tex) {
  346. video->copy_surfaces_encode[i] = gs_stagesurface_create_nv12(info->width, info->height);
  347. if (!video->copy_surfaces_encode[i]) {
  348. success = false;
  349. break;
  350. }
  351. } else if (video->using_p010_tex) {
  352. video->copy_surfaces_encode[i] = gs_stagesurface_create_p010(info->width, info->height);
  353. if (!video->copy_surfaces_encode[i]) {
  354. success = false;
  355. break;
  356. }
  357. }
  358. #endif
  359. if (video->gpu_conversion) {
  360. if (!obs_init_gpu_copy_surfaces(video, i)) {
  361. success = false;
  362. break;
  363. }
  364. } else {
  365. video->copy_surfaces[i][0] = gs_stagesurface_create(info->width, info->height, format);
  366. if (!video->copy_surfaces[i][0]) {
  367. success = false;
  368. break;
  369. }
  370. }
  371. }
  372. enum gs_color_space space = GS_CS_SRGB;
  373. switch (info->colorspace) {
  374. case VIDEO_CS_2100_PQ:
  375. case VIDEO_CS_2100_HLG:
  376. space = GS_CS_709_EXTENDED;
  377. break;
  378. default:
  379. switch (info->format) {
  380. case VIDEO_FORMAT_I010:
  381. case VIDEO_FORMAT_P010:
  382. case VIDEO_FORMAT_P216:
  383. case VIDEO_FORMAT_P416:
  384. space = GS_CS_SRGB_16F;
  385. break;
  386. default:
  387. space = GS_CS_SRGB;
  388. break;
  389. }
  390. break;
  391. }
  392. video->render_texture =
  393. gs_texture_create(video->ovi.base_width, video->ovi.base_height, format, 1, NULL, GS_RENDER_TARGET);
  394. if (!video->render_texture)
  395. success = false;
  396. video->output_texture = gs_texture_create(info->width, info->height, format, 1, NULL, GS_RENDER_TARGET);
  397. if (!video->output_texture)
  398. success = false;
  399. if (success) {
  400. video->render_space = space;
  401. } else {
  402. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  403. for (size_t c = 0; c < NUM_CHANNELS; c++) {
  404. if (video->copy_surfaces[i][c]) {
  405. gs_stagesurface_destroy(video->copy_surfaces[i][c]);
  406. video->copy_surfaces[i][c] = NULL;
  407. }
  408. }
  409. #ifdef _WIN32
  410. if (video->copy_surfaces_encode[i]) {
  411. gs_stagesurface_destroy(video->copy_surfaces_encode[i]);
  412. video->copy_surfaces_encode[i] = NULL;
  413. }
  414. #endif
  415. }
  416. if (video->render_texture) {
  417. gs_texture_destroy(video->render_texture);
  418. video->render_texture = NULL;
  419. }
  420. if (video->output_texture) {
  421. gs_texture_destroy(video->output_texture);
  422. video->output_texture = NULL;
  423. }
  424. }
  425. return success;
  426. }
  427. gs_effect_t *obs_load_effect(gs_effect_t **effect, const char *file)
  428. {
  429. if (!*effect) {
  430. char *filename = obs_find_data_file(file);
  431. *effect = gs_effect_create_from_file(filename, NULL);
  432. bfree(filename);
  433. }
  434. return *effect;
  435. }
  436. static const char *shader_comp_name = "shader compilation";
  437. static const char *obs_init_graphics_name = "obs_init_graphics";
  438. static int obs_init_graphics(struct obs_video_info *ovi)
  439. {
  440. struct obs_core_video *video = &obs->video;
  441. uint8_t transparent_tex_data[2 * 2 * 4] = {0};
  442. const uint8_t *transparent_tex = transparent_tex_data;
  443. struct gs_sampler_info point_sampler = {0};
  444. bool success = true;
  445. int errorcode;
  446. profile_start(obs_init_graphics_name);
  447. errorcode = gs_create(&video->graphics, ovi->graphics_module, ovi->adapter);
  448. if (errorcode != GS_SUCCESS) {
  449. profile_end(obs_init_graphics_name);
  450. switch (errorcode) {
  451. case GS_ERROR_MODULE_NOT_FOUND:
  452. return OBS_VIDEO_MODULE_NOT_FOUND;
  453. case GS_ERROR_NOT_SUPPORTED:
  454. return OBS_VIDEO_NOT_SUPPORTED;
  455. default:
  456. return OBS_VIDEO_FAIL;
  457. }
  458. }
  459. profile_start(shader_comp_name);
  460. gs_enter_context(video->graphics);
  461. char *filename = obs_find_data_file("default.effect");
  462. video->default_effect = gs_effect_create_from_file(filename, NULL);
  463. bfree(filename);
  464. if (gs_get_device_type() == GS_DEVICE_OPENGL) {
  465. filename = obs_find_data_file("default_rect.effect");
  466. video->default_rect_effect = gs_effect_create_from_file(filename, NULL);
  467. bfree(filename);
  468. }
  469. filename = obs_find_data_file("opaque.effect");
  470. video->opaque_effect = gs_effect_create_from_file(filename, NULL);
  471. bfree(filename);
  472. filename = obs_find_data_file("solid.effect");
  473. video->solid_effect = gs_effect_create_from_file(filename, NULL);
  474. bfree(filename);
  475. filename = obs_find_data_file("repeat.effect");
  476. video->repeat_effect = gs_effect_create_from_file(filename, NULL);
  477. bfree(filename);
  478. filename = obs_find_data_file("format_conversion.effect");
  479. video->conversion_effect = gs_effect_create_from_file(filename, NULL);
  480. bfree(filename);
  481. filename = obs_find_data_file("bicubic_scale.effect");
  482. video->bicubic_effect = gs_effect_create_from_file(filename, NULL);
  483. bfree(filename);
  484. filename = obs_find_data_file("lanczos_scale.effect");
  485. video->lanczos_effect = gs_effect_create_from_file(filename, NULL);
  486. bfree(filename);
  487. filename = obs_find_data_file("area.effect");
  488. video->area_effect = gs_effect_create_from_file(filename, NULL);
  489. bfree(filename);
  490. filename = obs_find_data_file("bilinear_lowres_scale.effect");
  491. video->bilinear_lowres_effect = gs_effect_create_from_file(filename, NULL);
  492. bfree(filename);
  493. filename = obs_find_data_file("premultiplied_alpha.effect");
  494. video->premultiplied_alpha_effect = gs_effect_create_from_file(filename, NULL);
  495. bfree(filename);
  496. point_sampler.max_anisotropy = 1;
  497. video->point_sampler = gs_samplerstate_create(&point_sampler);
  498. obs->video.transparent_texture = gs_texture_create(2, 2, GS_RGBA, 1, &transparent_tex, 0);
  499. if (!video->default_effect)
  500. success = false;
  501. if (gs_get_device_type() == GS_DEVICE_OPENGL) {
  502. if (!video->default_rect_effect)
  503. success = false;
  504. }
  505. if (!video->opaque_effect)
  506. success = false;
  507. if (!video->solid_effect)
  508. success = false;
  509. if (!video->conversion_effect)
  510. success = false;
  511. if (!video->premultiplied_alpha_effect)
  512. success = false;
  513. if (!video->transparent_texture)
  514. success = false;
  515. if (!video->point_sampler)
  516. success = false;
  517. gs_leave_context();
  518. profile_end(shader_comp_name);
  519. profile_end(obs_init_graphics_name);
  520. return success ? OBS_VIDEO_SUCCESS : OBS_VIDEO_FAIL;
  521. }
  522. static inline void set_video_matrix(struct obs_core_video_mix *video, struct video_output_info *info)
  523. {
  524. struct matrix4 mat;
  525. struct vec4 r_row;
  526. if (format_is_yuv(info->format)) {
  527. video_format_get_parameters_for_format(info->colorspace, info->range, info->format, (float *)&mat, NULL,
  528. NULL);
  529. matrix4_inv(&mat, &mat);
  530. /* swap R and G */
  531. r_row = mat.x;
  532. mat.x = mat.y;
  533. mat.y = r_row;
  534. } else {
  535. matrix4_identity(&mat);
  536. }
  537. memcpy(video->color_matrix, &mat, sizeof(float) * 16);
  538. }
  539. static int obs_init_video_mix(struct obs_video_info *ovi, struct obs_core_video_mix *video)
  540. {
  541. struct video_output_info vi;
  542. pthread_mutex_init_value(&video->gpu_encoder_mutex);
  543. make_video_info(&vi, ovi);
  544. video->ovi = *ovi;
  545. /* main view graphics thread drives all frame output,
  546. * so share FPS settings for aux views */
  547. pthread_mutex_lock(&obs->video.mixes_mutex);
  548. size_t num = obs->video.mixes.num;
  549. if (num && obs->data.main_canvas->mix) {
  550. struct obs_video_info main_ovi = obs->data.main_canvas->mix->ovi;
  551. video->ovi.fps_num = main_ovi.fps_num;
  552. video->ovi.fps_den = main_ovi.fps_den;
  553. }
  554. pthread_mutex_unlock(&obs->video.mixes_mutex);
  555. video->gpu_conversion = ovi->gpu_conversion;
  556. video->gpu_was_active = false;
  557. video->raw_was_active = false;
  558. video->was_active = false;
  559. set_video_matrix(video, &vi);
  560. int errorcode = video_output_open(&video->video, &vi);
  561. if (errorcode != VIDEO_OUTPUT_SUCCESS) {
  562. if (errorcode == VIDEO_OUTPUT_INVALIDPARAM) {
  563. blog(LOG_ERROR, "Invalid video parameters specified");
  564. return OBS_VIDEO_INVALID_PARAM;
  565. } else {
  566. blog(LOG_ERROR, "Could not open video output");
  567. }
  568. return OBS_VIDEO_FAIL;
  569. }
  570. if (pthread_mutex_init(&video->gpu_encoder_mutex, NULL) < 0)
  571. return OBS_VIDEO_FAIL;
  572. gs_enter_context(obs->video.graphics);
  573. if (video->gpu_conversion && !obs_init_gpu_conversion(video))
  574. return OBS_VIDEO_FAIL;
  575. if (!obs_init_textures(video))
  576. return OBS_VIDEO_FAIL;
  577. gs_leave_context();
  578. return OBS_VIDEO_SUCCESS;
  579. }
  580. struct obs_core_video_mix *obs_create_video_mix(struct obs_video_info *ovi)
  581. {
  582. struct obs_core_video_mix *video = bzalloc(sizeof(struct obs_core_video_mix));
  583. if (obs_init_video_mix(ovi, video) != OBS_VIDEO_SUCCESS) {
  584. bfree(video);
  585. video = NULL;
  586. }
  587. return video;
  588. }
  589. static bool restore_canvases(void)
  590. {
  591. bool success = true;
  592. pthread_mutex_lock(&obs->data.canvases_mutex);
  593. struct obs_context_data *ctx, *tmp;
  594. HASH_ITER (hh, (struct obs_context_data *)obs->data.canvases, ctx, tmp) {
  595. obs_canvas_t *canvas = (obs_canvas_t *)ctx;
  596. if (canvas->flags & MAIN)
  597. continue;
  598. if (!obs_canvas_reset_video_internal(canvas, NULL)) {
  599. blog(LOG_ERROR, "Failed restoring video mix for canvas '%s'", canvas->context.name);
  600. success = false;
  601. }
  602. }
  603. pthread_mutex_unlock(&obs->data.canvases_mutex);
  604. return success;
  605. }
  606. static int obs_init_video(struct obs_video_info *ovi)
  607. {
  608. struct obs_core_video *video = &obs->video;
  609. video->video_frame_interval_ns = util_mul_div64(1000000000ULL, ovi->fps_den, ovi->fps_num);
  610. video->video_half_frame_interval_ns = util_mul_div64(500000000ULL, ovi->fps_den, ovi->fps_num);
  611. if (pthread_mutex_init(&video->task_mutex, NULL) < 0)
  612. return OBS_VIDEO_FAIL;
  613. if (pthread_mutex_init(&video->encoder_group_mutex, NULL) < 0)
  614. return OBS_VIDEO_FAIL;
  615. if (pthread_mutex_init(&video->mixes_mutex, NULL) < 0)
  616. return OBS_VIDEO_FAIL;
  617. /* Reset main canvas mix first so it remains first in the rendering order. */
  618. if (!obs_canvas_reset_video_internal(obs->data.main_canvas, ovi))
  619. return OBS_VIDEO_FAIL;
  620. /* Reset mixes for remaining canvases using their existing video info. */
  621. if (!restore_canvases())
  622. return OBS_VIDEO_FAIL;
  623. int errorcode;
  624. #ifdef __APPLE__
  625. pthread_attr_t attr;
  626. pthread_attr_init(&attr);
  627. pthread_attr_set_qos_class_np(&attr, QOS_CLASS_USER_INTERACTIVE, 0);
  628. errorcode = pthread_create(&video->video_thread, &attr, obs_graphics_thread_autorelease, obs);
  629. #else
  630. errorcode = pthread_create(&video->video_thread, NULL, obs_graphics_thread, obs);
  631. #endif
  632. if (errorcode != 0)
  633. return OBS_VIDEO_FAIL;
  634. video->thread_initialized = true;
  635. calldata_t parameters = {0};
  636. signal_handler_signal(obs->signals, "video_reset", &parameters);
  637. return OBS_VIDEO_SUCCESS;
  638. }
  639. static void stop_video(void)
  640. {
  641. pthread_mutex_lock(&obs->video.mixes_mutex);
  642. for (size_t i = 0, num = obs->video.mixes.num; i < num; i++)
  643. video_output_stop(obs->video.mixes.array[i]->video);
  644. pthread_mutex_unlock(&obs->video.mixes_mutex);
  645. struct obs_core_video *video = &obs->video;
  646. void *thread_retval;
  647. if (video->thread_initialized) {
  648. pthread_join(video->video_thread, &thread_retval);
  649. video->thread_initialized = false;
  650. }
  651. }
  652. static void obs_free_render_textures(struct obs_core_video_mix *video)
  653. {
  654. if (!obs->video.graphics)
  655. return;
  656. gs_enter_context(obs->video.graphics);
  657. for (size_t c = 0; c < NUM_CHANNELS; c++) {
  658. if (video->mapped_surfaces[c]) {
  659. gs_stagesurface_unmap(video->mapped_surfaces[c]);
  660. video->mapped_surfaces[c] = NULL;
  661. }
  662. }
  663. for (size_t i = 0; i < NUM_TEXTURES; i++) {
  664. for (size_t c = 0; c < NUM_CHANNELS; c++) {
  665. if (video->copy_surfaces[i][c]) {
  666. gs_stagesurface_destroy(video->copy_surfaces[i][c]);
  667. video->copy_surfaces[i][c] = NULL;
  668. }
  669. video->active_copy_surfaces[i][c] = NULL;
  670. }
  671. #ifdef _WIN32
  672. if (video->copy_surfaces_encode[i]) {
  673. gs_stagesurface_destroy(video->copy_surfaces_encode[i]);
  674. video->copy_surfaces_encode[i] = NULL;
  675. }
  676. #endif
  677. }
  678. gs_texture_destroy(video->render_texture);
  679. for (size_t c = 0; c < NUM_CHANNELS; c++) {
  680. if (video->convert_textures[c]) {
  681. gs_texture_destroy(video->convert_textures[c]);
  682. video->convert_textures[c] = NULL;
  683. }
  684. if (video->convert_textures_encode[c]) {
  685. gs_texture_destroy(video->convert_textures_encode[c]);
  686. video->convert_textures_encode[c] = NULL;
  687. }
  688. }
  689. gs_texture_destroy(video->output_texture);
  690. video->render_texture = NULL;
  691. video->output_texture = NULL;
  692. gs_leave_context();
  693. }
  694. void obs_free_video_mix(struct obs_core_video_mix *video)
  695. {
  696. if (video->video) {
  697. video_output_close(video->video);
  698. video->video = NULL;
  699. obs_free_render_textures(video);
  700. deque_free(&video->vframe_info_buffer);
  701. deque_free(&video->vframe_info_buffer_gpu);
  702. video->texture_rendered = false;
  703. memset(video->textures_copied, 0, sizeof(video->textures_copied));
  704. video->texture_converted = false;
  705. pthread_mutex_destroy(&video->gpu_encoder_mutex);
  706. pthread_mutex_init_value(&video->gpu_encoder_mutex);
  707. da_free(video->gpu_encoders);
  708. video->gpu_encoder_active = 0;
  709. video->cur_texture = 0;
  710. }
  711. bfree(video);
  712. }
  713. static void obs_free_video(void)
  714. {
  715. pthread_mutex_lock(&obs->video.mixes_mutex);
  716. size_t num_views = 0;
  717. for (size_t i = 0; i < obs->video.mixes.num; i++) {
  718. struct obs_core_video_mix *video = obs->video.mixes.array[i];
  719. if (video && video->view)
  720. num_views++;
  721. obs_free_video_mix(video);
  722. obs->video.mixes.array[i] = NULL;
  723. }
  724. da_free(obs->video.mixes);
  725. if (num_views > 0)
  726. blog(LOG_WARNING, "Number of remaining views: %ld", num_views);
  727. pthread_mutex_unlock(&obs->video.mixes_mutex);
  728. pthread_mutex_destroy(&obs->video.mixes_mutex);
  729. pthread_mutex_init_value(&obs->video.mixes_mutex);
  730. for (size_t i = 0; i < obs->video.ready_encoder_groups.num; i++) {
  731. obs_weak_encoder_release(obs->video.ready_encoder_groups.array[i]);
  732. }
  733. da_free(obs->video.ready_encoder_groups);
  734. pthread_mutex_destroy(&obs->video.encoder_group_mutex);
  735. pthread_mutex_init_value(&obs->video.encoder_group_mutex);
  736. pthread_mutex_destroy(&obs->video.task_mutex);
  737. pthread_mutex_init_value(&obs->video.task_mutex);
  738. deque_free(&obs->video.tasks);
  739. }
  740. static void obs_free_graphics(void)
  741. {
  742. struct obs_core_video *video = &obs->video;
  743. if (video->graphics) {
  744. gs_enter_context(video->graphics);
  745. gs_texture_destroy(video->transparent_texture);
  746. gs_samplerstate_destroy(video->point_sampler);
  747. gs_effect_destroy(video->default_effect);
  748. gs_effect_destroy(video->default_rect_effect);
  749. gs_effect_destroy(video->opaque_effect);
  750. gs_effect_destroy(video->solid_effect);
  751. gs_effect_destroy(video->conversion_effect);
  752. gs_effect_destroy(video->bicubic_effect);
  753. gs_effect_destroy(video->repeat_effect);
  754. gs_effect_destroy(video->lanczos_effect);
  755. gs_effect_destroy(video->area_effect);
  756. gs_effect_destroy(video->bilinear_lowres_effect);
  757. video->default_effect = NULL;
  758. gs_leave_context();
  759. gs_destroy(video->graphics);
  760. video->graphics = NULL;
  761. }
  762. }
  763. static void set_audio_thread(void *unused);
  764. static bool obs_init_audio(struct audio_output_info *ai)
  765. {
  766. struct obs_core_audio *audio = &obs->audio;
  767. int errorcode;
  768. pthread_mutex_init_value(&audio->monitoring_mutex);
  769. if (pthread_mutex_init_recursive(&audio->monitoring_mutex) != 0)
  770. return false;
  771. if (pthread_mutex_init(&audio->task_mutex, NULL) != 0)
  772. return false;
  773. struct obs_task_info audio_init = {.task = set_audio_thread};
  774. deque_push_back(&audio->tasks, &audio_init, sizeof(audio_init));
  775. audio->monitoring_device_name = bstrdup("Default");
  776. audio->monitoring_device_id = bstrdup("default");
  777. errorcode = audio_output_open(&audio->audio, ai);
  778. if (errorcode == AUDIO_OUTPUT_SUCCESS)
  779. return true;
  780. else if (errorcode == AUDIO_OUTPUT_INVALIDPARAM)
  781. blog(LOG_ERROR, "Invalid audio parameters specified");
  782. else
  783. blog(LOG_ERROR, "Could not open audio output");
  784. return false;
  785. }
  786. static void stop_audio(void)
  787. {
  788. struct obs_core_audio *audio = &obs->audio;
  789. if (audio->audio) {
  790. audio_output_close(audio->audio);
  791. audio->audio = NULL;
  792. }
  793. }
  794. static void obs_free_audio(void)
  795. {
  796. struct obs_core_audio *audio = &obs->audio;
  797. if (audio->audio)
  798. audio_output_close(audio->audio);
  799. deque_free(&audio->buffered_timestamps);
  800. da_free(audio->render_order);
  801. da_free(audio->root_nodes);
  802. da_free(audio->monitors);
  803. bfree(audio->monitoring_device_name);
  804. bfree(audio->monitoring_device_id);
  805. deque_free(&audio->tasks);
  806. pthread_mutex_destroy(&audio->task_mutex);
  807. pthread_mutex_destroy(&audio->monitoring_mutex);
  808. memset(audio, 0, sizeof(struct obs_core_audio));
  809. }
  810. static bool obs_init_data(void)
  811. {
  812. struct obs_core_data *data = &obs->data;
  813. assert(data != NULL);
  814. pthread_mutex_init_value(&obs->data.displays_mutex);
  815. pthread_mutex_init_value(&obs->data.draw_callbacks_mutex);
  816. if (pthread_mutex_init_recursive(&data->sources_mutex) != 0)
  817. goto fail;
  818. if (pthread_mutex_init_recursive(&data->audio_sources_mutex) != 0)
  819. goto fail;
  820. if (pthread_mutex_init_recursive(&data->displays_mutex) != 0)
  821. goto fail;
  822. if (pthread_mutex_init_recursive(&data->outputs_mutex) != 0)
  823. goto fail;
  824. if (pthread_mutex_init_recursive(&data->encoders_mutex) != 0)
  825. goto fail;
  826. if (pthread_mutex_init_recursive(&data->services_mutex) != 0)
  827. goto fail;
  828. if (pthread_mutex_init_recursive(&obs->data.draw_callbacks_mutex) != 0)
  829. goto fail;
  830. if (pthread_mutex_init_recursive(&obs->data.canvases_mutex) != 0)
  831. goto fail;
  832. data->sources = NULL;
  833. data->public_sources = NULL;
  834. data->canvases = NULL;
  835. data->named_canvases = NULL;
  836. data->private_data = obs_data_create();
  837. data->valid = true;
  838. fail:
  839. return data->valid;
  840. }
  841. void obs_main_view_free(struct obs_view *view)
  842. {
  843. if (!view)
  844. return;
  845. for (size_t i = 0; i < MAX_CHANNELS; i++)
  846. obs_source_release(view->channels[i]);
  847. memset(view->channels, 0, sizeof(view->channels));
  848. pthread_mutex_destroy(&view->channels_mutex);
  849. }
  850. #define FREE_OBS_HASH_TABLE(handle, table, type) \
  851. do { \
  852. struct obs_context_data *ctx, *tmp; \
  853. int unfreed = 0; \
  854. HASH_ITER (handle, *(struct obs_context_data **)table, ctx, tmp) { \
  855. obs_##type##_destroy((obs_##type##_t *)ctx); \
  856. unfreed++; \
  857. } \
  858. if (unfreed) \
  859. blog(LOG_INFO, "\t%d " #type "(s) were remaining", unfreed); \
  860. } while (false)
  861. #define FREE_OBS_LINKED_LIST(type) \
  862. do { \
  863. int unfreed = 0; \
  864. while (data->first_##type) { \
  865. obs_##type##_destroy(data->first_##type); \
  866. unfreed++; \
  867. } \
  868. if (unfreed) \
  869. blog(LOG_INFO, "\t%d " #type "(s) were remaining", unfreed); \
  870. } while (false)
  871. static void obs_free_data(void)
  872. {
  873. struct obs_core_data *data = &obs->data;
  874. data->valid = false;
  875. blog(LOG_INFO, "Freeing OBS context data");
  876. /* Free main canvas */
  877. obs_canvas_release(data->main_canvas);
  878. FREE_OBS_LINKED_LIST(output);
  879. FREE_OBS_LINKED_LIST(encoder);
  880. FREE_OBS_LINKED_LIST(display);
  881. FREE_OBS_LINKED_LIST(service);
  882. FREE_OBS_HASH_TABLE(hh, &data->public_sources, source);
  883. FREE_OBS_HASH_TABLE(hh_uuid, &data->sources, source);
  884. FREE_OBS_HASH_TABLE(hh, &data->named_canvases, canvas);
  885. FREE_OBS_HASH_TABLE(hh_uuid, &data->canvases, canvas);
  886. os_task_queue_wait(obs->destruction_task_thread);
  887. pthread_mutex_destroy(&data->sources_mutex);
  888. pthread_mutex_destroy(&data->audio_sources_mutex);
  889. pthread_mutex_destroy(&data->displays_mutex);
  890. pthread_mutex_destroy(&data->outputs_mutex);
  891. pthread_mutex_destroy(&data->encoders_mutex);
  892. pthread_mutex_destroy(&data->services_mutex);
  893. pthread_mutex_destroy(&data->draw_callbacks_mutex);
  894. pthread_mutex_destroy(&data->canvases_mutex);
  895. da_free(data->draw_callbacks);
  896. da_free(data->rendered_callbacks);
  897. da_free(data->tick_callbacks);
  898. obs_data_release(data->private_data);
  899. for (size_t i = 0; i < data->protocols.num; i++)
  900. bfree(data->protocols.array[i]);
  901. da_free(data->protocols);
  902. da_free(data->sources_to_tick);
  903. }
  904. static const char *obs_signals[] = {
  905. "void source_create(ptr source)",
  906. "void source_create_canvas(ptr source, ptr canvas)",
  907. "void source_destroy(ptr source)",
  908. "void source_remove(ptr source)",
  909. "void source_update(ptr source)",
  910. "void source_save(ptr source)",
  911. "void source_load(ptr source)",
  912. "void source_activate(ptr source)",
  913. "void source_deactivate(ptr source)",
  914. "void source_show(ptr source)",
  915. "void source_hide(ptr source)",
  916. "void source_audio_activate(ptr source)",
  917. "void source_audio_deactivate(ptr source)",
  918. "void source_filter_add(ptr source, ptr filter)",
  919. "void source_filter_remove(ptr source, ptr filter)",
  920. "void source_rename(ptr source, string new_name, string prev_name)",
  921. "void source_volume(ptr source, in out float volume)",
  922. "void source_volume_level(ptr source, float level, float magnitude, float peak)",
  923. "void source_transition_start(ptr source)",
  924. "void source_transition_video_stop(ptr source)",
  925. "void source_transition_stop(ptr source)",
  926. "void channel_change(int channel, in out ptr source, ptr prev_source)",
  927. "void hotkey_layout_change()",
  928. "void hotkey_register(ptr hotkey)",
  929. "void hotkey_unregister(ptr hotkey)",
  930. "void hotkey_bindings_changed(ptr hotkey)",
  931. "void canvas_create(ptr canvas)",
  932. "void canvas_remove(ptr canvas)",
  933. "void canvas_destroy(ptr canvas)",
  934. "void canvas_video_reset(ptr canvas)",
  935. "void canvas_rename(ptr canvas, string new_name, string prev_name)",
  936. "void video_reset()",
  937. NULL,
  938. };
  939. static inline bool obs_init_handlers(void)
  940. {
  941. obs->signals = signal_handler_create();
  942. if (!obs->signals)
  943. return false;
  944. obs->procs = proc_handler_create();
  945. if (!obs->procs)
  946. return false;
  947. return signal_handler_add_array(obs->signals, obs_signals);
  948. }
  949. static pthread_once_t obs_pthread_once_init_token = PTHREAD_ONCE_INIT;
  950. static inline bool obs_init_hotkeys(void)
  951. {
  952. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  953. bool success = false;
  954. assert(hotkeys != NULL);
  955. hotkeys->hotkeys = NULL;
  956. hotkeys->hotkey_pairs = NULL;
  957. hotkeys->signals = obs->signals;
  958. hotkeys->name_map_init_token = obs_pthread_once_init_token;
  959. hotkeys->mute = bstrdup("Mute");
  960. hotkeys->unmute = bstrdup("Unmute");
  961. hotkeys->push_to_mute = bstrdup("Push-to-mute");
  962. hotkeys->push_to_talk = bstrdup("Push-to-talk");
  963. hotkeys->sceneitem_show = bstrdup("Show '%1'");
  964. hotkeys->sceneitem_hide = bstrdup("Hide '%1'");
  965. if (!obs_hotkeys_platform_init(hotkeys))
  966. return false;
  967. if (pthread_mutex_init_recursive(&hotkeys->mutex) != 0)
  968. goto fail;
  969. if (os_event_init(&hotkeys->stop_event, OS_EVENT_TYPE_MANUAL) != 0)
  970. goto fail;
  971. if (pthread_create(&hotkeys->hotkey_thread, NULL, obs_hotkey_thread, NULL))
  972. goto fail;
  973. hotkeys->strict_modifiers = true;
  974. hotkeys->hotkey_thread_initialized = true;
  975. success = true;
  976. fail:
  977. return success;
  978. }
  979. static inline void stop_hotkeys(void)
  980. {
  981. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  982. void *thread_ret;
  983. if (hotkeys->hotkey_thread_initialized) {
  984. os_event_signal(hotkeys->stop_event);
  985. pthread_join(hotkeys->hotkey_thread, &thread_ret);
  986. hotkeys->hotkey_thread_initialized = false;
  987. }
  988. os_event_destroy(hotkeys->stop_event);
  989. obs_hotkeys_free();
  990. }
  991. static inline void obs_free_hotkeys(void)
  992. {
  993. struct obs_core_hotkeys *hotkeys = &obs->hotkeys;
  994. bfree(hotkeys->mute);
  995. bfree(hotkeys->unmute);
  996. bfree(hotkeys->push_to_mute);
  997. bfree(hotkeys->push_to_talk);
  998. bfree(hotkeys->sceneitem_show);
  999. bfree(hotkeys->sceneitem_hide);
  1000. obs_hotkey_name_map_free();
  1001. obs_hotkeys_platform_free(hotkeys);
  1002. pthread_mutex_destroy(&hotkeys->mutex);
  1003. }
  1004. extern const struct obs_source_info scene_info;
  1005. extern const struct obs_source_info group_info;
  1006. static const char *submix_name(void *unused)
  1007. {
  1008. UNUSED_PARAMETER(unused);
  1009. return "Audio line (internal use only)";
  1010. }
  1011. const struct obs_source_info audio_line_info = {
  1012. .id = "audio_line",
  1013. .type = OBS_SOURCE_TYPE_INPUT,
  1014. .output_flags = OBS_SOURCE_AUDIO | OBS_SOURCE_CAP_DISABLED | OBS_SOURCE_SUBMIX,
  1015. .get_name = submix_name,
  1016. };
  1017. extern void log_system_info(void);
  1018. static bool obs_init(const char *locale, const char *module_config_path, profiler_name_store_t *store)
  1019. {
  1020. obs = bzalloc(sizeof(struct obs_core));
  1021. pthread_mutex_init_value(&obs->audio.monitoring_mutex);
  1022. pthread_mutex_init_value(&obs->audio.task_mutex);
  1023. pthread_mutex_init_value(&obs->video.task_mutex);
  1024. pthread_mutex_init_value(&obs->video.encoder_group_mutex);
  1025. pthread_mutex_init_value(&obs->video.mixes_mutex);
  1026. obs->name_store_owned = !store;
  1027. obs->name_store = store ? store : profiler_name_store_create();
  1028. if (!obs->name_store) {
  1029. blog(LOG_ERROR, "Couldn't create profiler name store");
  1030. return false;
  1031. }
  1032. log_system_info();
  1033. if (!obs_init_data())
  1034. return false;
  1035. if (!obs_init_handlers())
  1036. return false;
  1037. if (!obs_init_hotkeys())
  1038. return false;
  1039. /* Create persistent main canvas. */
  1040. obs->data.main_canvas = obs_create_main_canvas();
  1041. if (!obs->data.main_canvas)
  1042. return false;
  1043. obs->destruction_task_thread = os_task_queue_create();
  1044. if (!obs->destruction_task_thread)
  1045. return false;
  1046. if (module_config_path)
  1047. obs->module_config_path = bstrdup(module_config_path);
  1048. obs->locale = bstrdup(locale);
  1049. obs_register_source(&scene_info);
  1050. obs_register_source(&group_info);
  1051. obs_register_source(&audio_line_info);
  1052. add_default_module_paths();
  1053. return true;
  1054. }
  1055. #ifdef _WIN32
  1056. extern bool initialize_com(void);
  1057. extern void uninitialize_com(void);
  1058. static bool com_initialized = false;
  1059. #endif
  1060. /* Separate from actual context initialization
  1061. * since this can be set before startup and persist
  1062. * after shutdown. */
  1063. static DARRAY(struct dstr) core_module_paths = {0};
  1064. char *obs_find_data_file(const char *file)
  1065. {
  1066. struct dstr path = {0};
  1067. char *result = find_libobs_data_file(file);
  1068. if (result)
  1069. return result;
  1070. for (size_t i = 0; i < core_module_paths.num; ++i) {
  1071. if (check_path(file, core_module_paths.array[i].array, &path))
  1072. return path.array;
  1073. }
  1074. blog(LOG_ERROR, "Failed to find file '%s' in libobs data directory", file);
  1075. dstr_free(&path);
  1076. return NULL;
  1077. }
  1078. void obs_add_data_path(const char *path)
  1079. {
  1080. struct dstr *new_path = da_push_back_new(core_module_paths);
  1081. dstr_init_copy(new_path, path);
  1082. }
  1083. bool obs_remove_data_path(const char *path)
  1084. {
  1085. for (size_t i = 0; i < core_module_paths.num; ++i) {
  1086. int result = dstr_cmp(&core_module_paths.array[i], path);
  1087. if (result == 0) {
  1088. dstr_free(&core_module_paths.array[i]);
  1089. da_erase(core_module_paths, i);
  1090. return true;
  1091. }
  1092. }
  1093. return false;
  1094. }
  1095. static const char *obs_startup_name = "obs_startup";
  1096. bool obs_startup(const char *locale, const char *module_config_path, profiler_name_store_t *store)
  1097. {
  1098. bool success;
  1099. profile_start(obs_startup_name);
  1100. if (obs) {
  1101. blog(LOG_WARNING, "Tried to call obs_startup more than once");
  1102. return false;
  1103. }
  1104. #ifdef _WIN32
  1105. com_initialized = initialize_com();
  1106. #endif
  1107. success = obs_init(locale, module_config_path, store);
  1108. profile_end(obs_startup_name);
  1109. if (!success)
  1110. obs_shutdown();
  1111. return success;
  1112. }
  1113. static struct obs_cmdline_args cmdline_args = {0, NULL};
  1114. void obs_set_cmdline_args(int argc, const char *const *argv)
  1115. {
  1116. char *data;
  1117. size_t len;
  1118. int i;
  1119. /* Once argc is set (non-zero) we shouldn't call again */
  1120. if (cmdline_args.argc)
  1121. return;
  1122. cmdline_args.argc = argc;
  1123. /* Safely copy over argv */
  1124. len = 0;
  1125. for (i = 0; i < argc; i++)
  1126. len += strlen(argv[i]) + 1;
  1127. cmdline_args.argv = bmalloc(sizeof(char *) * (argc + 1) + len);
  1128. data = (char *)cmdline_args.argv + sizeof(char *) * (argc + 1);
  1129. for (i = 0; i < argc; i++) {
  1130. cmdline_args.argv[i] = data;
  1131. len = strlen(argv[i]) + 1;
  1132. memcpy(data, argv[i], len);
  1133. data += len;
  1134. }
  1135. cmdline_args.argv[argc] = NULL;
  1136. }
  1137. struct obs_cmdline_args obs_get_cmdline_args(void)
  1138. {
  1139. return cmdline_args;
  1140. }
  1141. void obs_shutdown(void)
  1142. {
  1143. struct obs_module *module;
  1144. obs_wait_for_destroy_queue();
  1145. for (size_t i = 0; i < obs->source_types.num; i++) {
  1146. struct obs_source_info *item = &obs->source_types.array[i];
  1147. if (item->type_data && item->free_type_data)
  1148. item->free_type_data(item->type_data);
  1149. if (item->id)
  1150. bfree((void *)item->id);
  1151. }
  1152. da_free(obs->source_types);
  1153. #define FREE_REGISTERED_TYPES(structure, list) \
  1154. do { \
  1155. for (size_t i = 0; i < list.num; i++) { \
  1156. struct structure *item = &list.array[i]; \
  1157. if (item->type_data && item->free_type_data) \
  1158. item->free_type_data(item->type_data); \
  1159. } \
  1160. da_free(list); \
  1161. } while (false)
  1162. FREE_REGISTERED_TYPES(obs_output_info, obs->output_types);
  1163. FREE_REGISTERED_TYPES(obs_encoder_info, obs->encoder_types);
  1164. FREE_REGISTERED_TYPES(obs_service_info, obs->service_types);
  1165. #undef FREE_REGISTERED_TYPES
  1166. da_free(obs->input_types);
  1167. da_free(obs->filter_types);
  1168. da_free(obs->transition_types);
  1169. stop_video();
  1170. stop_audio();
  1171. stop_hotkeys();
  1172. module = obs->first_module;
  1173. while (module) {
  1174. struct obs_module *next = module->next;
  1175. free_module(module);
  1176. module = next;
  1177. }
  1178. obs->first_module = NULL;
  1179. obs_free_data();
  1180. obs_free_audio();
  1181. obs_free_video();
  1182. os_task_queue_destroy(obs->destruction_task_thread);
  1183. obs_free_hotkeys();
  1184. obs_free_graphics();
  1185. proc_handler_destroy(obs->procs);
  1186. signal_handler_destroy(obs->signals);
  1187. obs->procs = NULL;
  1188. obs->signals = NULL;
  1189. for (size_t i = 0; i < obs->module_paths.num; i++)
  1190. free_module_path(obs->module_paths.array + i);
  1191. da_free(obs->module_paths);
  1192. for (size_t i = 0; i < obs->safe_modules.num; i++)
  1193. bfree(obs->safe_modules.array[i]);
  1194. da_free(obs->safe_modules);
  1195. if (obs->name_store_owned)
  1196. profiler_name_store_free(obs->name_store);
  1197. bfree(obs->module_config_path);
  1198. bfree(obs->locale);
  1199. bfree(obs);
  1200. obs = NULL;
  1201. bfree(cmdline_args.argv);
  1202. #ifdef _WIN32
  1203. if (com_initialized)
  1204. uninitialize_com();
  1205. #endif
  1206. }
  1207. bool obs_initialized(void)
  1208. {
  1209. return obs != NULL;
  1210. }
  1211. uint32_t obs_get_version(void)
  1212. {
  1213. return LIBOBS_API_VER;
  1214. }
  1215. const char *obs_get_version_string(void)
  1216. {
  1217. return OBS_VERSION;
  1218. }
  1219. void obs_set_locale(const char *locale)
  1220. {
  1221. struct obs_module *module;
  1222. if (obs->locale)
  1223. bfree(obs->locale);
  1224. obs->locale = bstrdup(locale);
  1225. module = obs->first_module;
  1226. while (module) {
  1227. if (module->set_locale)
  1228. module->set_locale(locale);
  1229. module = module->next;
  1230. }
  1231. }
  1232. const char *obs_get_locale(void)
  1233. {
  1234. return obs->locale;
  1235. }
  1236. #define OBS_SIZE_MIN 2
  1237. #define OBS_SIZE_MAX (32 * 1024)
  1238. static inline bool size_valid(uint32_t width, uint32_t height)
  1239. {
  1240. return (width >= OBS_SIZE_MIN && height >= OBS_SIZE_MIN && width <= OBS_SIZE_MAX && height <= OBS_SIZE_MAX);
  1241. }
  1242. int obs_reset_video(struct obs_video_info *ovi)
  1243. {
  1244. if (!obs)
  1245. return OBS_VIDEO_FAIL;
  1246. /* don't allow changing of video settings if active. */
  1247. if (obs_video_active())
  1248. return OBS_VIDEO_CURRENTLY_ACTIVE;
  1249. if (!size_valid(ovi->output_width, ovi->output_height) || !size_valid(ovi->base_width, ovi->base_height))
  1250. return OBS_VIDEO_INVALID_PARAM;
  1251. stop_video();
  1252. obs_free_canvas_mixes();
  1253. obs_free_video();
  1254. /* align to multiple-of-two and SSE alignment sizes */
  1255. ovi->output_width &= 0xFFFFFFFC;
  1256. ovi->output_height &= 0xFFFFFFFE;
  1257. if (!obs->video.graphics) {
  1258. int errorcode = obs_init_graphics(ovi);
  1259. if (errorcode != OBS_VIDEO_SUCCESS) {
  1260. obs_free_graphics();
  1261. return errorcode;
  1262. }
  1263. }
  1264. const char *scale_type_name = "";
  1265. switch (ovi->scale_type) {
  1266. case OBS_SCALE_DISABLE:
  1267. scale_type_name = "Disabled";
  1268. break;
  1269. case OBS_SCALE_POINT:
  1270. scale_type_name = "Point";
  1271. break;
  1272. case OBS_SCALE_BICUBIC:
  1273. scale_type_name = "Bicubic";
  1274. break;
  1275. case OBS_SCALE_BILINEAR:
  1276. scale_type_name = "Bilinear";
  1277. break;
  1278. case OBS_SCALE_LANCZOS:
  1279. scale_type_name = "Lanczos";
  1280. break;
  1281. case OBS_SCALE_AREA:
  1282. scale_type_name = "Area";
  1283. break;
  1284. }
  1285. bool yuv = format_is_yuv(ovi->output_format);
  1286. const char *yuv_format = get_video_colorspace_name(ovi->colorspace);
  1287. const char *yuv_range = get_video_range_name(ovi->output_format, ovi->range);
  1288. blog(LOG_INFO, "---------------------------------");
  1289. blog(LOG_INFO,
  1290. "video settings reset:\n"
  1291. "\tbase resolution: %dx%d\n"
  1292. "\toutput resolution: %dx%d\n"
  1293. "\tdownscale filter: %s\n"
  1294. "\tfps: %d/%d\n"
  1295. "\tformat: %s\n"
  1296. "\tYUV mode: %s%s%s",
  1297. ovi->base_width, ovi->base_height, ovi->output_width, ovi->output_height, scale_type_name, ovi->fps_num,
  1298. ovi->fps_den, get_video_format_name(ovi->output_format), yuv ? yuv_format : "None", yuv ? "/" : "",
  1299. yuv ? yuv_range : "");
  1300. source_profiler_reset_video(ovi);
  1301. return obs_init_video(ovi);
  1302. }
  1303. #ifndef SEC_TO_MSEC
  1304. #define SEC_TO_MSEC 1000
  1305. #endif
  1306. bool obs_reset_audio2(const struct obs_audio_info2 *oai)
  1307. {
  1308. struct obs_core_audio *audio = &obs->audio;
  1309. struct audio_output_info ai;
  1310. /* don't allow changing of audio settings if active. */
  1311. if (!obs || (audio->audio && audio_output_active(audio->audio)))
  1312. return false;
  1313. obs_free_audio();
  1314. if (!oai)
  1315. return true;
  1316. if (oai->max_buffering_ms) {
  1317. uint32_t max_frames = oai->max_buffering_ms * oai->samples_per_sec / SEC_TO_MSEC;
  1318. max_frames += (AUDIO_OUTPUT_FRAMES - 1);
  1319. audio->max_buffering_ticks = max_frames / AUDIO_OUTPUT_FRAMES;
  1320. } else {
  1321. audio->max_buffering_ticks = 45;
  1322. }
  1323. audio->fixed_buffer = oai->fixed_buffering;
  1324. int max_buffering_ms =
  1325. audio->max_buffering_ticks * AUDIO_OUTPUT_FRAMES * SEC_TO_MSEC / (int)oai->samples_per_sec;
  1326. ai.name = "Audio";
  1327. ai.samples_per_sec = oai->samples_per_sec;
  1328. ai.format = AUDIO_FORMAT_FLOAT_PLANAR;
  1329. ai.speakers = oai->speakers;
  1330. ai.input_callback = audio_callback;
  1331. blog(LOG_INFO, "---------------------------------");
  1332. blog(LOG_INFO,
  1333. "audio settings reset:\n"
  1334. "\tsamples per sec: %d\n"
  1335. "\tspeakers: %d\n"
  1336. "\tmax buffering: %d milliseconds\n"
  1337. "\tbuffering type: %s",
  1338. (int)ai.samples_per_sec, (int)ai.speakers, max_buffering_ms,
  1339. oai->fixed_buffering ? "fixed" : "dynamically increasing");
  1340. return obs_init_audio(&ai);
  1341. }
  1342. bool obs_reset_audio(const struct obs_audio_info *oai)
  1343. {
  1344. struct obs_audio_info2 oai2 = {
  1345. .samples_per_sec = oai->samples_per_sec,
  1346. .speakers = oai->speakers,
  1347. };
  1348. return obs_reset_audio2(&oai2);
  1349. }
  1350. bool obs_get_video_info(struct obs_video_info *ovi)
  1351. {
  1352. if (!obs->video.graphics || !obs->data.main_canvas->mix)
  1353. return false;
  1354. *ovi = obs->data.main_canvas->mix->ovi;
  1355. return true;
  1356. }
  1357. float obs_get_video_sdr_white_level(void)
  1358. {
  1359. struct obs_core_video *video = &obs->video;
  1360. return video->graphics ? video->sdr_white_level : 300.f;
  1361. }
  1362. float obs_get_video_hdr_nominal_peak_level(void)
  1363. {
  1364. struct obs_core_video *video = &obs->video;
  1365. return video->graphics ? video->hdr_nominal_peak_level : 1000.f;
  1366. }
  1367. void obs_set_video_levels(float sdr_white_level, float hdr_nominal_peak_level)
  1368. {
  1369. struct obs_core_video *video = &obs->video;
  1370. assert(video->graphics);
  1371. video->sdr_white_level = sdr_white_level;
  1372. video->hdr_nominal_peak_level = hdr_nominal_peak_level;
  1373. }
  1374. bool obs_get_audio_info(struct obs_audio_info *oai)
  1375. {
  1376. struct obs_core_audio *audio = &obs->audio;
  1377. const struct audio_output_info *info;
  1378. if (!oai || !audio->audio)
  1379. return false;
  1380. info = audio_output_get_info(audio->audio);
  1381. oai->samples_per_sec = info->samples_per_sec;
  1382. oai->speakers = info->speakers;
  1383. return true;
  1384. }
  1385. bool obs_get_audio_info2(struct obs_audio_info2 *oai2)
  1386. {
  1387. struct obs_core_audio *audio = &obs->audio;
  1388. struct obs_audio_info oai;
  1389. if (!obs_get_audio_info(&oai) || !oai2 || !audio->audio) {
  1390. return false;
  1391. } else {
  1392. oai2->samples_per_sec = oai.samples_per_sec;
  1393. oai2->speakers = oai.speakers;
  1394. oai2->fixed_buffering = audio->fixed_buffer;
  1395. oai2->max_buffering_ms =
  1396. audio->max_buffering_ticks * AUDIO_OUTPUT_FRAMES * SEC_TO_MSEC / (int)oai2->samples_per_sec;
  1397. return true;
  1398. }
  1399. }
  1400. bool obs_enum_source_types(size_t idx, const char **id)
  1401. {
  1402. if (idx >= obs->source_types.num)
  1403. return false;
  1404. *id = obs->source_types.array[idx].id;
  1405. return true;
  1406. }
  1407. bool obs_enum_input_types(size_t idx, const char **id)
  1408. {
  1409. if (idx >= obs->input_types.num)
  1410. return false;
  1411. *id = obs->input_types.array[idx].id;
  1412. return true;
  1413. }
  1414. bool obs_enum_input_types2(size_t idx, const char **id, const char **unversioned_id)
  1415. {
  1416. if (idx >= obs->input_types.num)
  1417. return false;
  1418. if (id)
  1419. *id = obs->input_types.array[idx].id;
  1420. if (unversioned_id)
  1421. *unversioned_id = obs->input_types.array[idx].unversioned_id;
  1422. return true;
  1423. }
  1424. const char *obs_get_latest_input_type_id(const char *unversioned_id)
  1425. {
  1426. struct obs_source_info *latest = NULL;
  1427. int version = -1;
  1428. if (!unversioned_id)
  1429. return NULL;
  1430. for (size_t i = 0; i < obs->source_types.num; i++) {
  1431. struct obs_source_info *info = &obs->source_types.array[i];
  1432. if (strcmp(info->unversioned_id, unversioned_id) == 0 && (int)info->version > version) {
  1433. latest = info;
  1434. version = info->version;
  1435. }
  1436. }
  1437. assert(!!latest);
  1438. if (!latest)
  1439. return NULL;
  1440. return latest->id;
  1441. }
  1442. bool obs_enum_filter_types(size_t idx, const char **id)
  1443. {
  1444. if (idx >= obs->filter_types.num)
  1445. return false;
  1446. *id = obs->filter_types.array[idx].id;
  1447. return true;
  1448. }
  1449. bool obs_enum_transition_types(size_t idx, const char **id)
  1450. {
  1451. if (idx >= obs->transition_types.num)
  1452. return false;
  1453. *id = obs->transition_types.array[idx].id;
  1454. return true;
  1455. }
  1456. bool obs_enum_output_types(size_t idx, const char **id)
  1457. {
  1458. if (idx >= obs->output_types.num)
  1459. return false;
  1460. *id = obs->output_types.array[idx].id;
  1461. return true;
  1462. }
  1463. bool obs_enum_encoder_types(size_t idx, const char **id)
  1464. {
  1465. if (idx >= obs->encoder_types.num)
  1466. return false;
  1467. *id = obs->encoder_types.array[idx].id;
  1468. return true;
  1469. }
  1470. bool obs_enum_service_types(size_t idx, const char **id)
  1471. {
  1472. if (idx >= obs->service_types.num)
  1473. return false;
  1474. *id = obs->service_types.array[idx].id;
  1475. return true;
  1476. }
  1477. void obs_enter_graphics(void)
  1478. {
  1479. if (obs->video.graphics)
  1480. gs_enter_context(obs->video.graphics);
  1481. }
  1482. void obs_leave_graphics(void)
  1483. {
  1484. if (obs->video.graphics)
  1485. gs_leave_context();
  1486. }
  1487. audio_t *obs_get_audio(void)
  1488. {
  1489. return obs->audio.audio;
  1490. }
  1491. video_t *obs_get_video(void)
  1492. {
  1493. return obs->data.main_canvas->mix->video;
  1494. }
  1495. obs_source_t *obs_get_output_source(uint32_t channel)
  1496. {
  1497. return obs_canvas_get_channel(obs->data.main_canvas, channel);
  1498. }
  1499. void obs_set_output_source(uint32_t channel, obs_source_t *source)
  1500. {
  1501. obs_canvas_set_channel(obs->data.main_canvas, channel, source);
  1502. }
  1503. void obs_enum_sources(bool (*enum_proc)(void *, obs_source_t *), void *param)
  1504. {
  1505. obs_source_t *source;
  1506. pthread_mutex_lock(&obs->data.sources_mutex);
  1507. source = obs->data.sources;
  1508. while (source) {
  1509. obs_source_t *s = obs_source_get_ref(source);
  1510. if (s) {
  1511. if (!s->context.private) {
  1512. if (s->info.type == OBS_SOURCE_TYPE_INPUT && !enum_proc(param, s)) {
  1513. obs_source_release(s);
  1514. break;
  1515. } else if (strcmp(s->info.id, group_info.id) == 0 && !enum_proc(param, s)) {
  1516. obs_source_release(s);
  1517. break;
  1518. }
  1519. }
  1520. obs_source_release(s);
  1521. }
  1522. source = (obs_source_t *)source->context.hh_uuid.next;
  1523. }
  1524. pthread_mutex_unlock(&obs->data.sources_mutex);
  1525. }
  1526. void obs_canvas_enum_scenes(obs_canvas_t *canvas, bool (*enum_proc)(void *, obs_source_t *), void *param)
  1527. {
  1528. obs_source_t *source;
  1529. pthread_mutex_lock(&canvas->sources_mutex);
  1530. source = canvas->sources;
  1531. while (source) {
  1532. obs_source_t *s = obs_source_get_ref(source);
  1533. if (s) {
  1534. if (obs_source_is_scene(source) && !enum_proc(param, s)) {
  1535. obs_source_release(s);
  1536. break;
  1537. }
  1538. obs_source_release(s);
  1539. }
  1540. source = (obs_source_t *)source->context.hh.next;
  1541. }
  1542. pthread_mutex_unlock(&canvas->sources_mutex);
  1543. }
  1544. void obs_enum_scenes(bool (*enum_proc)(void *, obs_source_t *), void *param)
  1545. {
  1546. obs_canvas_enum_scenes(obs->data.main_canvas, enum_proc, param);
  1547. }
  1548. static inline void obs_enum(void *pstart, pthread_mutex_t *mutex, void *proc, void *param)
  1549. {
  1550. struct obs_context_data **start = pstart, *context;
  1551. bool (*enum_proc)(void *, void *) = proc;
  1552. assert(start);
  1553. assert(mutex);
  1554. assert(enum_proc);
  1555. pthread_mutex_lock(mutex);
  1556. context = *start;
  1557. while (context) {
  1558. if (!enum_proc(param, context))
  1559. break;
  1560. context = context->next;
  1561. }
  1562. pthread_mutex_unlock(mutex);
  1563. }
  1564. static inline void obs_enum_uuid(void *pstart, pthread_mutex_t *mutex, void *proc, void *param)
  1565. {
  1566. struct obs_context_data **start = pstart, *context, *tmp;
  1567. bool (*enum_proc)(void *, void *) = proc;
  1568. assert(start);
  1569. assert(mutex);
  1570. assert(enum_proc);
  1571. pthread_mutex_lock(mutex);
  1572. HASH_ITER (hh_uuid, *start, context, tmp) {
  1573. if (!enum_proc(param, context))
  1574. break;
  1575. }
  1576. pthread_mutex_unlock(mutex);
  1577. }
  1578. void obs_enum_all_sources(bool (*enum_proc)(void *, obs_source_t *), void *param)
  1579. {
  1580. obs_enum_uuid(&obs->data.sources, &obs->data.sources_mutex, enum_proc, param);
  1581. }
  1582. void obs_enum_outputs(bool (*enum_proc)(void *, obs_output_t *), void *param)
  1583. {
  1584. obs_enum(&obs->data.first_output, &obs->data.outputs_mutex, enum_proc, param);
  1585. }
  1586. void obs_enum_encoders(bool (*enum_proc)(void *, obs_encoder_t *), void *param)
  1587. {
  1588. obs_enum(&obs->data.first_encoder, &obs->data.encoders_mutex, enum_proc, param);
  1589. }
  1590. void obs_enum_services(bool (*enum_proc)(void *, obs_service_t *), void *param)
  1591. {
  1592. obs_enum(&obs->data.first_service, &obs->data.services_mutex, enum_proc, param);
  1593. }
  1594. void obs_enum_canvases(bool (*enum_proc)(void *, obs_canvas_t *), void *param)
  1595. {
  1596. struct obs_context_data *start = (struct obs_context_data *)obs->data.named_canvases;
  1597. struct obs_context_data *context, *tmp;
  1598. pthread_mutex_lock(&obs->data.canvases_mutex);
  1599. HASH_ITER (hh, start, context, tmp) {
  1600. obs_canvas_t *canvas = (obs_canvas_t *)context;
  1601. if (!enum_proc(param, canvas))
  1602. break;
  1603. }
  1604. pthread_mutex_unlock(&obs->data.canvases_mutex);
  1605. }
  1606. static inline void *get_context_by_name(void *vfirst, const char *name, pthread_mutex_t *mutex, void *(*addref)(void *))
  1607. {
  1608. struct obs_context_data **first = vfirst;
  1609. struct obs_context_data *context;
  1610. pthread_mutex_lock(mutex);
  1611. /* If context list head has a hash table, look the name up in there */
  1612. if (*first && (*first)->hh.tbl) {
  1613. HASH_FIND_STR(*first, name, context);
  1614. } else {
  1615. context = *first;
  1616. while (context) {
  1617. if (!context->private && strcmp(context->name, name) == 0) {
  1618. break;
  1619. }
  1620. context = context->next;
  1621. }
  1622. }
  1623. if (context)
  1624. addref(context);
  1625. pthread_mutex_unlock(mutex);
  1626. return context;
  1627. }
  1628. static void *get_context_by_uuid(void *ptable, const char *uuid, pthread_mutex_t *mutex, void *(*addref)(void *))
  1629. {
  1630. struct obs_context_data **ht = ptable;
  1631. struct obs_context_data *context;
  1632. pthread_mutex_lock(mutex);
  1633. HASH_FIND_UUID(*ht, uuid, context);
  1634. if (context)
  1635. addref(context);
  1636. pthread_mutex_unlock(mutex);
  1637. return context;
  1638. }
  1639. static inline void *obs_source_addref_safe_(void *ref)
  1640. {
  1641. return obs_source_get_ref(ref);
  1642. }
  1643. static inline void *obs_output_addref_safe_(void *ref)
  1644. {
  1645. return obs_output_get_ref(ref);
  1646. }
  1647. static inline void *obs_encoder_addref_safe_(void *ref)
  1648. {
  1649. return obs_encoder_get_ref(ref);
  1650. }
  1651. static inline void *obs_service_addref_safe_(void *ref)
  1652. {
  1653. return obs_service_get_ref(ref);
  1654. }
  1655. static inline void *obs_canvas_addref_safe_(void *ref)
  1656. {
  1657. return obs_canvas_get_ref(ref);
  1658. }
  1659. obs_source_t *obs_get_source_by_name(const char *name)
  1660. {
  1661. obs_source_t *source =
  1662. get_context_by_name(&obs->data.public_sources, name, &obs->data.sources_mutex, obs_source_addref_safe_);
  1663. /* For backwards compat: Also look up source name in main canvas's scenes list. */
  1664. if (!source) {
  1665. source = get_context_by_name(&obs->data.main_canvas->sources, name,
  1666. &obs->data.main_canvas->sources_mutex, obs_source_addref_safe_);
  1667. }
  1668. return source;
  1669. }
  1670. obs_source_t *obs_get_source_by_uuid(const char *uuid)
  1671. {
  1672. return get_context_by_uuid(&obs->data.sources, uuid, &obs->data.sources_mutex, obs_source_addref_safe_);
  1673. }
  1674. obs_canvas_t *obs_get_canvas_by_name(const char *name)
  1675. {
  1676. return get_context_by_name(&obs->data.named_canvases, name, &obs->data.canvases_mutex, obs_canvas_addref_safe_);
  1677. }
  1678. obs_canvas_t *obs_get_canvas_by_uuid(const char *uuid)
  1679. {
  1680. return get_context_by_uuid(&obs->data.canvases, uuid, &obs->data.canvases_mutex, obs_canvas_addref_safe_);
  1681. }
  1682. obs_source_t *obs_canvas_get_source_by_name(obs_canvas_t *canvas, const char *name)
  1683. {
  1684. return get_context_by_name(&canvas->sources, name, &canvas->sources_mutex, obs_source_addref_safe_);
  1685. }
  1686. obs_scene_t *obs_canvas_get_scene_by_name(obs_canvas_t *canvas, const char *name)
  1687. {
  1688. obs_source_t *source = obs_canvas_get_source_by_name(canvas, name);
  1689. obs_scene_t *scene = obs_scene_from_source(source);
  1690. if (!scene) {
  1691. obs_source_release(source);
  1692. return NULL;
  1693. }
  1694. return scene;
  1695. }
  1696. obs_source_t *obs_get_transition_by_name(const char *name)
  1697. {
  1698. struct obs_source **first = &obs->data.sources;
  1699. struct obs_source *source;
  1700. pthread_mutex_lock(&obs->data.sources_mutex);
  1701. /* Transitions are private but can be found via this method, so we
  1702. * can't look them up by name in the public_sources hash table. */
  1703. source = *first;
  1704. while (source) {
  1705. if (source->info.type == OBS_SOURCE_TYPE_TRANSITION && strcmp(source->context.name, name) == 0) {
  1706. source = obs_source_addref_safe_(source);
  1707. break;
  1708. }
  1709. source = (void *)source->context.hh_uuid.next;
  1710. }
  1711. pthread_mutex_unlock(&obs->data.sources_mutex);
  1712. return source;
  1713. }
  1714. obs_source_t *obs_get_transition_by_uuid(const char *uuid)
  1715. {
  1716. obs_source_t *source = obs_get_source_by_uuid(uuid);
  1717. if (source && source->info.type == OBS_SOURCE_TYPE_TRANSITION)
  1718. return source;
  1719. else if (source)
  1720. obs_source_release(source);
  1721. return NULL;
  1722. }
  1723. obs_output_t *obs_get_output_by_name(const char *name)
  1724. {
  1725. return get_context_by_name(&obs->data.first_output, name, &obs->data.outputs_mutex, obs_output_addref_safe_);
  1726. }
  1727. obs_encoder_t *obs_get_encoder_by_name(const char *name)
  1728. {
  1729. return get_context_by_name(&obs->data.first_encoder, name, &obs->data.encoders_mutex, obs_encoder_addref_safe_);
  1730. }
  1731. obs_service_t *obs_get_service_by_name(const char *name)
  1732. {
  1733. return get_context_by_name(&obs->data.first_service, name, &obs->data.services_mutex, obs_service_addref_safe_);
  1734. }
  1735. gs_effect_t *obs_get_base_effect(enum obs_base_effect effect)
  1736. {
  1737. switch (effect) {
  1738. case OBS_EFFECT_DEFAULT:
  1739. return obs->video.default_effect;
  1740. case OBS_EFFECT_DEFAULT_RECT:
  1741. return obs->video.default_rect_effect;
  1742. case OBS_EFFECT_OPAQUE:
  1743. return obs->video.opaque_effect;
  1744. case OBS_EFFECT_SOLID:
  1745. return obs->video.solid_effect;
  1746. case OBS_EFFECT_REPEAT:
  1747. return obs->video.repeat_effect;
  1748. case OBS_EFFECT_BICUBIC:
  1749. return obs->video.bicubic_effect;
  1750. case OBS_EFFECT_LANCZOS:
  1751. return obs->video.lanczos_effect;
  1752. case OBS_EFFECT_AREA:
  1753. return obs->video.area_effect;
  1754. case OBS_EFFECT_BILINEAR_LOWRES:
  1755. return obs->video.bilinear_lowres_effect;
  1756. case OBS_EFFECT_PREMULTIPLIED_ALPHA:
  1757. return obs->video.premultiplied_alpha_effect;
  1758. }
  1759. return NULL;
  1760. }
  1761. signal_handler_t *obs_get_signal_handler(void)
  1762. {
  1763. return obs->signals;
  1764. }
  1765. proc_handler_t *obs_get_proc_handler(void)
  1766. {
  1767. return obs->procs;
  1768. }
  1769. static void obs_render_canvas_texture_internal(obs_canvas_t *canvas, enum gs_blend_type src_c,
  1770. enum gs_blend_type dest_c, enum gs_blend_type src_a,
  1771. enum gs_blend_type dest_a)
  1772. {
  1773. struct obs_core_video_mix *video;
  1774. gs_texture_t *tex;
  1775. gs_effect_t *effect;
  1776. gs_eparam_t *param;
  1777. video = canvas->mix;
  1778. if (!video || !video->texture_rendered)
  1779. return;
  1780. const enum gs_color_space source_space = video->render_space;
  1781. const enum gs_color_space current_space = gs_get_color_space();
  1782. const char *tech_name = "Draw";
  1783. float multiplier = 1.f;
  1784. switch (current_space) {
  1785. case GS_CS_SRGB:
  1786. case GS_CS_SRGB_16F:
  1787. if (source_space == GS_CS_709_EXTENDED)
  1788. tech_name = "DrawTonemap";
  1789. break;
  1790. case GS_CS_709_SCRGB:
  1791. tech_name = "DrawMultiply";
  1792. multiplier = obs_get_video_sdr_white_level() / 80.f;
  1793. break;
  1794. case GS_CS_709_EXTENDED:
  1795. break;
  1796. }
  1797. const bool previous = gs_framebuffer_srgb_enabled();
  1798. gs_enable_framebuffer_srgb(true);
  1799. tex = video->render_texture;
  1800. effect = obs_get_base_effect(OBS_EFFECT_DEFAULT);
  1801. param = gs_effect_get_param_by_name(effect, "image");
  1802. gs_effect_set_texture_srgb(param, tex);
  1803. param = gs_effect_get_param_by_name(effect, "multiplier");
  1804. gs_effect_set_float(param, multiplier);
  1805. gs_blend_state_push();
  1806. gs_blend_function_separate(src_c, dest_c, src_a, dest_a);
  1807. while (gs_effect_loop(effect, tech_name))
  1808. gs_draw_sprite(tex, 0, 0, 0);
  1809. gs_blend_state_pop();
  1810. gs_enable_framebuffer_srgb(previous);
  1811. }
  1812. void obs_render_main_texture(void)
  1813. {
  1814. obs_render_canvas_texture_internal(obs->data.main_canvas, GS_BLEND_ONE, GS_BLEND_INVSRCALPHA, GS_BLEND_ONE,
  1815. GS_BLEND_INVSRCALPHA);
  1816. }
  1817. void obs_render_main_texture_src_color_only(void)
  1818. {
  1819. obs_render_canvas_texture_internal(obs->data.main_canvas, GS_BLEND_ONE, GS_BLEND_ZERO, GS_BLEND_ONE,
  1820. GS_BLEND_INVSRCALPHA);
  1821. }
  1822. void obs_render_canvas_texture(obs_canvas_t *canvas)
  1823. {
  1824. obs_render_canvas_texture_internal(canvas, GS_BLEND_ONE, GS_BLEND_INVSRCALPHA, GS_BLEND_ONE,
  1825. GS_BLEND_INVSRCALPHA);
  1826. }
  1827. void obs_render_canvas_texture_src_color_only(obs_canvas_t *canvas)
  1828. {
  1829. obs_render_canvas_texture_internal(canvas, GS_BLEND_ONE, GS_BLEND_ZERO, GS_BLEND_ONE, GS_BLEND_INVSRCALPHA);
  1830. }
  1831. gs_texture_t *obs_get_main_texture(void)
  1832. {
  1833. struct obs_core_video_mix *video;
  1834. video = obs->data.main_canvas->mix;
  1835. if (!video->texture_rendered)
  1836. return NULL;
  1837. return video->render_texture;
  1838. }
  1839. static obs_source_t *obs_load_source_type(obs_data_t *source_data, bool is_private)
  1840. {
  1841. obs_data_array_t *filters = obs_data_get_array(source_data, "filters");
  1842. obs_source_t *source;
  1843. const char *name = obs_data_get_string(source_data, "name");
  1844. const char *uuid = obs_data_get_string(source_data, "uuid");
  1845. const char *id = obs_data_get_string(source_data, "id");
  1846. const char *v_id = obs_data_get_string(source_data, "versioned_id");
  1847. obs_data_t *settings = obs_data_get_obj(source_data, "settings");
  1848. obs_data_t *hotkeys = obs_data_get_obj(source_data, "hotkeys");
  1849. obs_canvas_t *canvas = NULL;
  1850. double volume;
  1851. double balance;
  1852. int64_t sync;
  1853. uint32_t prev_ver;
  1854. uint32_t caps;
  1855. uint32_t flags;
  1856. uint32_t mixers;
  1857. int di_order;
  1858. int di_mode;
  1859. int monitoring_type;
  1860. prev_ver = (uint32_t)obs_data_get_int(source_data, "prev_ver");
  1861. if (!*v_id)
  1862. v_id = id;
  1863. if (strcmp(id, scene_info.id) == 0 || strcmp(id, group_info.id) == 0) {
  1864. const char *canvas_uuid = obs_data_get_string(source_data, "canvas_uuid");
  1865. canvas = obs_get_canvas_by_uuid(canvas_uuid);
  1866. /* Fall back to main canvas if canvas cannot be found. */
  1867. if (!canvas) {
  1868. canvas = obs_canvas_get_ref(obs->data.main_canvas);
  1869. }
  1870. }
  1871. source = obs_source_create_set_last_ver(canvas, v_id, name, uuid, settings, hotkeys, prev_ver, is_private);
  1872. if (source->owns_info_id) {
  1873. bfree((void *)source->info.unversioned_id);
  1874. source->info.unversioned_id = bstrdup(id);
  1875. }
  1876. obs_canvas_release(canvas);
  1877. obs_data_release(hotkeys);
  1878. caps = obs_source_get_output_flags(source);
  1879. obs_data_set_default_double(source_data, "volume", 1.0);
  1880. volume = obs_data_get_double(source_data, "volume");
  1881. obs_source_set_volume(source, (float)volume);
  1882. obs_data_set_default_double(source_data, "balance", 0.5);
  1883. balance = obs_data_get_double(source_data, "balance");
  1884. obs_source_set_balance_value(source, (float)balance);
  1885. sync = obs_data_get_int(source_data, "sync");
  1886. obs_source_set_sync_offset(source, sync);
  1887. obs_data_set_default_int(source_data, "mixers", 0x3F);
  1888. mixers = (uint32_t)obs_data_get_int(source_data, "mixers");
  1889. obs_source_set_audio_mixers(source, mixers);
  1890. obs_data_set_default_int(source_data, "flags", source->default_flags);
  1891. flags = (uint32_t)obs_data_get_int(source_data, "flags");
  1892. obs_source_set_flags(source, flags);
  1893. obs_data_set_default_bool(source_data, "enabled", true);
  1894. obs_source_set_enabled(source, obs_data_get_bool(source_data, "enabled"));
  1895. obs_data_set_default_bool(source_data, "muted", false);
  1896. obs_source_set_muted(source, obs_data_get_bool(source_data, "muted"));
  1897. obs_data_set_default_bool(source_data, "push-to-mute", false);
  1898. obs_source_enable_push_to_mute(source, obs_data_get_bool(source_data, "push-to-mute"));
  1899. obs_data_set_default_int(source_data, "push-to-mute-delay", 0);
  1900. obs_source_set_push_to_mute_delay(source, obs_data_get_int(source_data, "push-to-mute-delay"));
  1901. obs_data_set_default_bool(source_data, "push-to-talk", false);
  1902. obs_source_enable_push_to_talk(source, obs_data_get_bool(source_data, "push-to-talk"));
  1903. obs_data_set_default_int(source_data, "push-to-talk-delay", 0);
  1904. obs_source_set_push_to_talk_delay(source, obs_data_get_int(source_data, "push-to-talk-delay"));
  1905. di_mode = (int)obs_data_get_int(source_data, "deinterlace_mode");
  1906. obs_source_set_deinterlace_mode(source, (enum obs_deinterlace_mode)di_mode);
  1907. di_order = (int)obs_data_get_int(source_data, "deinterlace_field_order");
  1908. obs_source_set_deinterlace_field_order(source, (enum obs_deinterlace_field_order)di_order);
  1909. monitoring_type = (int)obs_data_get_int(source_data, "monitoring_type");
  1910. if (prev_ver < MAKE_SEMANTIC_VERSION(23, 2, 2)) {
  1911. if ((caps & OBS_SOURCE_MONITOR_BY_DEFAULT) != 0) {
  1912. /* updates older sources to enable monitoring
  1913. * automatically if they added monitoring by default in
  1914. * version 24 */
  1915. monitoring_type = OBS_MONITORING_TYPE_MONITOR_ONLY;
  1916. obs_source_set_audio_mixers(source, 0x3F);
  1917. }
  1918. }
  1919. obs_source_set_monitoring_type(source, (enum obs_monitoring_type)monitoring_type);
  1920. obs_data_release(source->private_settings);
  1921. source->private_settings = obs_data_get_obj(source_data, "private_settings");
  1922. if (!source->private_settings)
  1923. source->private_settings = obs_data_create();
  1924. if (filters) {
  1925. size_t count = obs_data_array_count(filters);
  1926. for (size_t i = 0; i < count; i++) {
  1927. obs_data_t *filter_data = obs_data_array_item(filters, i);
  1928. obs_source_t *filter = obs_load_source_type(filter_data, true);
  1929. if (filter) {
  1930. obs_source_filter_add(source, filter);
  1931. obs_source_release(filter);
  1932. }
  1933. obs_data_release(filter_data);
  1934. }
  1935. obs_data_array_release(filters);
  1936. }
  1937. obs_data_release(settings);
  1938. return source;
  1939. }
  1940. obs_source_t *obs_load_source(obs_data_t *source_data)
  1941. {
  1942. return obs_load_source_type(source_data, false);
  1943. }
  1944. obs_source_t *obs_load_private_source(obs_data_t *source_data)
  1945. {
  1946. return obs_load_source_type(source_data, true);
  1947. }
  1948. void obs_load_sources(obs_data_array_t *array, obs_load_source_cb cb, void *private_data)
  1949. {
  1950. DARRAY(obs_source_t *) sources;
  1951. size_t count;
  1952. size_t i;
  1953. da_init(sources);
  1954. count = obs_data_array_count(array);
  1955. da_reserve(sources, count);
  1956. for (i = 0; i < count; i++) {
  1957. obs_data_t *source_data = obs_data_array_item(array, i);
  1958. obs_source_t *source = obs_load_source(source_data);
  1959. da_push_back(sources, &source);
  1960. obs_data_release(source_data);
  1961. }
  1962. /* tell sources that we want to load */
  1963. for (i = 0; i < sources.num; i++) {
  1964. obs_source_t *source = sources.array[i];
  1965. obs_data_t *source_data = obs_data_array_item(array, i);
  1966. if (source) {
  1967. if (source->info.type == OBS_SOURCE_TYPE_TRANSITION)
  1968. obs_transition_load(source, source_data);
  1969. obs_source_load2(source);
  1970. if (cb)
  1971. cb(private_data, source);
  1972. }
  1973. obs_data_release(source_data);
  1974. }
  1975. for (i = 0; i < sources.num; i++)
  1976. obs_source_release(sources.array[i]);
  1977. da_free(sources);
  1978. }
  1979. obs_data_t *obs_save_source(obs_source_t *source)
  1980. {
  1981. obs_data_array_t *filters = obs_data_array_create();
  1982. obs_data_t *source_data = obs_data_create();
  1983. obs_data_t *settings = obs_source_get_settings(source);
  1984. obs_data_t *hotkey_data = source->context.hotkey_data;
  1985. obs_data_t *hotkeys;
  1986. float volume = obs_source_get_volume(source);
  1987. float balance = obs_source_get_balance_value(source);
  1988. uint32_t mixers = obs_source_get_audio_mixers(source);
  1989. int64_t sync = obs_source_get_sync_offset(source);
  1990. uint32_t flags = obs_source_get_flags(source);
  1991. const char *name = obs_source_get_name(source);
  1992. const char *uuid = obs_source_get_uuid(source);
  1993. const char *id = source->info.unversioned_id;
  1994. const char *v_id = source->info.id;
  1995. bool enabled = obs_source_enabled(source);
  1996. bool muted = obs_source_muted(source);
  1997. bool push_to_mute = obs_source_push_to_mute_enabled(source);
  1998. uint64_t ptm_delay = obs_source_get_push_to_mute_delay(source);
  1999. bool push_to_talk = obs_source_push_to_talk_enabled(source);
  2000. uint64_t ptt_delay = obs_source_get_push_to_talk_delay(source);
  2001. int m_type = (int)obs_source_get_monitoring_type(source);
  2002. int di_mode = (int)obs_source_get_deinterlace_mode(source);
  2003. int di_order = (int)obs_source_get_deinterlace_field_order(source);
  2004. obs_canvas_t *canvas = obs_source_get_canvas(source);
  2005. DARRAY(obs_source_t *) filters_copy;
  2006. obs_source_save(source);
  2007. hotkeys = obs_hotkeys_save_source(source);
  2008. if (hotkeys) {
  2009. obs_data_release(hotkey_data);
  2010. source->context.hotkey_data = hotkeys;
  2011. hotkey_data = hotkeys;
  2012. }
  2013. obs_data_set_int(source_data, "prev_ver", LIBOBS_API_VER);
  2014. obs_data_set_string(source_data, "name", name);
  2015. obs_data_set_string(source_data, "uuid", uuid);
  2016. obs_data_set_string(source_data, "id", id);
  2017. obs_data_set_string(source_data, "versioned_id", v_id);
  2018. obs_data_set_obj(source_data, "settings", settings);
  2019. obs_data_set_int(source_data, "mixers", mixers);
  2020. obs_data_set_int(source_data, "sync", sync);
  2021. obs_data_set_int(source_data, "flags", flags);
  2022. obs_data_set_double(source_data, "volume", volume);
  2023. obs_data_set_double(source_data, "balance", balance);
  2024. obs_data_set_bool(source_data, "enabled", enabled);
  2025. obs_data_set_bool(source_data, "muted", muted);
  2026. obs_data_set_bool(source_data, "push-to-mute", push_to_mute);
  2027. obs_data_set_int(source_data, "push-to-mute-delay", ptm_delay);
  2028. obs_data_set_bool(source_data, "push-to-talk", push_to_talk);
  2029. obs_data_set_int(source_data, "push-to-talk-delay", ptt_delay);
  2030. obs_data_set_obj(source_data, "hotkeys", hotkey_data);
  2031. obs_data_set_int(source_data, "deinterlace_mode", di_mode);
  2032. obs_data_set_int(source_data, "deinterlace_field_order", di_order);
  2033. obs_data_set_int(source_data, "monitoring_type", m_type);
  2034. if (canvas) {
  2035. obs_data_set_string(source_data, "canvas_uuid", obs_canvas_get_uuid(canvas));
  2036. obs_canvas_release(canvas);
  2037. }
  2038. obs_data_set_obj(source_data, "private_settings", source->private_settings);
  2039. if (source->info.type == OBS_SOURCE_TYPE_TRANSITION)
  2040. obs_transition_save(source, source_data);
  2041. pthread_mutex_lock(&source->filter_mutex);
  2042. da_init(filters_copy);
  2043. da_reserve(filters_copy, source->filters.num);
  2044. for (size_t i = 0; i < source->filters.num; i++) {
  2045. obs_source_t *filter = obs_source_get_ref(source->filters.array[i]);
  2046. if (filter)
  2047. da_push_back(filters_copy, &filter);
  2048. }
  2049. pthread_mutex_unlock(&source->filter_mutex);
  2050. if (filters_copy.num) {
  2051. for (size_t i = filters_copy.num; i > 0; i--) {
  2052. obs_source_t *filter = filters_copy.array[i - 1];
  2053. obs_data_t *filter_data = obs_save_source(filter);
  2054. obs_data_array_push_back(filters, filter_data);
  2055. obs_data_release(filter_data);
  2056. obs_source_release(filter);
  2057. }
  2058. obs_data_set_array(source_data, "filters", filters);
  2059. }
  2060. da_free(filters_copy);
  2061. obs_data_release(settings);
  2062. obs_data_array_release(filters);
  2063. return source_data;
  2064. }
  2065. obs_data_array_t *obs_save_sources_filtered(obs_save_source_filter_cb cb, void *data_)
  2066. {
  2067. struct obs_core_data *data = &obs->data;
  2068. obs_data_array_t *array;
  2069. obs_source_t *source;
  2070. array = obs_data_array_create();
  2071. pthread_mutex_lock(&data->sources_mutex);
  2072. source = data->sources;
  2073. while (source) {
  2074. if ((source->info.type != OBS_SOURCE_TYPE_FILTER) != 0 && !source->removed && !source->temp_removed &&
  2075. !source->context.private && cb(data_, source)) {
  2076. obs_data_t *source_data = obs_save_source(source);
  2077. obs_data_array_push_back(array, source_data);
  2078. obs_data_release(source_data);
  2079. }
  2080. source = (obs_source_t *)source->context.hh_uuid.next;
  2081. }
  2082. pthread_mutex_unlock(&data->sources_mutex);
  2083. return array;
  2084. }
  2085. static bool save_source_filter(void *data, obs_source_t *source)
  2086. {
  2087. UNUSED_PARAMETER(data);
  2088. UNUSED_PARAMETER(source);
  2089. return true;
  2090. }
  2091. obs_data_array_t *obs_save_sources(void)
  2092. {
  2093. return obs_save_sources_filtered(save_source_filter, NULL);
  2094. }
  2095. void obs_reset_source_uuids()
  2096. {
  2097. pthread_mutex_lock(&obs->data.sources_mutex);
  2098. /* Move all sources to a new hash table */
  2099. struct obs_context_data *ht = (struct obs_context_data *)obs->data.sources;
  2100. struct obs_context_data *new_ht = NULL;
  2101. struct obs_context_data *ctx, *tmp;
  2102. HASH_ITER (hh_uuid, ht, ctx, tmp) {
  2103. HASH_DELETE(hh_uuid, ht, ctx);
  2104. bfree((void *)ctx->uuid);
  2105. ctx->uuid = os_generate_uuid();
  2106. HASH_ADD_UUID(new_ht, uuid, ctx);
  2107. }
  2108. /* The old table will be automatically freed once the last element has
  2109. * been removed, so we can simply overwrite the pointer. */
  2110. obs->data.sources = (struct obs_source *)new_ht;
  2111. pthread_mutex_unlock(&obs->data.sources_mutex);
  2112. }
  2113. /* ensures that names are never blank */
  2114. static inline char *dup_name(const char *name, bool private)
  2115. {
  2116. if (private && !name)
  2117. return NULL;
  2118. if (!name || !*name) {
  2119. struct dstr unnamed = {0};
  2120. dstr_printf(&unnamed, "__unnamed%04lld", obs->data.unnamed_index++);
  2121. return unnamed.array;
  2122. } else {
  2123. return bstrdup(name);
  2124. }
  2125. }
  2126. static inline bool obs_context_data_init_wrap(struct obs_context_data *context, enum obs_obj_type type,
  2127. obs_data_t *settings, const char *name, const char *uuid,
  2128. obs_data_t *hotkey_data, bool private)
  2129. {
  2130. assert(context);
  2131. memset(context, 0, sizeof(*context));
  2132. context->private = private;
  2133. context->type = type;
  2134. pthread_mutex_init_value(&context->rename_cache_mutex);
  2135. if (pthread_mutex_init(&context->rename_cache_mutex, NULL) < 0)
  2136. return false;
  2137. context->signals = signal_handler_create();
  2138. if (!context->signals)
  2139. return false;
  2140. context->procs = proc_handler_create();
  2141. if (!context->procs)
  2142. return false;
  2143. if (uuid && strlen(uuid) == UUID_STR_LENGTH)
  2144. context->uuid = bstrdup(uuid);
  2145. /* Only automatically generate UUIDs for sources */
  2146. else if (type == OBS_OBJ_TYPE_SOURCE || type == OBS_OBJ_TYPE_CANVAS)
  2147. context->uuid = os_generate_uuid();
  2148. context->name = dup_name(name, private);
  2149. context->settings = obs_data_newref(settings);
  2150. context->hotkey_data = obs_data_newref(hotkey_data);
  2151. return true;
  2152. }
  2153. bool obs_context_data_init(struct obs_context_data *context, enum obs_obj_type type, obs_data_t *settings,
  2154. const char *name, const char *uuid, obs_data_t *hotkey_data, bool private)
  2155. {
  2156. if (obs_context_data_init_wrap(context, type, settings, name, uuid, hotkey_data, private)) {
  2157. return true;
  2158. } else {
  2159. obs_context_data_free(context);
  2160. return false;
  2161. }
  2162. }
  2163. void obs_context_data_free(struct obs_context_data *context)
  2164. {
  2165. obs_hotkeys_context_release(context);
  2166. signal_handler_destroy(context->signals);
  2167. proc_handler_destroy(context->procs);
  2168. obs_data_release(context->settings);
  2169. obs_context_data_remove(context);
  2170. pthread_mutex_destroy(&context->rename_cache_mutex);
  2171. bfree(context->name);
  2172. bfree((void *)context->uuid);
  2173. for (size_t i = 0; i < context->rename_cache.num; i++)
  2174. bfree(context->rename_cache.array[i]);
  2175. da_free(context->rename_cache);
  2176. memset(context, 0, sizeof(*context));
  2177. }
  2178. void obs_context_init_control(struct obs_context_data *context, void *object, obs_destroy_cb destroy)
  2179. {
  2180. context->control = bzalloc(sizeof(obs_weak_object_t));
  2181. context->control->object = object;
  2182. context->destroy = destroy;
  2183. }
  2184. void obs_context_data_insert(struct obs_context_data *context, pthread_mutex_t *mutex, void *pfirst)
  2185. {
  2186. struct obs_context_data **first = pfirst;
  2187. assert(context);
  2188. assert(mutex);
  2189. assert(first);
  2190. context->mutex = mutex;
  2191. pthread_mutex_lock(mutex);
  2192. context->prev_next = first;
  2193. context->next = *first;
  2194. *first = context;
  2195. if (context->next)
  2196. context->next->prev_next = &context->next;
  2197. pthread_mutex_unlock(mutex);
  2198. }
  2199. static inline char *obs_context_deduplicate_name(void *phash, const char *name)
  2200. {
  2201. struct obs_context_data *head = phash;
  2202. struct obs_context_data *item = NULL;
  2203. HASH_FIND_STR(head, name, item);
  2204. if (!item)
  2205. return NULL;
  2206. struct dstr new_name = {0};
  2207. int suffix = 2;
  2208. while (item) {
  2209. dstr_printf(&new_name, "%s %d", name, suffix++);
  2210. HASH_FIND_STR(head, new_name.array, item);
  2211. }
  2212. return new_name.array;
  2213. }
  2214. void obs_context_data_insert_name(struct obs_context_data *context, pthread_mutex_t *mutex, void *pfirst)
  2215. {
  2216. struct obs_context_data **first = pfirst;
  2217. char *new_name;
  2218. assert(context);
  2219. assert(mutex);
  2220. assert(first);
  2221. context->mutex = mutex;
  2222. pthread_mutex_lock(mutex);
  2223. /* Ensure name is not a duplicate. */
  2224. new_name = obs_context_deduplicate_name(*first, context->name);
  2225. if (new_name) {
  2226. blog(LOG_WARNING,
  2227. "Attempted to insert context with duplicate name \"%s\"!"
  2228. " Name has been changed to \"%s\"",
  2229. context->name, new_name);
  2230. /* Since this happens before the context creation finishes,
  2231. * do not bother to add it to the rename cache. */
  2232. bfree(context->name);
  2233. context->name = new_name;
  2234. }
  2235. HASH_ADD_STR(*first, name, context);
  2236. pthread_mutex_unlock(mutex);
  2237. }
  2238. void obs_context_data_insert_uuid(struct obs_context_data *context, pthread_mutex_t *mutex, void *pfirst_uuid)
  2239. {
  2240. struct obs_context_data **first_uuid = pfirst_uuid;
  2241. struct obs_context_data *item = NULL;
  2242. assert(context);
  2243. assert(mutex);
  2244. assert(first_uuid);
  2245. context->mutex = mutex;
  2246. pthread_mutex_lock(mutex);
  2247. /* Ensure UUID is not a duplicate.
  2248. * This should only ever happen if a scene collection file has been
  2249. * manually edited and an entry has been duplicated without removing
  2250. * or regenerating the UUID. */
  2251. HASH_FIND_UUID(*first_uuid, context->uuid, item);
  2252. if (item) {
  2253. blog(LOG_WARNING, "Attempted to insert context with duplicate UUID \"%s\"!", context->uuid);
  2254. /* It is practically impossible for the new UUID to be a
  2255. * duplicate, so don't bother checking again. */
  2256. bfree((void *)context->uuid);
  2257. context->uuid = os_generate_uuid();
  2258. }
  2259. HASH_ADD_UUID(*first_uuid, uuid, context);
  2260. pthread_mutex_unlock(mutex);
  2261. }
  2262. void obs_context_data_remove(struct obs_context_data *context)
  2263. {
  2264. if (context && context->prev_next) {
  2265. pthread_mutex_lock(context->mutex);
  2266. *context->prev_next = context->next;
  2267. if (context->next)
  2268. context->next->prev_next = context->prev_next;
  2269. context->prev_next = NULL;
  2270. pthread_mutex_unlock(context->mutex);
  2271. }
  2272. }
  2273. void obs_context_data_remove_name(struct obs_context_data *context, pthread_mutex_t *mutex, void *phead)
  2274. {
  2275. struct obs_context_data **head = phead;
  2276. assert(head);
  2277. if (!context)
  2278. return;
  2279. pthread_mutex_lock(mutex);
  2280. HASH_DELETE(hh, *head, context);
  2281. pthread_mutex_unlock(mutex);
  2282. }
  2283. void obs_context_data_remove_uuid(struct obs_context_data *context, pthread_mutex_t *mutex, void *puuid_head)
  2284. {
  2285. struct obs_context_data **uuid_head = puuid_head;
  2286. assert(uuid_head);
  2287. if (!context || !context->uuid || !uuid_head)
  2288. return;
  2289. pthread_mutex_lock(mutex);
  2290. HASH_DELETE(hh_uuid, *uuid_head, context);
  2291. pthread_mutex_unlock(mutex);
  2292. }
  2293. void obs_context_wait(struct obs_context_data *context)
  2294. {
  2295. pthread_mutex_lock(context->mutex);
  2296. pthread_mutex_unlock(context->mutex);
  2297. }
  2298. void obs_context_data_setname(struct obs_context_data *context, const char *name)
  2299. {
  2300. pthread_mutex_lock(&context->rename_cache_mutex);
  2301. if (context->name)
  2302. da_push_back(context->rename_cache, &context->name);
  2303. context->name = dup_name(name, context->private);
  2304. pthread_mutex_unlock(&context->rename_cache_mutex);
  2305. }
  2306. void obs_context_data_setname_ht(struct obs_context_data *context, const char *name, void *phead)
  2307. {
  2308. struct obs_context_data **head = phead;
  2309. char *new_name;
  2310. pthread_mutex_lock(context->mutex);
  2311. pthread_mutex_lock(&context->rename_cache_mutex);
  2312. HASH_DEL(*head, context);
  2313. if (context->name)
  2314. da_push_back(context->rename_cache, &context->name);
  2315. /* Ensure new name is not a duplicate. */
  2316. new_name = obs_context_deduplicate_name(*head, name);
  2317. if (new_name) {
  2318. blog(LOG_WARNING,
  2319. "Attempted to rename context to duplicate name \"%s\"!"
  2320. " New name has been changed to \"%s\"",
  2321. context->name, new_name);
  2322. context->name = new_name;
  2323. } else {
  2324. context->name = dup_name(name, context->private);
  2325. }
  2326. HASH_ADD_STR(*head, name, context);
  2327. pthread_mutex_unlock(&context->rename_cache_mutex);
  2328. pthread_mutex_unlock(context->mutex);
  2329. }
  2330. profiler_name_store_t *obs_get_profiler_name_store(void)
  2331. {
  2332. return obs->name_store;
  2333. }
  2334. uint64_t obs_get_video_frame_time(void)
  2335. {
  2336. return obs->video.video_time;
  2337. }
  2338. double obs_get_active_fps(void)
  2339. {
  2340. return obs->video.video_fps;
  2341. }
  2342. uint64_t obs_get_average_frame_time_ns(void)
  2343. {
  2344. return obs->video.video_avg_frame_time_ns;
  2345. }
  2346. uint64_t obs_get_frame_interval_ns(void)
  2347. {
  2348. return obs->video.video_frame_interval_ns;
  2349. }
  2350. enum obs_obj_type obs_obj_get_type(void *obj)
  2351. {
  2352. struct obs_context_data *context = obj;
  2353. return context ? context->type : OBS_OBJ_TYPE_INVALID;
  2354. }
  2355. const char *obs_obj_get_id(void *obj)
  2356. {
  2357. struct obs_context_data *context = obj;
  2358. if (!context)
  2359. return NULL;
  2360. switch (context->type) {
  2361. case OBS_OBJ_TYPE_SOURCE:
  2362. return ((obs_source_t *)obj)->info.id;
  2363. case OBS_OBJ_TYPE_OUTPUT:
  2364. return ((obs_output_t *)obj)->info.id;
  2365. case OBS_OBJ_TYPE_ENCODER:
  2366. return ((obs_encoder_t *)obj)->info.id;
  2367. case OBS_OBJ_TYPE_SERVICE:
  2368. return ((obs_service_t *)obj)->info.id;
  2369. default:;
  2370. }
  2371. return NULL;
  2372. }
  2373. bool obs_obj_invalid(void *obj)
  2374. {
  2375. struct obs_context_data *context = obj;
  2376. if (!context)
  2377. return true;
  2378. return !context->data;
  2379. }
  2380. void *obs_obj_get_data(void *obj)
  2381. {
  2382. struct obs_context_data *context = obj;
  2383. if (!context)
  2384. return NULL;
  2385. return context->data;
  2386. }
  2387. bool obs_obj_is_private(void *obj)
  2388. {
  2389. struct obs_context_data *context = obj;
  2390. if (!context)
  2391. return false;
  2392. return context->private;
  2393. }
  2394. void obs_reset_audio_monitoring(void)
  2395. {
  2396. if (!obs_audio_monitoring_available())
  2397. return;
  2398. pthread_mutex_lock(&obs->audio.monitoring_mutex);
  2399. for (size_t i = 0; i < obs->audio.monitors.num; i++) {
  2400. struct audio_monitor *monitor = obs->audio.monitors.array[i];
  2401. audio_monitor_reset(monitor);
  2402. }
  2403. pthread_mutex_unlock(&obs->audio.monitoring_mutex);
  2404. }
  2405. bool obs_set_audio_monitoring_device(const char *name, const char *id)
  2406. {
  2407. if (!name || !id || !*name || !*id)
  2408. return false;
  2409. if (!obs_audio_monitoring_available())
  2410. return false;
  2411. pthread_mutex_lock(&obs->audio.monitoring_mutex);
  2412. if (strcmp(id, obs->audio.monitoring_device_id) == 0) {
  2413. pthread_mutex_unlock(&obs->audio.monitoring_mutex);
  2414. return true;
  2415. }
  2416. bfree(obs->audio.monitoring_device_name);
  2417. bfree(obs->audio.monitoring_device_id);
  2418. obs->audio.monitoring_device_name = bstrdup(name);
  2419. obs->audio.monitoring_device_id = bstrdup(id);
  2420. obs_reset_audio_monitoring();
  2421. pthread_mutex_unlock(&obs->audio.monitoring_mutex);
  2422. return true;
  2423. }
  2424. void obs_get_audio_monitoring_device(const char **name, const char **id)
  2425. {
  2426. if (name)
  2427. *name = obs->audio.monitoring_device_name;
  2428. if (id)
  2429. *id = obs->audio.monitoring_device_id;
  2430. }
  2431. void obs_add_tick_callback(void (*tick)(void *param, float seconds), void *param)
  2432. {
  2433. struct tick_callback data = {tick, param};
  2434. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2435. da_insert(obs->data.tick_callbacks, 0, &data);
  2436. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2437. }
  2438. void obs_remove_tick_callback(void (*tick)(void *param, float seconds), void *param)
  2439. {
  2440. struct tick_callback data = {tick, param};
  2441. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2442. da_erase_item(obs->data.tick_callbacks, &data);
  2443. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2444. }
  2445. void obs_add_main_render_callback(void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param)
  2446. {
  2447. struct draw_callback data = {draw, param};
  2448. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2449. da_insert(obs->data.draw_callbacks, 0, &data);
  2450. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2451. }
  2452. void obs_remove_main_render_callback(void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param)
  2453. {
  2454. struct draw_callback data = {draw, param};
  2455. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2456. da_erase_item(obs->data.draw_callbacks, &data);
  2457. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2458. }
  2459. void obs_add_main_rendered_callback(void (*rendered)(void *param), void *param)
  2460. {
  2461. struct rendered_callback data = {rendered, param};
  2462. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2463. da_insert(obs->data.rendered_callbacks, 0, &data);
  2464. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2465. }
  2466. void obs_remove_main_rendered_callback(void (*rendered)(void *param), void *param)
  2467. {
  2468. struct rendered_callback data = {rendered, param};
  2469. pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
  2470. da_erase_item(obs->data.rendered_callbacks, &data);
  2471. pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
  2472. }
  2473. uint32_t obs_get_total_frames(void)
  2474. {
  2475. return obs->video.total_frames;
  2476. }
  2477. uint32_t obs_get_lagged_frames(void)
  2478. {
  2479. return obs->video.lagged_frames;
  2480. }
  2481. struct obs_core_video_mix *get_mix_for_video(video_t *v)
  2482. {
  2483. struct obs_core_video_mix *result = NULL;
  2484. pthread_mutex_lock(&obs->video.mixes_mutex);
  2485. for (size_t i = 0, num = obs->video.mixes.num; i < num; i++) {
  2486. struct obs_core_video_mix *mix = obs->video.mixes.array[i];
  2487. if (v == mix->video) {
  2488. result = mix;
  2489. break;
  2490. }
  2491. }
  2492. pthread_mutex_unlock(&obs->video.mixes_mutex);
  2493. return result;
  2494. }
  2495. void start_raw_video(video_t *v, const struct video_scale_info *conversion, uint32_t frame_rate_divisor,
  2496. void (*callback)(void *param, struct video_data *frame), void *param)
  2497. {
  2498. struct obs_core_video_mix *video = get_mix_for_video(v);
  2499. // TODO: Make affected outputs use views/canvasses, and revert this later.
  2500. // https://github.com/obsproject/obs-studio/pull/12379
  2501. // https://github.com/obsproject/obs-studio/issues/12366
  2502. if (video_output_connect2(v, conversion, frame_rate_divisor, callback, param) && video)
  2503. os_atomic_inc_long(&video->raw_active);
  2504. }
  2505. void stop_raw_video(video_t *v, void (*callback)(void *param, struct video_data *frame), void *param)
  2506. {
  2507. struct obs_core_video_mix *video = get_mix_for_video(v);
  2508. // TODO: Make affected outputs use views/canvasses, and revert this later.
  2509. // https://github.com/obsproject/obs-studio/pull/12379
  2510. // https://github.com/obsproject/obs-studio/issues/12366
  2511. if (video_output_disconnect2(v, callback, param) && video)
  2512. os_atomic_dec_long(&video->raw_active);
  2513. }
  2514. void obs_add_raw_video_callback(const struct video_scale_info *conversion,
  2515. void (*callback)(void *param, struct video_data *frame), void *param)
  2516. {
  2517. obs_add_raw_video_callback2(conversion, 1, callback, param);
  2518. }
  2519. void obs_add_raw_video_callback2(const struct video_scale_info *conversion, uint32_t frame_rate_divisor,
  2520. void (*callback)(void *param, struct video_data *frame), void *param)
  2521. {
  2522. struct obs_core_video_mix *video = obs->data.main_canvas->mix;
  2523. start_raw_video(video->video, conversion, frame_rate_divisor, callback, param);
  2524. }
  2525. void obs_remove_raw_video_callback(void (*callback)(void *param, struct video_data *frame), void *param)
  2526. {
  2527. struct obs_core_video_mix *video = obs->data.main_canvas->mix;
  2528. stop_raw_video(video->video, callback, param);
  2529. }
  2530. void obs_add_raw_audio_callback(size_t mix_idx, const struct audio_convert_info *conversion,
  2531. audio_output_callback_t callback, void *param)
  2532. {
  2533. struct obs_core_audio *audio = &obs->audio;
  2534. audio_output_connect(audio->audio, mix_idx, conversion, callback, param);
  2535. }
  2536. void obs_remove_raw_audio_callback(size_t mix_idx, audio_output_callback_t callback, void *param)
  2537. {
  2538. struct obs_core_audio *audio = &obs->audio;
  2539. audio_output_disconnect(audio->audio, mix_idx, callback, param);
  2540. }
  2541. void obs_apply_private_data(obs_data_t *settings)
  2542. {
  2543. if (!settings)
  2544. return;
  2545. obs_data_apply(obs->data.private_data, settings);
  2546. }
  2547. void obs_set_private_data(obs_data_t *settings)
  2548. {
  2549. obs_data_clear(obs->data.private_data);
  2550. if (settings)
  2551. obs_data_apply(obs->data.private_data, settings);
  2552. }
  2553. obs_data_t *obs_get_private_data(void)
  2554. {
  2555. obs_data_t *private_data = obs->data.private_data;
  2556. obs_data_addref(private_data);
  2557. return private_data;
  2558. }
  2559. extern bool init_gpu_encoding(struct obs_core_video_mix *video);
  2560. extern void stop_gpu_encoding_thread(struct obs_core_video_mix *video);
  2561. extern void free_gpu_encoding(struct obs_core_video_mix *video);
  2562. bool start_gpu_encode(obs_encoder_t *encoder)
  2563. {
  2564. struct obs_core_video_mix *video = get_mix_for_video(encoder->media);
  2565. bool success = true;
  2566. obs_enter_graphics();
  2567. pthread_mutex_lock(&video->gpu_encoder_mutex);
  2568. if (!video->gpu_encoders.num)
  2569. success = init_gpu_encoding(video);
  2570. if (success)
  2571. da_push_back(video->gpu_encoders, &encoder);
  2572. else
  2573. free_gpu_encoding(video);
  2574. pthread_mutex_unlock(&video->gpu_encoder_mutex);
  2575. obs_leave_graphics();
  2576. if (success) {
  2577. os_atomic_inc_long(&video->gpu_encoder_active);
  2578. video_output_inc_texture_encoders(video->video);
  2579. }
  2580. return success;
  2581. }
  2582. void stop_gpu_encode(obs_encoder_t *encoder)
  2583. {
  2584. struct obs_core_video_mix *video = get_mix_for_video(encoder->media);
  2585. bool call_free = false;
  2586. os_atomic_dec_long(&video->gpu_encoder_active);
  2587. video_output_dec_texture_encoders(video->video);
  2588. pthread_mutex_lock(&video->gpu_encoder_mutex);
  2589. da_erase_item(video->gpu_encoders, &encoder);
  2590. if (!video->gpu_encoders.num)
  2591. call_free = true;
  2592. pthread_mutex_unlock(&video->gpu_encoder_mutex);
  2593. os_event_wait(video->gpu_encode_inactive);
  2594. if (call_free) {
  2595. stop_gpu_encoding_thread(video);
  2596. obs_enter_graphics();
  2597. pthread_mutex_lock(&video->gpu_encoder_mutex);
  2598. free_gpu_encoding(video);
  2599. pthread_mutex_unlock(&video->gpu_encoder_mutex);
  2600. obs_leave_graphics();
  2601. }
  2602. }
  2603. bool obs_video_active(void)
  2604. {
  2605. bool result = false;
  2606. pthread_mutex_lock(&obs->video.mixes_mutex);
  2607. for (size_t i = 0, num = obs->video.mixes.num; i < num; i++) {
  2608. struct obs_core_video_mix *video = obs->video.mixes.array[i];
  2609. if (os_atomic_load_long(&video->raw_active) > 0 ||
  2610. os_atomic_load_long(&video->gpu_encoder_active) > 0) {
  2611. result = true;
  2612. break;
  2613. }
  2614. }
  2615. pthread_mutex_unlock(&obs->video.mixes_mutex);
  2616. return result;
  2617. }
  2618. bool obs_nv12_tex_active(void)
  2619. {
  2620. struct obs_core_video_mix *video = obs->data.main_canvas->mix;
  2621. return video->using_nv12_tex;
  2622. }
  2623. bool obs_p010_tex_active(void)
  2624. {
  2625. struct obs_core_video_mix *video = obs->data.main_canvas->mix;
  2626. return video->using_p010_tex;
  2627. }
  2628. /* ------------------------------------------------------------------------- */
  2629. /* task stuff */
  2630. struct task_wait_info {
  2631. obs_task_t task;
  2632. void *param;
  2633. os_event_t *event;
  2634. };
  2635. static void task_wait_callback(void *param)
  2636. {
  2637. struct task_wait_info *info = param;
  2638. if (info->task)
  2639. info->task(info->param);
  2640. os_event_signal(info->event);
  2641. }
  2642. THREAD_LOCAL bool is_graphics_thread = false;
  2643. THREAD_LOCAL bool is_audio_thread = false;
  2644. static void set_audio_thread(void *unused)
  2645. {
  2646. is_audio_thread = true;
  2647. UNUSED_PARAMETER(unused);
  2648. }
  2649. bool obs_in_task_thread(enum obs_task_type type)
  2650. {
  2651. if (type == OBS_TASK_GRAPHICS)
  2652. return is_graphics_thread;
  2653. else if (type == OBS_TASK_AUDIO)
  2654. return is_audio_thread;
  2655. else if (type == OBS_TASK_UI)
  2656. return is_ui_thread;
  2657. else if (type == OBS_TASK_DESTROY)
  2658. return os_task_queue_inside(obs->destruction_task_thread);
  2659. assert(false);
  2660. return false;
  2661. }
  2662. void obs_queue_task(enum obs_task_type type, obs_task_t task, void *param, bool wait)
  2663. {
  2664. if (type == OBS_TASK_UI) {
  2665. if (obs->ui_task_handler) {
  2666. obs->ui_task_handler(task, param, wait);
  2667. } else {
  2668. blog(LOG_ERROR, "UI task could not be queued, "
  2669. "there's no UI task handler!");
  2670. }
  2671. } else {
  2672. if (obs_in_task_thread(type)) {
  2673. task(param);
  2674. } else if (wait) {
  2675. struct task_wait_info info = {
  2676. .task = task,
  2677. .param = param,
  2678. };
  2679. os_event_init(&info.event, OS_EVENT_TYPE_MANUAL);
  2680. obs_queue_task(type, task_wait_callback, &info, false);
  2681. os_event_wait(info.event);
  2682. os_event_destroy(info.event);
  2683. } else if (type == OBS_TASK_GRAPHICS) {
  2684. struct obs_core_video *video = &obs->video;
  2685. struct obs_task_info info = {task, param};
  2686. pthread_mutex_lock(&video->task_mutex);
  2687. deque_push_back(&video->tasks, &info, sizeof(info));
  2688. pthread_mutex_unlock(&video->task_mutex);
  2689. } else if (type == OBS_TASK_AUDIO) {
  2690. struct obs_core_audio *audio = &obs->audio;
  2691. struct obs_task_info info = {task, param};
  2692. pthread_mutex_lock(&audio->task_mutex);
  2693. deque_push_back(&audio->tasks, &info, sizeof(info));
  2694. pthread_mutex_unlock(&audio->task_mutex);
  2695. } else if (type == OBS_TASK_DESTROY) {
  2696. os_task_t os_task = (os_task_t)task;
  2697. os_task_queue_queue_task(obs->destruction_task_thread, os_task, param);
  2698. }
  2699. }
  2700. }
  2701. bool obs_wait_for_destroy_queue(void)
  2702. {
  2703. struct task_wait_info info = {0};
  2704. if (!obs->video.thread_initialized || !obs->audio.audio)
  2705. return false;
  2706. /* allow video and audio threads time to release objects */
  2707. os_event_init(&info.event, OS_EVENT_TYPE_AUTO);
  2708. obs_queue_task(OBS_TASK_GRAPHICS, task_wait_callback, &info, false);
  2709. os_event_wait(info.event);
  2710. obs_queue_task(OBS_TASK_AUDIO, task_wait_callback, &info, false);
  2711. os_event_wait(info.event);
  2712. os_event_destroy(info.event);
  2713. /* wait for destroy task queue */
  2714. return os_task_queue_wait(obs->destruction_task_thread);
  2715. }
  2716. static void set_ui_thread(void *unused)
  2717. {
  2718. is_ui_thread = true;
  2719. UNUSED_PARAMETER(unused);
  2720. }
  2721. void obs_set_ui_task_handler(obs_task_handler_t handler)
  2722. {
  2723. obs->ui_task_handler = handler;
  2724. obs_queue_task(OBS_TASK_UI, set_ui_thread, NULL, false);
  2725. }
  2726. obs_object_t *obs_object_get_ref(obs_object_t *object)
  2727. {
  2728. if (!object)
  2729. return NULL;
  2730. return obs_weak_object_get_object(object->control);
  2731. }
  2732. void obs_object_release(obs_object_t *object)
  2733. {
  2734. if (!obs) {
  2735. blog(LOG_WARNING, "Tried to release an object when the OBS "
  2736. "core is shut down!");
  2737. return;
  2738. }
  2739. if (!object)
  2740. return;
  2741. obs_weak_object_t *control = object->control;
  2742. if (obs_ref_release(&control->ref)) {
  2743. object->destroy(object);
  2744. obs_weak_object_release(control);
  2745. }
  2746. }
  2747. void obs_weak_object_addref(obs_weak_object_t *weak)
  2748. {
  2749. if (!weak)
  2750. return;
  2751. obs_weak_ref_addref(&weak->ref);
  2752. }
  2753. void obs_weak_object_release(obs_weak_object_t *weak)
  2754. {
  2755. if (!weak)
  2756. return;
  2757. if (obs_weak_ref_release(&weak->ref))
  2758. bfree(weak);
  2759. }
  2760. obs_weak_object_t *obs_object_get_weak_object(obs_object_t *object)
  2761. {
  2762. if (!object)
  2763. return NULL;
  2764. obs_weak_object_t *weak = object->control;
  2765. obs_weak_object_addref(weak);
  2766. return weak;
  2767. }
  2768. obs_object_t *obs_weak_object_get_object(obs_weak_object_t *weak)
  2769. {
  2770. if (!weak)
  2771. return NULL;
  2772. if (obs_weak_ref_get_ref(&weak->ref))
  2773. return weak->object;
  2774. return NULL;
  2775. }
  2776. bool obs_weak_object_expired(obs_weak_object_t *weak)
  2777. {
  2778. return weak ? obs_weak_ref_expired(&weak->ref) : true;
  2779. }
  2780. bool obs_weak_object_references_object(obs_weak_object_t *weak, obs_object_t *object)
  2781. {
  2782. return weak && object && weak->object == object;
  2783. }
  2784. bool obs_is_output_protocol_registered(const char *protocol)
  2785. {
  2786. for (size_t i = 0; i < obs->data.protocols.num; i++) {
  2787. if (strcmp(protocol, obs->data.protocols.array[i]) == 0)
  2788. return true;
  2789. }
  2790. return false;
  2791. }
  2792. bool obs_enum_output_protocols(size_t idx, char **protocol)
  2793. {
  2794. if (idx >= obs->data.protocols.num)
  2795. return false;
  2796. *protocol = obs->data.protocols.array[idx];
  2797. return true;
  2798. }
  2799. obs_canvas_t *obs_get_main_canvas(void)
  2800. {
  2801. return obs_canvas_get_ref(obs->data.main_canvas);
  2802. }