1
0

obs.h 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622
  1. /******************************************************************************
  2. Copyright (C) 2013-2014 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #pragma once
  15. #include "util/c99defs.h"
  16. #include "util/bmem.h"
  17. #include "util/profiler.h"
  18. #include "util/text-lookup.h"
  19. #include "graphics/graphics.h"
  20. #include "graphics/vec2.h"
  21. #include "graphics/vec3.h"
  22. #include "media-io/audio-io.h"
  23. #include "media-io/video-io.h"
  24. #include "callback/signal.h"
  25. #include "callback/proc.h"
  26. #include "obs-config.h"
  27. #include "obs-defs.h"
  28. #include "obs-data.h"
  29. #include "obs-ui.h"
  30. #include "obs-properties.h"
  31. #include "obs-interaction.h"
  32. struct matrix4;
  33. /* opaque types */
  34. struct obs_context_data;
  35. struct obs_display;
  36. struct obs_view;
  37. struct obs_source;
  38. struct obs_scene;
  39. struct obs_scene_item;
  40. struct obs_output;
  41. struct obs_encoder;
  42. struct obs_service;
  43. struct obs_module;
  44. struct obs_fader;
  45. struct obs_volmeter;
  46. typedef struct obs_context_data obs_object_t;
  47. typedef struct obs_display obs_display_t;
  48. typedef struct obs_view obs_view_t;
  49. typedef struct obs_source obs_source_t;
  50. typedef struct obs_scene obs_scene_t;
  51. typedef struct obs_scene_item obs_sceneitem_t;
  52. typedef struct obs_output obs_output_t;
  53. typedef struct obs_encoder obs_encoder_t;
  54. typedef struct obs_service obs_service_t;
  55. typedef struct obs_module obs_module_t;
  56. typedef struct obs_fader obs_fader_t;
  57. typedef struct obs_volmeter obs_volmeter_t;
  58. typedef struct obs_weak_object obs_weak_object_t;
  59. typedef struct obs_weak_source obs_weak_source_t;
  60. typedef struct obs_weak_output obs_weak_output_t;
  61. typedef struct obs_weak_encoder obs_weak_encoder_t;
  62. typedef struct obs_weak_service obs_weak_service_t;
  63. #include "obs-missing-files.h"
  64. #include "obs-source.h"
  65. #include "obs-encoder.h"
  66. #include "obs-output.h"
  67. #include "obs-service.h"
  68. #include "obs-audio-controls.h"
  69. #include "obs-hotkey.h"
  70. /**
  71. * @file
  72. * @brief Main libobs header used by applications.
  73. *
  74. * @mainpage
  75. *
  76. * @section intro_sec Introduction
  77. *
  78. * This document describes the api for libobs to be used by applications as well
  79. * as @ref modules_page implementing some kind of functionality.
  80. *
  81. */
  82. #ifdef __cplusplus
  83. extern "C" {
  84. #endif
  85. /** Used for changing the order of items (for example, filters in a source,
  86. * or items in a scene) */
  87. enum obs_order_movement {
  88. OBS_ORDER_MOVE_UP,
  89. OBS_ORDER_MOVE_DOWN,
  90. OBS_ORDER_MOVE_TOP,
  91. OBS_ORDER_MOVE_BOTTOM,
  92. };
  93. /**
  94. * Used with obs_source_process_filter to specify whether the filter should
  95. * render the source directly with the specified effect, or whether it should
  96. * render it to a texture
  97. */
  98. enum obs_allow_direct_render {
  99. OBS_NO_DIRECT_RENDERING,
  100. OBS_ALLOW_DIRECT_RENDERING,
  101. };
  102. enum obs_scale_type {
  103. OBS_SCALE_DISABLE,
  104. OBS_SCALE_POINT,
  105. OBS_SCALE_BICUBIC,
  106. OBS_SCALE_BILINEAR,
  107. OBS_SCALE_LANCZOS,
  108. OBS_SCALE_AREA,
  109. };
  110. enum obs_blending_method {
  111. OBS_BLEND_METHOD_DEFAULT,
  112. OBS_BLEND_METHOD_SRGB_OFF,
  113. };
  114. enum obs_blending_type {
  115. OBS_BLEND_NORMAL,
  116. OBS_BLEND_ADDITIVE,
  117. OBS_BLEND_SUBTRACT,
  118. OBS_BLEND_SCREEN,
  119. OBS_BLEND_MULTIPLY,
  120. OBS_BLEND_LIGHTEN,
  121. OBS_BLEND_DARKEN,
  122. };
  123. /**
  124. * Used with scene items to indicate the type of bounds to use for scene items.
  125. * Mostly determines how the image will be scaled within those bounds, or
  126. * whether to use bounds at all.
  127. */
  128. enum obs_bounds_type {
  129. OBS_BOUNDS_NONE, /**< no bounds */
  130. OBS_BOUNDS_STRETCH, /**< stretch (ignores base scale) */
  131. OBS_BOUNDS_SCALE_INNER, /**< scales to inner rectangle */
  132. OBS_BOUNDS_SCALE_OUTER, /**< scales to outer rectangle */
  133. OBS_BOUNDS_SCALE_TO_WIDTH, /**< scales to the width */
  134. OBS_BOUNDS_SCALE_TO_HEIGHT, /**< scales to the height */
  135. OBS_BOUNDS_MAX_ONLY, /**< no scaling, maximum size only */
  136. };
  137. struct obs_transform_info {
  138. struct vec2 pos;
  139. float rot;
  140. struct vec2 scale;
  141. uint32_t alignment;
  142. enum obs_bounds_type bounds_type;
  143. uint32_t bounds_alignment;
  144. struct vec2 bounds;
  145. };
  146. /**
  147. * Video initialization structure
  148. */
  149. struct obs_video_info {
  150. #ifndef SWIG
  151. /**
  152. * Graphics module to use (usually "libobs-opengl" or "libobs-d3d11")
  153. */
  154. const char *graphics_module;
  155. #endif
  156. uint32_t fps_num; /**< Output FPS numerator */
  157. uint32_t fps_den; /**< Output FPS denominator */
  158. uint32_t base_width; /**< Base compositing width */
  159. uint32_t base_height; /**< Base compositing height */
  160. uint32_t output_width; /**< Output width */
  161. uint32_t output_height; /**< Output height */
  162. enum video_format output_format; /**< Output format */
  163. /** Video adapter index to use (NOTE: avoid for optimus laptops) */
  164. uint32_t adapter;
  165. /** Use shaders to convert to different color formats */
  166. bool gpu_conversion;
  167. enum video_colorspace colorspace; /**< YUV type (if YUV) */
  168. enum video_range_type range; /**< YUV range (if YUV) */
  169. enum obs_scale_type scale_type; /**< How to scale if scaling */
  170. };
  171. /**
  172. * Audio initialization structure
  173. */
  174. struct obs_audio_info {
  175. uint32_t samples_per_sec;
  176. enum speaker_layout speakers;
  177. };
  178. struct obs_audio_info2 {
  179. uint32_t samples_per_sec;
  180. enum speaker_layout speakers;
  181. uint32_t max_buffering_ms;
  182. bool fixed_buffering;
  183. };
  184. /**
  185. * Sent to source filters via the filter_audio callback to allow filtering of
  186. * audio data
  187. */
  188. struct obs_audio_data {
  189. uint8_t *data[MAX_AV_PLANES];
  190. uint32_t frames;
  191. uint64_t timestamp;
  192. };
  193. /**
  194. * Source audio output structure. Used with obs_source_output_audio to output
  195. * source audio. Audio is automatically resampled and remixed as necessary.
  196. */
  197. struct obs_source_audio {
  198. const uint8_t *data[MAX_AV_PLANES];
  199. uint32_t frames;
  200. enum speaker_layout speakers;
  201. enum audio_format format;
  202. uint32_t samples_per_sec;
  203. uint64_t timestamp;
  204. };
  205. struct obs_source_cea_708 {
  206. const uint8_t *data;
  207. uint32_t packets;
  208. uint64_t timestamp;
  209. };
  210. #define OBS_SOURCE_FRAME_LINEAR_ALPHA (1 << 0)
  211. /**
  212. * Source asynchronous video output structure. Used with
  213. * obs_source_output_video to output asynchronous video. Video is buffered as
  214. * necessary to play according to timestamps. When used with audio output,
  215. * audio is synced to video as it is played.
  216. *
  217. * If a YUV format is specified, it will be automatically upsampled and
  218. * converted to RGB via shader on the graphics processor.
  219. *
  220. * NOTE: Non-YUV formats will always be treated as full range with this
  221. * structure! Use obs_source_frame2 along with obs_source_output_video2
  222. * instead if partial range support is desired for non-YUV video formats.
  223. */
  224. struct obs_source_frame {
  225. uint8_t *data[MAX_AV_PLANES];
  226. uint32_t linesize[MAX_AV_PLANES];
  227. uint32_t width;
  228. uint32_t height;
  229. uint64_t timestamp;
  230. enum video_format format;
  231. float color_matrix[16];
  232. bool full_range;
  233. uint16_t max_luminance;
  234. float color_range_min[3];
  235. float color_range_max[3];
  236. bool flip;
  237. uint8_t flags;
  238. uint8_t trc; /* enum video_trc */
  239. /* used internally by libobs */
  240. volatile long refs;
  241. bool prev_frame;
  242. };
  243. struct obs_source_frame2 {
  244. uint8_t *data[MAX_AV_PLANES];
  245. uint32_t linesize[MAX_AV_PLANES];
  246. uint32_t width;
  247. uint32_t height;
  248. uint64_t timestamp;
  249. enum video_format format;
  250. enum video_range_type range;
  251. float color_matrix[16];
  252. float color_range_min[3];
  253. float color_range_max[3];
  254. bool flip;
  255. uint8_t flags;
  256. uint8_t trc; /* enum video_trc */
  257. };
  258. /** Access to the argc/argv used to start OBS. What you see is what you get. */
  259. struct obs_cmdline_args {
  260. int argc;
  261. char **argv;
  262. };
  263. /* ------------------------------------------------------------------------- */
  264. /* OBS context */
  265. /**
  266. * Find a core libobs data file
  267. * @param path name of the base file
  268. * @return A string containing the full path to the file.
  269. * Use bfree after use.
  270. */
  271. EXPORT char *obs_find_data_file(const char *file);
  272. /**
  273. * Add a path to search libobs data files in.
  274. * @param path Full path to directory to look in.
  275. * The string is copied.
  276. */
  277. EXPORT void obs_add_data_path(const char *path);
  278. /**
  279. * Remove a path from libobs core data paths.
  280. * @param path The path to compare to currently set paths.
  281. * It does not need to be the same pointer, but
  282. * the path string must match an entry fully.
  283. * @return Whether or not the path was successfully removed.
  284. * If false, the path could not be found.
  285. */
  286. EXPORT bool obs_remove_data_path(const char *path);
  287. /**
  288. * Initializes OBS
  289. *
  290. * @param locale The locale to use for modules
  291. * @param module_config_path Path to module config storage directory
  292. * (or NULL if none)
  293. * @param store The profiler name store for OBS to use or NULL
  294. */
  295. EXPORT bool obs_startup(const char *locale, const char *module_config_path,
  296. profiler_name_store_t *store);
  297. /** Releases all data associated with OBS and terminates the OBS context */
  298. EXPORT void obs_shutdown(void);
  299. /** @return true if the main OBS context has been initialized */
  300. EXPORT bool obs_initialized(void);
  301. /** @return The current core version */
  302. EXPORT uint32_t obs_get_version(void);
  303. /** @return The current core version string */
  304. EXPORT const char *obs_get_version_string(void);
  305. /**
  306. * Sets things up for calls to obs_get_cmdline_args. Called only once at startup
  307. * and safely copies argv/argc from main(). Subsequent calls do nothing.
  308. *
  309. * @param argc The count of command line arguments, from main()
  310. * @param argv An array of command line arguments, copied from main() and ends
  311. * with NULL.
  312. */
  313. EXPORT void obs_set_cmdline_args(int argc, const char *const *argv);
  314. /**
  315. * Get the argc/argv used to start OBS
  316. *
  317. * @return The command line arguments used for main(). Don't modify this or
  318. * you'll mess things up for other callers.
  319. */
  320. EXPORT struct obs_cmdline_args obs_get_cmdline_args(void);
  321. /**
  322. * Sets a new locale to use for modules. This will call obs_module_set_locale
  323. * for each module with the new locale.
  324. *
  325. * @param locale The locale to use for modules
  326. */
  327. EXPORT void obs_set_locale(const char *locale);
  328. /** @return the current locale */
  329. EXPORT const char *obs_get_locale(void);
  330. /** Initialize the Windows-specific crash handler */
  331. #ifdef _WIN32
  332. EXPORT void obs_init_win32_crash_handler(void);
  333. #endif
  334. /**
  335. * Returns the profiler name store (see util/profiler.h) used by OBS, which is
  336. * either a name store passed to obs_startup, an internal name store, or NULL
  337. * in case obs_initialized() returns false.
  338. */
  339. EXPORT profiler_name_store_t *obs_get_profiler_name_store(void);
  340. /**
  341. * Sets base video output base resolution/fps/format.
  342. *
  343. * @note This data cannot be changed if an output is currently active.
  344. * @note The graphics module cannot be changed without fully destroying the
  345. * OBS context.
  346. *
  347. * @param ovi Pointer to an obs_video_info structure containing the
  348. * specification of the graphics subsystem,
  349. * @return OBS_VIDEO_SUCCESS if successful
  350. * OBS_VIDEO_NOT_SUPPORTED if the adapter lacks capabilities
  351. * OBS_VIDEO_INVALID_PARAM if a parameter is invalid
  352. * OBS_VIDEO_CURRENTLY_ACTIVE if video is currently active
  353. * OBS_VIDEO_MODULE_NOT_FOUND if the graphics module is not found
  354. * OBS_VIDEO_FAIL for generic failure
  355. */
  356. EXPORT int obs_reset_video(struct obs_video_info *ovi);
  357. /**
  358. * Sets base audio output format/channels/samples/etc
  359. *
  360. * @note Cannot reset base audio if an output is currently active.
  361. */
  362. EXPORT bool obs_reset_audio(const struct obs_audio_info *oai);
  363. EXPORT bool obs_reset_audio2(const struct obs_audio_info2 *oai);
  364. /** Gets the current video settings, returns false if no video */
  365. EXPORT bool obs_get_video_info(struct obs_video_info *ovi);
  366. /** Gets the SDR white level, returns 300.f if no video */
  367. EXPORT float obs_get_video_sdr_white_level(void);
  368. /** Gets the HDR nominal peak level, returns 1000.f if no video */
  369. EXPORT float obs_get_video_hdr_nominal_peak_level(void);
  370. /** Sets the video levels */
  371. EXPORT void obs_set_video_levels(float sdr_white_level,
  372. float hdr_nominal_peak_level);
  373. /** Gets the current audio settings, returns false if no audio */
  374. EXPORT bool obs_get_audio_info(struct obs_audio_info *oai);
  375. /**
  376. * Opens a plugin module directly from a specific path.
  377. *
  378. * If the module already exists then the function will return successful, and
  379. * the module parameter will be given the pointer to the existing module.
  380. *
  381. * This does not initialize the module, it only loads the module image. To
  382. * initialize the module, call obs_init_module.
  383. *
  384. * @param module The pointer to the created module.
  385. * @param path Specifies the path to the module library file. If the
  386. * extension is not specified, it will use the extension
  387. * appropriate to the operating system.
  388. * @param data_path Specifies the path to the directory where the module's
  389. * data files are stored.
  390. * @returns MODULE_SUCCESS if successful
  391. * MODULE_ERROR if a generic error occurred
  392. * MODULE_FILE_NOT_FOUND if the module was not found
  393. * MODULE_MISSING_EXPORTS if required exports are missing
  394. * MODULE_INCOMPATIBLE_VER if incompatible version
  395. */
  396. EXPORT int obs_open_module(obs_module_t **module, const char *path,
  397. const char *data_path);
  398. /**
  399. * Initializes the module, which calls its obs_module_load export. If the
  400. * module is already loaded, then this function does nothing and returns
  401. * successful.
  402. */
  403. EXPORT bool obs_init_module(obs_module_t *module);
  404. /** Returns a module based upon its name, or NULL if not found */
  405. EXPORT obs_module_t *obs_get_module(const char *name);
  406. /** Gets library of module */
  407. EXPORT void *obs_get_module_lib(obs_module_t *module);
  408. /** Returns locale text from a specific module */
  409. EXPORT bool obs_module_get_locale_string(const obs_module_t *mod,
  410. const char *lookup_string,
  411. const char **translated_string);
  412. EXPORT const char *obs_module_get_locale_text(const obs_module_t *mod,
  413. const char *text);
  414. /** Logs loaded modules */
  415. EXPORT void obs_log_loaded_modules(void);
  416. /** Returns the module file name */
  417. EXPORT const char *obs_get_module_file_name(obs_module_t *module);
  418. /** Returns the module full name */
  419. EXPORT const char *obs_get_module_name(obs_module_t *module);
  420. /** Returns the module author(s) */
  421. EXPORT const char *obs_get_module_author(obs_module_t *module);
  422. /** Returns the module description */
  423. EXPORT const char *obs_get_module_description(obs_module_t *module);
  424. /** Returns the module binary path */
  425. EXPORT const char *obs_get_module_binary_path(obs_module_t *module);
  426. /** Returns the module data path */
  427. EXPORT const char *obs_get_module_data_path(obs_module_t *module);
  428. #ifndef SWIG
  429. /**
  430. * Adds a module search path to be used with obs_find_modules. If the search
  431. * path strings contain %module%, that text will be replaced with the module
  432. * name when used.
  433. *
  434. * @param bin Specifies the module's binary directory search path.
  435. * @param data Specifies the module's data directory search path.
  436. */
  437. EXPORT void obs_add_module_path(const char *bin, const char *data);
  438. /** Automatically loads all modules from module paths (convenience function) */
  439. EXPORT void obs_load_all_modules(void);
  440. struct obs_module_failure_info {
  441. char **failed_modules;
  442. size_t count;
  443. };
  444. EXPORT void obs_module_failure_info_free(struct obs_module_failure_info *mfi);
  445. EXPORT void obs_load_all_modules2(struct obs_module_failure_info *mfi);
  446. /** Notifies modules that all modules have been loaded. This function should
  447. * be called after all modules have been loaded. */
  448. EXPORT void obs_post_load_modules(void);
  449. struct obs_module_info {
  450. const char *bin_path;
  451. const char *data_path;
  452. };
  453. typedef void (*obs_find_module_callback_t)(void *param,
  454. const struct obs_module_info *info);
  455. /** Finds all modules within the search paths added by obs_add_module_path. */
  456. EXPORT void obs_find_modules(obs_find_module_callback_t callback, void *param);
  457. struct obs_module_info2 {
  458. const char *bin_path;
  459. const char *data_path;
  460. const char *name;
  461. };
  462. typedef void (*obs_find_module_callback2_t)(
  463. void *param, const struct obs_module_info2 *info);
  464. /** Finds all modules within the search paths added by obs_add_module_path. */
  465. EXPORT void obs_find_modules2(obs_find_module_callback2_t callback,
  466. void *param);
  467. #endif
  468. typedef void (*obs_enum_module_callback_t)(void *param, obs_module_t *module);
  469. /** Enumerates all loaded modules */
  470. EXPORT void obs_enum_modules(obs_enum_module_callback_t callback, void *param);
  471. /** Helper function for using default module locale */
  472. EXPORT lookup_t *obs_module_load_locale(obs_module_t *module,
  473. const char *default_locale,
  474. const char *locale);
  475. /**
  476. * Returns the location of a plugin module data file.
  477. *
  478. * @note Modules should use obs_module_file function defined in obs-module.h
  479. * as a more elegant means of getting their files without having to
  480. * specify the module parameter.
  481. *
  482. * @param module The module associated with the file to locate
  483. * @param file The file to locate
  484. * @return Path string, or NULL if not found. Use bfree to free string.
  485. */
  486. EXPORT char *obs_find_module_file(obs_module_t *module, const char *file);
  487. /**
  488. * Returns the path of a plugin module config file (whether it exists or not)
  489. *
  490. * @note Modules should use obs_module_config_path function defined in
  491. * obs-module.h as a more elegant means of getting their files without
  492. * having to specify the module parameter.
  493. *
  494. * @param module The module associated with the path
  495. * @param file The file to get a path to
  496. * @return Path string, or NULL if not found. Use bfree to free string.
  497. */
  498. EXPORT char *obs_module_get_config_path(obs_module_t *module, const char *file);
  499. /** Enumerates all source types (inputs, filters, transitions, etc). */
  500. EXPORT bool obs_enum_source_types(size_t idx, const char **id);
  501. /**
  502. * Enumerates all available inputs source types.
  503. *
  504. * Inputs are general source inputs (such as capture sources, device sources,
  505. * etc).
  506. */
  507. EXPORT bool obs_enum_input_types(size_t idx, const char **id);
  508. EXPORT bool obs_enum_input_types2(size_t idx, const char **id,
  509. const char **unversioned_id);
  510. EXPORT const char *obs_get_latest_input_type_id(const char *unversioned_id);
  511. /**
  512. * Enumerates all available filter source types.
  513. *
  514. * Filters are sources that are used to modify the video/audio output of
  515. * other sources.
  516. */
  517. EXPORT bool obs_enum_filter_types(size_t idx, const char **id);
  518. /**
  519. * Enumerates all available transition source types.
  520. *
  521. * Transitions are sources used to transition between two or more other
  522. * sources.
  523. */
  524. EXPORT bool obs_enum_transition_types(size_t idx, const char **id);
  525. /** Enumerates all available output types. */
  526. EXPORT bool obs_enum_output_types(size_t idx, const char **id);
  527. /** Enumerates all available encoder types. */
  528. EXPORT bool obs_enum_encoder_types(size_t idx, const char **id);
  529. /** Enumerates all available service types. */
  530. EXPORT bool obs_enum_service_types(size_t idx, const char **id);
  531. /** Helper function for entering the OBS graphics context */
  532. EXPORT void obs_enter_graphics(void);
  533. /** Helper function for leaving the OBS graphics context */
  534. EXPORT void obs_leave_graphics(void);
  535. /** Gets the main audio output handler for this OBS context */
  536. EXPORT audio_t *obs_get_audio(void);
  537. /** Gets the main video output handler for this OBS context */
  538. EXPORT video_t *obs_get_video(void);
  539. /** Returns true if video is active, false otherwise */
  540. EXPORT bool obs_video_active(void);
  541. /** Sets the primary output source for a channel. */
  542. EXPORT void obs_set_output_source(uint32_t channel, obs_source_t *source);
  543. /**
  544. * Gets the primary output source for a channel and increments the reference
  545. * counter for that source. Use obs_source_release to release.
  546. */
  547. EXPORT obs_source_t *obs_get_output_source(uint32_t channel);
  548. /**
  549. * Enumerates all input sources
  550. *
  551. * Callback function returns true to continue enumeration, or false to end
  552. * enumeration.
  553. *
  554. * Use obs_source_get_ref or obs_source_get_weak_source if you want to retain
  555. * a reference after obs_enum_sources finishes
  556. */
  557. EXPORT void obs_enum_sources(bool (*enum_proc)(void *, obs_source_t *),
  558. void *param);
  559. /** Enumerates scenes */
  560. EXPORT void obs_enum_scenes(bool (*enum_proc)(void *, obs_source_t *),
  561. void *param);
  562. /** Enumerates all sources (regardless of type) */
  563. EXPORT void obs_enum_all_sources(bool (*enum_proc)(void *, obs_source_t *),
  564. void *param);
  565. /** Enumerates outputs */
  566. EXPORT void obs_enum_outputs(bool (*enum_proc)(void *, obs_output_t *),
  567. void *param);
  568. /** Enumerates encoders */
  569. EXPORT void obs_enum_encoders(bool (*enum_proc)(void *, obs_encoder_t *),
  570. void *param);
  571. /** Enumerates encoders */
  572. EXPORT void obs_enum_services(bool (*enum_proc)(void *, obs_service_t *),
  573. void *param);
  574. /**
  575. * Gets a source by its name.
  576. *
  577. * Increments the source reference counter, use obs_source_release to
  578. * release it when complete.
  579. */
  580. EXPORT obs_source_t *obs_get_source_by_name(const char *name);
  581. /**
  582. * Gets a source by its UUID.
  583. *
  584. * Increments the source reference counter, use obs_source_release to
  585. * release it when complete.
  586. */
  587. EXPORT obs_source_t *obs_get_source_by_uuid(const char *uuid);
  588. /** Get a transition source by its name. */
  589. EXPORT obs_source_t *obs_get_transition_by_name(const char *name);
  590. /** Get a transition source by its UUID. */
  591. EXPORT obs_source_t *obs_get_transition_by_uuid(const char *uuid);
  592. /** Gets an output by its name. */
  593. EXPORT obs_output_t *obs_get_output_by_name(const char *name);
  594. /** Gets an encoder by its name. */
  595. EXPORT obs_encoder_t *obs_get_encoder_by_name(const char *name);
  596. /** Gets an service by its name. */
  597. EXPORT obs_service_t *obs_get_service_by_name(const char *name);
  598. enum obs_base_effect {
  599. OBS_EFFECT_DEFAULT, /**< RGB/YUV */
  600. OBS_EFFECT_DEFAULT_RECT, /**< RGB/YUV (using texture_rect) */
  601. OBS_EFFECT_OPAQUE, /**< RGB/YUV (alpha set to 1.0) */
  602. OBS_EFFECT_SOLID, /**< RGB/YUV (solid color only) */
  603. OBS_EFFECT_BICUBIC, /**< Bicubic downscale */
  604. OBS_EFFECT_LANCZOS, /**< Lanczos downscale */
  605. OBS_EFFECT_BILINEAR_LOWRES, /**< Bilinear low resolution downscale */
  606. OBS_EFFECT_PREMULTIPLIED_ALPHA, /**< Premultiplied alpha */
  607. OBS_EFFECT_REPEAT, /**< RGB/YUV (repeating) */
  608. OBS_EFFECT_AREA, /**< Area rescale */
  609. };
  610. /** Returns a commonly used base effect */
  611. EXPORT gs_effect_t *obs_get_base_effect(enum obs_base_effect effect);
  612. #ifndef SWIG
  613. /* DEPRECATED: gets texture_rect default effect */
  614. OBS_DEPRECATED
  615. EXPORT gs_effect_t *obs_get_default_rect_effect(void);
  616. #endif
  617. /** Returns the primary obs signal handler */
  618. EXPORT signal_handler_t *obs_get_signal_handler(void);
  619. /** Returns the primary obs procedure handler */
  620. EXPORT proc_handler_t *obs_get_proc_handler(void);
  621. #ifndef SWIG
  622. /** Renders the main view */
  623. OBS_DEPRECATED
  624. EXPORT void obs_render_main_view(void);
  625. #endif
  626. /** Renders the last main output texture */
  627. EXPORT void obs_render_main_texture(void);
  628. /** Renders the last main output texture ignoring background color */
  629. EXPORT void obs_render_main_texture_src_color_only(void);
  630. /** Returns the last main output texture. This can return NULL if the texture
  631. * is unavailable. */
  632. EXPORT gs_texture_t *obs_get_main_texture(void);
  633. /** Sets the master user volume */
  634. OBS_DEPRECATED EXPORT void obs_set_master_volume(float volume);
  635. /** Gets the master user volume */
  636. OBS_DEPRECATED EXPORT float obs_get_master_volume(void);
  637. /** Saves a source to settings data */
  638. EXPORT obs_data_t *obs_save_source(obs_source_t *source);
  639. /** Loads a source from settings data */
  640. EXPORT obs_source_t *obs_load_source(obs_data_t *data);
  641. /** Loads a private source from settings data */
  642. EXPORT obs_source_t *obs_load_private_source(obs_data_t *data);
  643. /** Send a save signal to sources */
  644. EXPORT void obs_source_save(obs_source_t *source);
  645. /** Send a load signal to sources (soft deprecated; does not load filters) */
  646. EXPORT void obs_source_load(obs_source_t *source);
  647. /** Send a load signal to sources */
  648. EXPORT void obs_source_load2(obs_source_t *source);
  649. typedef void (*obs_load_source_cb)(void *private_data, obs_source_t *source);
  650. /** Loads sources from a data array */
  651. EXPORT void obs_load_sources(obs_data_array_t *array, obs_load_source_cb cb,
  652. void *private_data);
  653. /** Saves sources to a data array */
  654. EXPORT obs_data_array_t *obs_save_sources(void);
  655. typedef bool (*obs_save_source_filter_cb)(void *data, obs_source_t *source);
  656. EXPORT obs_data_array_t *obs_save_sources_filtered(obs_save_source_filter_cb cb,
  657. void *data);
  658. /** Reset source UUIDs. NOTE: this function is only to be used by the UI and
  659. * will be removed in a future version! */
  660. EXPORT void obs_reset_source_uuids(void);
  661. enum obs_obj_type {
  662. OBS_OBJ_TYPE_INVALID,
  663. OBS_OBJ_TYPE_SOURCE,
  664. OBS_OBJ_TYPE_OUTPUT,
  665. OBS_OBJ_TYPE_ENCODER,
  666. OBS_OBJ_TYPE_SERVICE,
  667. };
  668. EXPORT enum obs_obj_type obs_obj_get_type(void *obj);
  669. EXPORT const char *obs_obj_get_id(void *obj);
  670. EXPORT bool obs_obj_invalid(void *obj);
  671. EXPORT void *obs_obj_get_data(void *obj);
  672. EXPORT bool obs_obj_is_private(void *obj);
  673. typedef bool (*obs_enum_audio_device_cb)(void *data, const char *name,
  674. const char *id);
  675. EXPORT bool obs_audio_monitoring_available(void);
  676. EXPORT void obs_enum_audio_monitoring_devices(obs_enum_audio_device_cb cb,
  677. void *data);
  678. EXPORT bool obs_set_audio_monitoring_device(const char *name, const char *id);
  679. EXPORT void obs_get_audio_monitoring_device(const char **name, const char **id);
  680. EXPORT void obs_add_tick_callback(void (*tick)(void *param, float seconds),
  681. void *param);
  682. EXPORT void obs_remove_tick_callback(void (*tick)(void *param, float seconds),
  683. void *param);
  684. EXPORT void obs_add_main_render_callback(void (*draw)(void *param, uint32_t cx,
  685. uint32_t cy),
  686. void *param);
  687. EXPORT void obs_remove_main_render_callback(
  688. void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param);
  689. EXPORT void obs_add_main_rendered_callback(void (*rendered)(void *param),
  690. void *param);
  691. EXPORT void obs_remove_main_rendered_callback(void (*rendered)(void *param),
  692. void *param);
  693. EXPORT void obs_add_raw_video_callback(
  694. const struct video_scale_info *conversion,
  695. void (*callback)(void *param, struct video_data *frame), void *param);
  696. EXPORT void obs_remove_raw_video_callback(
  697. void (*callback)(void *param, struct video_data *frame), void *param);
  698. EXPORT void
  699. obs_add_raw_audio_callback(size_t mix_idx,
  700. const struct audio_convert_info *conversion,
  701. audio_output_callback_t callback, void *param);
  702. EXPORT void obs_remove_raw_audio_callback(size_t mix_idx,
  703. audio_output_callback_t callback,
  704. void *param);
  705. EXPORT uint64_t obs_get_video_frame_time(void);
  706. EXPORT double obs_get_active_fps(void);
  707. EXPORT uint64_t obs_get_average_frame_time_ns(void);
  708. EXPORT uint64_t obs_get_frame_interval_ns(void);
  709. EXPORT uint32_t obs_get_total_frames(void);
  710. EXPORT uint32_t obs_get_lagged_frames(void);
  711. EXPORT bool obs_nv12_tex_active(void);
  712. EXPORT bool obs_p010_tex_active(void);
  713. EXPORT void obs_apply_private_data(obs_data_t *settings);
  714. EXPORT void obs_set_private_data(obs_data_t *settings);
  715. EXPORT obs_data_t *obs_get_private_data(void);
  716. typedef void (*obs_task_t)(void *param);
  717. enum obs_task_type {
  718. OBS_TASK_UI,
  719. OBS_TASK_GRAPHICS,
  720. OBS_TASK_AUDIO,
  721. OBS_TASK_DESTROY,
  722. };
  723. EXPORT void obs_queue_task(enum obs_task_type type, obs_task_t task,
  724. void *param, bool wait);
  725. EXPORT bool obs_in_task_thread(enum obs_task_type type);
  726. EXPORT bool obs_wait_for_destroy_queue(void);
  727. typedef void (*obs_task_handler_t)(obs_task_t task, void *param, bool wait);
  728. EXPORT void obs_set_ui_task_handler(obs_task_handler_t handler);
  729. EXPORT obs_object_t *obs_object_get_ref(obs_object_t *object);
  730. EXPORT void obs_object_release(obs_object_t *object);
  731. EXPORT void obs_weak_object_addref(obs_weak_object_t *weak);
  732. EXPORT void obs_weak_object_release(obs_weak_object_t *weak);
  733. EXPORT obs_weak_object_t *obs_object_get_weak_object(obs_object_t *object);
  734. EXPORT obs_object_t *obs_weak_object_get_object(obs_weak_object_t *weak);
  735. EXPORT bool obs_weak_object_expired(obs_weak_object_t *weak);
  736. EXPORT bool obs_weak_object_references_object(obs_weak_object_t *weak,
  737. obs_object_t *object);
  738. /* ------------------------------------------------------------------------- */
  739. /* View context */
  740. /**
  741. * Creates a view context.
  742. *
  743. * A view can be used for things like separate previews, or drawing
  744. * sources separately.
  745. */
  746. EXPORT obs_view_t *obs_view_create(void);
  747. /** Destroys this view context */
  748. EXPORT void obs_view_destroy(obs_view_t *view);
  749. /** Sets the source to be used for this view context. */
  750. EXPORT void obs_view_set_source(obs_view_t *view, uint32_t channel,
  751. obs_source_t *source);
  752. /** Gets the source currently in use for this view context */
  753. EXPORT obs_source_t *obs_view_get_source(obs_view_t *view, uint32_t channel);
  754. /** Renders the sources of this view context */
  755. EXPORT void obs_view_render(obs_view_t *view);
  756. /** Adds a view to the main render loop, with current obs_get_video_info state */
  757. EXPORT video_t *obs_view_add(obs_view_t *view);
  758. /** Adds a view to the main render loop, with custom video settings */
  759. EXPORT video_t *obs_view_add2(obs_view_t *view, struct obs_video_info *ovi);
  760. /** Removes a view from the main render loop */
  761. EXPORT void obs_view_remove(obs_view_t *view);
  762. /** Gets the video settings currently in use for this view context, returns false if no video */
  763. EXPORT bool obs_view_get_video_info(obs_view_t *view,
  764. struct obs_video_info *ovi);
  765. /* ------------------------------------------------------------------------- */
  766. /* Display context */
  767. /**
  768. * Adds a new window display linked to the main render pipeline. This creates
  769. * a new swap chain which updates every frame.
  770. *
  771. * @param graphics_data The swap chain initialization data.
  772. * @return The new display context, or NULL if failed.
  773. */
  774. EXPORT obs_display_t *
  775. obs_display_create(const struct gs_init_data *graphics_data,
  776. uint32_t backround_color);
  777. /** Destroys a display context */
  778. EXPORT void obs_display_destroy(obs_display_t *display);
  779. /** Changes the size of this display */
  780. EXPORT void obs_display_resize(obs_display_t *display, uint32_t cx,
  781. uint32_t cy);
  782. /** Updates the color space of this display */
  783. EXPORT void obs_display_update_color_space(obs_display_t *display);
  784. /**
  785. * Adds a draw callback for this display context
  786. *
  787. * @param display The display context.
  788. * @param draw The draw callback which is called each time a frame
  789. * updates.
  790. * @param param The user data to be associated with this draw callback.
  791. */
  792. EXPORT void obs_display_add_draw_callback(obs_display_t *display,
  793. void (*draw)(void *param, uint32_t cx,
  794. uint32_t cy),
  795. void *param);
  796. /** Removes a draw callback for this display context */
  797. EXPORT void obs_display_remove_draw_callback(
  798. obs_display_t *display,
  799. void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param);
  800. EXPORT void obs_display_set_enabled(obs_display_t *display, bool enable);
  801. EXPORT bool obs_display_enabled(obs_display_t *display);
  802. EXPORT void obs_display_set_background_color(obs_display_t *display,
  803. uint32_t color);
  804. EXPORT void obs_display_size(obs_display_t *display, uint32_t *width,
  805. uint32_t *height);
  806. /* ------------------------------------------------------------------------- */
  807. /* Sources */
  808. /** Returns the translated display name of a source */
  809. EXPORT const char *obs_source_get_display_name(const char *id);
  810. /**
  811. * Creates a source of the specified type with the specified settings.
  812. *
  813. * The "source" context is used for anything related to presenting
  814. * or modifying video/audio. Use obs_source_release to release it.
  815. */
  816. EXPORT obs_source_t *obs_source_create(const char *id, const char *name,
  817. obs_data_t *settings,
  818. obs_data_t *hotkey_data);
  819. EXPORT obs_source_t *obs_source_create_private(const char *id, const char *name,
  820. obs_data_t *settings);
  821. /* if source has OBS_SOURCE_DO_NOT_DUPLICATE output flag set, only returns a
  822. * reference */
  823. EXPORT obs_source_t *obs_source_duplicate(obs_source_t *source,
  824. const char *desired_name,
  825. bool create_private);
  826. /**
  827. * Adds/releases a reference to a source. When the last reference is
  828. * released, the source is destroyed.
  829. */
  830. OBS_EXTERNAL_DEPRECATED EXPORT void obs_source_addref(obs_source_t *source);
  831. EXPORT void obs_source_release(obs_source_t *source);
  832. EXPORT void obs_weak_source_addref(obs_weak_source_t *weak);
  833. EXPORT void obs_weak_source_release(obs_weak_source_t *weak);
  834. EXPORT obs_source_t *obs_source_get_ref(obs_source_t *source);
  835. EXPORT obs_weak_source_t *obs_source_get_weak_source(obs_source_t *source);
  836. EXPORT obs_source_t *obs_weak_source_get_source(obs_weak_source_t *weak);
  837. EXPORT bool obs_weak_source_expired(obs_weak_source_t *weak);
  838. EXPORT bool obs_weak_source_references_source(obs_weak_source_t *weak,
  839. obs_source_t *source);
  840. /** Notifies all references that the source should be released */
  841. EXPORT void obs_source_remove(obs_source_t *source);
  842. /** Returns true if the source should be released */
  843. EXPORT bool obs_source_removed(const obs_source_t *source);
  844. /** The 'hidden' flag is not the same as a sceneitem's visibility. It is a
  845. * property the determines if it can be found through searches. **/
  846. /** Simply sets a 'hidden' flag when the source is still alive but shouldn't be found */
  847. EXPORT void obs_source_set_hidden(obs_source_t *source, bool hidden);
  848. /** Returns the current 'hidden' state on the source */
  849. EXPORT bool obs_source_is_hidden(obs_source_t *source);
  850. /** Returns capability flags of a source */
  851. EXPORT uint32_t obs_source_get_output_flags(const obs_source_t *source);
  852. /** Returns capability flags of a source type */
  853. EXPORT uint32_t obs_get_source_output_flags(const char *id);
  854. /** Gets the default settings for a source type */
  855. EXPORT obs_data_t *obs_get_source_defaults(const char *id);
  856. /** Returns the property list, if any. Free with obs_properties_destroy */
  857. EXPORT obs_properties_t *obs_get_source_properties(const char *id);
  858. EXPORT obs_missing_files_t *
  859. obs_source_get_missing_files(const obs_source_t *source);
  860. EXPORT void obs_source_replace_missing_file(obs_missing_file_cb cb,
  861. obs_source_t *source,
  862. const char *new_path, void *data);
  863. /** Returns whether the source has custom properties or not */
  864. EXPORT bool obs_is_source_configurable(const char *id);
  865. EXPORT bool obs_source_configurable(const obs_source_t *source);
  866. /**
  867. * Returns the properties list for a specific existing source. Free with
  868. * obs_properties_destroy
  869. */
  870. EXPORT obs_properties_t *obs_source_properties(const obs_source_t *source);
  871. /** Updates settings for this source */
  872. EXPORT void obs_source_update(obs_source_t *source, obs_data_t *settings);
  873. EXPORT void obs_source_reset_settings(obs_source_t *source,
  874. obs_data_t *settings);
  875. /** Renders a video source. */
  876. EXPORT void obs_source_video_render(obs_source_t *source);
  877. /** Gets the width of a source (if it has video) */
  878. EXPORT uint32_t obs_source_get_width(obs_source_t *source);
  879. /** Gets the height of a source (if it has video) */
  880. EXPORT uint32_t obs_source_get_height(obs_source_t *source);
  881. /** Gets the color space of a source (if it has video) */
  882. EXPORT enum gs_color_space
  883. obs_source_get_color_space(obs_source_t *source, size_t count,
  884. const enum gs_color_space *preferred_spaces);
  885. /** Hints whether or not the source will blend texels */
  886. EXPORT bool obs_source_get_texcoords_centered(obs_source_t *source);
  887. /**
  888. * If the source is a filter, returns the parent source of the filter. Only
  889. * guaranteed to be valid inside of the video_render, filter_audio,
  890. * filter_video, and filter_remove callbacks.
  891. */
  892. EXPORT obs_source_t *obs_filter_get_parent(const obs_source_t *filter);
  893. /**
  894. * If the source is a filter, returns the target source of the filter. Only
  895. * guaranteed to be valid inside of the video_render, filter_audio,
  896. * filter_video, and filter_remove callbacks.
  897. */
  898. EXPORT obs_source_t *obs_filter_get_target(const obs_source_t *filter);
  899. /** Used to directly render a non-async source without any filter processing */
  900. EXPORT void obs_source_default_render(obs_source_t *source);
  901. /** Adds a filter to the source (which is used whenever the source is used) */
  902. EXPORT void obs_source_filter_add(obs_source_t *source, obs_source_t *filter);
  903. /** Removes a filter from the source */
  904. EXPORT void obs_source_filter_remove(obs_source_t *source,
  905. obs_source_t *filter);
  906. /** Modifies the order of a specific filter */
  907. EXPORT void obs_source_filter_set_order(obs_source_t *source,
  908. obs_source_t *filter,
  909. enum obs_order_movement movement);
  910. /** Gets the settings string for a source */
  911. EXPORT obs_data_t *obs_source_get_settings(const obs_source_t *source);
  912. /** Gets the name of a source */
  913. EXPORT const char *obs_source_get_name(const obs_source_t *source);
  914. /** Sets the name of a source */
  915. EXPORT void obs_source_set_name(obs_source_t *source, const char *name);
  916. /** Gets the UUID of a source */
  917. EXPORT const char *obs_source_get_uuid(const obs_source_t *source);
  918. /** Gets the source type */
  919. EXPORT enum obs_source_type obs_source_get_type(const obs_source_t *source);
  920. /** Gets the source identifier */
  921. EXPORT const char *obs_source_get_id(const obs_source_t *source);
  922. EXPORT const char *obs_source_get_unversioned_id(const obs_source_t *source);
  923. /** Returns the signal handler for a source */
  924. EXPORT signal_handler_t *
  925. obs_source_get_signal_handler(const obs_source_t *source);
  926. /** Returns the procedure handler for a source */
  927. EXPORT proc_handler_t *obs_source_get_proc_handler(const obs_source_t *source);
  928. /** Sets the user volume for a source that has audio output */
  929. EXPORT void obs_source_set_volume(obs_source_t *source, float volume);
  930. /** Gets the user volume for a source that has audio output */
  931. EXPORT float obs_source_get_volume(const obs_source_t *source);
  932. /* Gets speaker layout of a source */
  933. EXPORT enum speaker_layout obs_source_get_speaker_layout(obs_source_t *source);
  934. /** Sets the balance value for a stereo audio source */
  935. EXPORT void obs_source_set_balance_value(obs_source_t *source, float balance);
  936. /** Gets the balance value for a stereo audio source */
  937. EXPORT float obs_source_get_balance_value(const obs_source_t *source);
  938. /** Sets the audio sync offset (in nanoseconds) for a source */
  939. EXPORT void obs_source_set_sync_offset(obs_source_t *source, int64_t offset);
  940. /** Gets the audio sync offset (in nanoseconds) for a source */
  941. EXPORT int64_t obs_source_get_sync_offset(const obs_source_t *source);
  942. /** Enumerates active child sources used by this source */
  943. EXPORT void obs_source_enum_active_sources(obs_source_t *source,
  944. obs_source_enum_proc_t enum_callback,
  945. void *param);
  946. /** Enumerates the entire active child source tree used by this source */
  947. EXPORT void obs_source_enum_active_tree(obs_source_t *source,
  948. obs_source_enum_proc_t enum_callback,
  949. void *param);
  950. EXPORT void obs_source_enum_full_tree(obs_source_t *source,
  951. obs_source_enum_proc_t enum_callback,
  952. void *param);
  953. /** Returns true if active, false if not */
  954. EXPORT bool obs_source_active(const obs_source_t *source);
  955. /**
  956. * Returns true if currently displayed somewhere (active or not), false if not
  957. */
  958. EXPORT bool obs_source_showing(const obs_source_t *source);
  959. /** Unused flag */
  960. #define OBS_SOURCE_FLAG_UNUSED_1 (1 << 0)
  961. /** Specifies to force audio to mono */
  962. #define OBS_SOURCE_FLAG_FORCE_MONO (1 << 1)
  963. /**
  964. * Sets source flags. Note that these are different from the main output
  965. * flags. These are generally things that can be set by the source or user,
  966. * while the output flags are more used to determine capabilities of a source.
  967. */
  968. EXPORT void obs_source_set_flags(obs_source_t *source, uint32_t flags);
  969. /** Gets source flags. */
  970. EXPORT uint32_t obs_source_get_flags(const obs_source_t *source);
  971. /**
  972. * Sets audio mixer flags. These flags are used to specify which mixers
  973. * the source's audio should be applied to.
  974. */
  975. EXPORT void obs_source_set_audio_mixers(obs_source_t *source, uint32_t mixers);
  976. /** Gets audio mixer flags */
  977. EXPORT uint32_t obs_source_get_audio_mixers(const obs_source_t *source);
  978. /**
  979. * Increments the 'showing' reference counter to indicate that the source is
  980. * being shown somewhere. If the reference counter was 0, will call the 'show'
  981. * callback.
  982. */
  983. EXPORT void obs_source_inc_showing(obs_source_t *source);
  984. /**
  985. * Increments the 'active' reference counter to indicate that the source is
  986. * fully active. If the reference counter was 0, will call the 'activate'
  987. * callback.
  988. *
  989. * Unlike obs_source_inc_showing, this will cause children of this source to be
  990. * considered showing as well (currently used by transition previews to make
  991. * the stinger transition show correctly). obs_source_inc_showing should
  992. * generally be used instead.
  993. */
  994. EXPORT void obs_source_inc_active(obs_source_t *source);
  995. /**
  996. * Decrements the 'showing' reference counter to indicate that the source is
  997. * no longer being shown somewhere. If the reference counter is set to 0,
  998. * will call the 'hide' callback
  999. */
  1000. EXPORT void obs_source_dec_showing(obs_source_t *source);
  1001. /**
  1002. * Decrements the 'active' reference counter to indicate that the source is no
  1003. * longer fully active. If the reference counter is set to 0, will call the
  1004. * 'deactivate' callback
  1005. *
  1006. * Unlike obs_source_dec_showing, this will cause children of this source to be
  1007. * considered not showing as well. obs_source_dec_showing should generally be
  1008. * used instead.
  1009. */
  1010. EXPORT void obs_source_dec_active(obs_source_t *source);
  1011. /** Enumerates filters assigned to the source */
  1012. EXPORT void obs_source_enum_filters(obs_source_t *source,
  1013. obs_source_enum_proc_t callback,
  1014. void *param);
  1015. /** Gets a filter of a source by its display name. */
  1016. EXPORT obs_source_t *obs_source_get_filter_by_name(obs_source_t *source,
  1017. const char *name);
  1018. /** Gets the number of filters the source has. */
  1019. EXPORT size_t obs_source_filter_count(const obs_source_t *source);
  1020. EXPORT void obs_source_copy_filters(obs_source_t *dst, obs_source_t *src);
  1021. EXPORT void obs_source_copy_single_filter(obs_source_t *dst,
  1022. obs_source_t *filter);
  1023. EXPORT bool obs_source_enabled(const obs_source_t *source);
  1024. EXPORT void obs_source_set_enabled(obs_source_t *source, bool enabled);
  1025. EXPORT bool obs_source_muted(const obs_source_t *source);
  1026. EXPORT void obs_source_set_muted(obs_source_t *source, bool muted);
  1027. EXPORT bool obs_source_push_to_mute_enabled(obs_source_t *source);
  1028. EXPORT void obs_source_enable_push_to_mute(obs_source_t *source, bool enabled);
  1029. EXPORT uint64_t obs_source_get_push_to_mute_delay(obs_source_t *source);
  1030. EXPORT void obs_source_set_push_to_mute_delay(obs_source_t *source,
  1031. uint64_t delay);
  1032. EXPORT bool obs_source_push_to_talk_enabled(obs_source_t *source);
  1033. EXPORT void obs_source_enable_push_to_talk(obs_source_t *source, bool enabled);
  1034. EXPORT uint64_t obs_source_get_push_to_talk_delay(obs_source_t *source);
  1035. EXPORT void obs_source_set_push_to_talk_delay(obs_source_t *source,
  1036. uint64_t delay);
  1037. typedef void (*obs_source_audio_capture_t)(void *param, obs_source_t *source,
  1038. const struct audio_data *audio_data,
  1039. bool muted);
  1040. EXPORT void obs_source_add_audio_capture_callback(
  1041. obs_source_t *source, obs_source_audio_capture_t callback, void *param);
  1042. EXPORT void obs_source_remove_audio_capture_callback(
  1043. obs_source_t *source, obs_source_audio_capture_t callback, void *param);
  1044. typedef void (*obs_source_caption_t)(void *param, obs_source_t *source,
  1045. const struct obs_source_cea_708 *captions);
  1046. EXPORT void obs_source_add_caption_callback(obs_source_t *source,
  1047. obs_source_caption_t callback,
  1048. void *param);
  1049. EXPORT void obs_source_remove_caption_callback(obs_source_t *source,
  1050. obs_source_caption_t callback,
  1051. void *param);
  1052. enum obs_deinterlace_mode {
  1053. OBS_DEINTERLACE_MODE_DISABLE,
  1054. OBS_DEINTERLACE_MODE_DISCARD,
  1055. OBS_DEINTERLACE_MODE_RETRO,
  1056. OBS_DEINTERLACE_MODE_BLEND,
  1057. OBS_DEINTERLACE_MODE_BLEND_2X,
  1058. OBS_DEINTERLACE_MODE_LINEAR,
  1059. OBS_DEINTERLACE_MODE_LINEAR_2X,
  1060. OBS_DEINTERLACE_MODE_YADIF,
  1061. OBS_DEINTERLACE_MODE_YADIF_2X,
  1062. };
  1063. enum obs_deinterlace_field_order {
  1064. OBS_DEINTERLACE_FIELD_ORDER_TOP,
  1065. OBS_DEINTERLACE_FIELD_ORDER_BOTTOM,
  1066. };
  1067. EXPORT void obs_source_set_deinterlace_mode(obs_source_t *source,
  1068. enum obs_deinterlace_mode mode);
  1069. EXPORT enum obs_deinterlace_mode
  1070. obs_source_get_deinterlace_mode(const obs_source_t *source);
  1071. EXPORT void obs_source_set_deinterlace_field_order(
  1072. obs_source_t *source, enum obs_deinterlace_field_order field_order);
  1073. EXPORT enum obs_deinterlace_field_order
  1074. obs_source_get_deinterlace_field_order(const obs_source_t *source);
  1075. enum obs_monitoring_type {
  1076. OBS_MONITORING_TYPE_NONE,
  1077. OBS_MONITORING_TYPE_MONITOR_ONLY,
  1078. OBS_MONITORING_TYPE_MONITOR_AND_OUTPUT,
  1079. };
  1080. EXPORT void obs_source_set_monitoring_type(obs_source_t *source,
  1081. enum obs_monitoring_type type);
  1082. EXPORT enum obs_monitoring_type
  1083. obs_source_get_monitoring_type(const obs_source_t *source);
  1084. /** Gets private front-end settings data. This data is saved/loaded
  1085. * automatically. Returns an incremented reference. */
  1086. EXPORT obs_data_t *obs_source_get_private_settings(obs_source_t *item);
  1087. EXPORT obs_data_array_t *obs_source_backup_filters(obs_source_t *source);
  1088. EXPORT void obs_source_restore_filters(obs_source_t *source,
  1089. obs_data_array_t *array);
  1090. /* ------------------------------------------------------------------------- */
  1091. /* Functions used by sources */
  1092. EXPORT void *obs_source_get_type_data(obs_source_t *source);
  1093. /**
  1094. * Helper function to set the color matrix information when drawing the source.
  1095. *
  1096. * @param color_matrix The color matrix. Assigns to the 'color_matrix'
  1097. * effect variable.
  1098. * @param color_range_min The minimum color range. Assigns to the
  1099. * 'color_range_min' effect variable. If NULL,
  1100. * {0.0f, 0.0f, 0.0f} is used.
  1101. * @param color_range_max The maximum color range. Assigns to the
  1102. * 'color_range_max' effect variable. If NULL,
  1103. * {1.0f, 1.0f, 1.0f} is used.
  1104. */
  1105. EXPORT void
  1106. obs_source_draw_set_color_matrix(const struct matrix4 *color_matrix,
  1107. const struct vec3 *color_range_min,
  1108. const struct vec3 *color_range_max);
  1109. /**
  1110. * Helper function to draw sprites for a source (synchronous video).
  1111. *
  1112. * @param image The sprite texture to draw. Assigns to the 'image' variable
  1113. * of the current effect.
  1114. * @param x X position of the sprite.
  1115. * @param y Y position of the sprite.
  1116. * @param cx Width of the sprite. If 0, uses the texture width.
  1117. * @param cy Height of the sprite. If 0, uses the texture height.
  1118. * @param flip Specifies whether to flip the image vertically.
  1119. */
  1120. EXPORT void obs_source_draw(gs_texture_t *image, int x, int y, uint32_t cx,
  1121. uint32_t cy, bool flip);
  1122. /**
  1123. * Outputs asynchronous video data. Set to NULL to deactivate the texture
  1124. *
  1125. * NOTE: Non-YUV formats will always be treated as full range with this
  1126. * function! Use obs_source_output_video2 instead if partial range support is
  1127. * desired for non-YUV video formats.
  1128. */
  1129. EXPORT void obs_source_output_video(obs_source_t *source,
  1130. const struct obs_source_frame *frame);
  1131. EXPORT void obs_source_output_video2(obs_source_t *source,
  1132. const struct obs_source_frame2 *frame);
  1133. EXPORT void obs_source_set_async_rotation(obs_source_t *source, long rotation);
  1134. EXPORT void obs_source_output_cea708(obs_source_t *source,
  1135. const struct obs_source_cea_708 *captions);
  1136. /**
  1137. * Preloads asynchronous video data to allow instantaneous playback
  1138. *
  1139. * NOTE: Non-YUV formats will always be treated as full range with this
  1140. * function! Use obs_source_preload_video2 instead if partial range support is
  1141. * desired for non-YUV video formats.
  1142. */
  1143. EXPORT void obs_source_preload_video(obs_source_t *source,
  1144. const struct obs_source_frame *frame);
  1145. EXPORT void obs_source_preload_video2(obs_source_t *source,
  1146. const struct obs_source_frame2 *frame);
  1147. /** Shows any preloaded video data */
  1148. EXPORT void obs_source_show_preloaded_video(obs_source_t *source);
  1149. /**
  1150. * Sets current async video frame immediately
  1151. *
  1152. * NOTE: Non-YUV formats will always be treated as full range with this
  1153. * function! Use obs_source_preload_video2 instead if partial range support is
  1154. * desired for non-YUV video formats.
  1155. */
  1156. EXPORT void obs_source_set_video_frame(obs_source_t *source,
  1157. const struct obs_source_frame *frame);
  1158. EXPORT void obs_source_set_video_frame2(obs_source_t *source,
  1159. const struct obs_source_frame2 *frame);
  1160. /** Outputs audio data (always asynchronous) */
  1161. EXPORT void obs_source_output_audio(obs_source_t *source,
  1162. const struct obs_source_audio *audio);
  1163. /** Signal an update to any currently used properties via 'update_properties' */
  1164. EXPORT void obs_source_update_properties(obs_source_t *source);
  1165. /** Gets the current async video frame */
  1166. EXPORT struct obs_source_frame *obs_source_get_frame(obs_source_t *source);
  1167. /** Releases the current async video frame */
  1168. EXPORT void obs_source_release_frame(obs_source_t *source,
  1169. struct obs_source_frame *frame);
  1170. /**
  1171. * Default RGB filter handler for generic effect filters. Processes the
  1172. * filter chain and renders them to texture if needed, then the filter is
  1173. * drawn with
  1174. *
  1175. * After calling this, set your parameters for the effect, then call
  1176. * obs_source_process_filter_end to draw the filter.
  1177. *
  1178. * Returns true if filtering should continue, false if the filter is bypassed
  1179. * for whatever reason.
  1180. */
  1181. EXPORT bool
  1182. obs_source_process_filter_begin(obs_source_t *filter,
  1183. enum gs_color_format format,
  1184. enum obs_allow_direct_render allow_direct);
  1185. EXPORT bool obs_source_process_filter_begin_with_color_space(
  1186. obs_source_t *filter, enum gs_color_format format,
  1187. enum gs_color_space space, enum obs_allow_direct_render allow_direct);
  1188. /**
  1189. * Draws the filter.
  1190. *
  1191. * Before calling this function, first call obs_source_process_filter_begin and
  1192. * then set the effect parameters, and then call this function to finalize the
  1193. * filter.
  1194. */
  1195. EXPORT void obs_source_process_filter_end(obs_source_t *filter,
  1196. gs_effect_t *effect, uint32_t width,
  1197. uint32_t height);
  1198. /**
  1199. * Draws the filter with a specific technique.
  1200. *
  1201. * Before calling this function, first call obs_source_process_filter_begin and
  1202. * then set the effect parameters, and then call this function to finalize the
  1203. * filter.
  1204. */
  1205. EXPORT void obs_source_process_filter_tech_end(obs_source_t *filter,
  1206. gs_effect_t *effect,
  1207. uint32_t width, uint32_t height,
  1208. const char *tech_name);
  1209. /** Skips the filter if the filter is invalid and cannot be rendered */
  1210. EXPORT void obs_source_skip_video_filter(obs_source_t *filter);
  1211. /**
  1212. * Adds an active child source. Must be called by parent sources on child
  1213. * sources when the child is added and active. This ensures that the source is
  1214. * properly activated if the parent is active.
  1215. *
  1216. * @returns true if source can be added, false if it causes recursion
  1217. */
  1218. EXPORT bool obs_source_add_active_child(obs_source_t *parent,
  1219. obs_source_t *child);
  1220. /**
  1221. * Removes an active child source. Must be called by parent sources on child
  1222. * sources when the child is removed or inactive. This ensures that the source
  1223. * is properly deactivated if the parent is no longer active.
  1224. */
  1225. EXPORT void obs_source_remove_active_child(obs_source_t *parent,
  1226. obs_source_t *child);
  1227. /** Sends a mouse down/up event to a source */
  1228. EXPORT void obs_source_send_mouse_click(obs_source_t *source,
  1229. const struct obs_mouse_event *event,
  1230. int32_t type, bool mouse_up,
  1231. uint32_t click_count);
  1232. /** Sends a mouse move event to a source. */
  1233. EXPORT void obs_source_send_mouse_move(obs_source_t *source,
  1234. const struct obs_mouse_event *event,
  1235. bool mouse_leave);
  1236. /** Sends a mouse wheel event to a source */
  1237. EXPORT void obs_source_send_mouse_wheel(obs_source_t *source,
  1238. const struct obs_mouse_event *event,
  1239. int x_delta, int y_delta);
  1240. /** Sends a got-focus or lost-focus event to a source */
  1241. EXPORT void obs_source_send_focus(obs_source_t *source, bool focus);
  1242. /** Sends a key up/down event to a source */
  1243. EXPORT void obs_source_send_key_click(obs_source_t *source,
  1244. const struct obs_key_event *event,
  1245. bool key_up);
  1246. /** Sets the default source flags. */
  1247. EXPORT void obs_source_set_default_flags(obs_source_t *source, uint32_t flags);
  1248. /** Gets the base width for a source (not taking in to account filtering) */
  1249. EXPORT uint32_t obs_source_get_base_width(obs_source_t *source);
  1250. /** Gets the base height for a source (not taking in to account filtering) */
  1251. EXPORT uint32_t obs_source_get_base_height(obs_source_t *source);
  1252. EXPORT bool obs_source_audio_pending(const obs_source_t *source);
  1253. EXPORT uint64_t obs_source_get_audio_timestamp(const obs_source_t *source);
  1254. EXPORT void obs_source_get_audio_mix(const obs_source_t *source,
  1255. struct obs_source_audio_mix *audio);
  1256. EXPORT void obs_source_set_async_unbuffered(obs_source_t *source,
  1257. bool unbuffered);
  1258. EXPORT bool obs_source_async_unbuffered(const obs_source_t *source);
  1259. /** Used to decouple audio from video so that audio doesn't attempt to sync up
  1260. * with video. I.E. Audio acts independently. Only works when in unbuffered
  1261. * mode. */
  1262. EXPORT void obs_source_set_async_decoupled(obs_source_t *source, bool decouple);
  1263. EXPORT bool obs_source_async_decoupled(const obs_source_t *source);
  1264. EXPORT void obs_source_set_audio_active(obs_source_t *source, bool show);
  1265. EXPORT bool obs_source_audio_active(const obs_source_t *source);
  1266. EXPORT uint32_t obs_source_get_last_obs_version(const obs_source_t *source);
  1267. /** Media controls */
  1268. EXPORT void obs_source_media_play_pause(obs_source_t *source, bool pause);
  1269. EXPORT void obs_source_media_restart(obs_source_t *source);
  1270. EXPORT void obs_source_media_stop(obs_source_t *source);
  1271. EXPORT void obs_source_media_next(obs_source_t *source);
  1272. EXPORT void obs_source_media_previous(obs_source_t *source);
  1273. EXPORT int64_t obs_source_media_get_duration(obs_source_t *source);
  1274. EXPORT int64_t obs_source_media_get_time(obs_source_t *source);
  1275. EXPORT void obs_source_media_set_time(obs_source_t *source, int64_t ms);
  1276. EXPORT enum obs_media_state obs_source_media_get_state(obs_source_t *source);
  1277. EXPORT void obs_source_media_started(obs_source_t *source);
  1278. EXPORT void obs_source_media_ended(obs_source_t *source);
  1279. /* ------------------------------------------------------------------------- */
  1280. /* Transition-specific functions */
  1281. enum obs_transition_target {
  1282. OBS_TRANSITION_SOURCE_A,
  1283. OBS_TRANSITION_SOURCE_B,
  1284. };
  1285. EXPORT obs_source_t *
  1286. obs_transition_get_source(obs_source_t *transition,
  1287. enum obs_transition_target target);
  1288. EXPORT void obs_transition_clear(obs_source_t *transition);
  1289. EXPORT obs_source_t *obs_transition_get_active_source(obs_source_t *transition);
  1290. enum obs_transition_mode {
  1291. OBS_TRANSITION_MODE_AUTO,
  1292. OBS_TRANSITION_MODE_MANUAL,
  1293. };
  1294. EXPORT bool obs_transition_start(obs_source_t *transition,
  1295. enum obs_transition_mode mode,
  1296. uint32_t duration_ms, obs_source_t *dest);
  1297. EXPORT void obs_transition_set(obs_source_t *transition, obs_source_t *source);
  1298. EXPORT void obs_transition_set_manual_time(obs_source_t *transition, float t);
  1299. EXPORT void obs_transition_set_manual_torque(obs_source_t *transition,
  1300. float torque, float clamp);
  1301. enum obs_transition_scale_type {
  1302. OBS_TRANSITION_SCALE_MAX_ONLY,
  1303. OBS_TRANSITION_SCALE_ASPECT,
  1304. OBS_TRANSITION_SCALE_STRETCH,
  1305. };
  1306. EXPORT void obs_transition_set_scale_type(obs_source_t *transition,
  1307. enum obs_transition_scale_type type);
  1308. EXPORT enum obs_transition_scale_type
  1309. obs_transition_get_scale_type(const obs_source_t *transition);
  1310. EXPORT void obs_transition_set_alignment(obs_source_t *transition,
  1311. uint32_t alignment);
  1312. EXPORT uint32_t obs_transition_get_alignment(const obs_source_t *transition);
  1313. EXPORT void obs_transition_set_size(obs_source_t *transition, uint32_t cx,
  1314. uint32_t cy);
  1315. EXPORT void obs_transition_get_size(const obs_source_t *transition,
  1316. uint32_t *cx, uint32_t *cy);
  1317. /* function used by transitions */
  1318. /**
  1319. * Enables fixed transitions (videos or specific types of transitions that
  1320. * are of fixed duration and linearly interpolated
  1321. */
  1322. EXPORT void obs_transition_enable_fixed(obs_source_t *transition, bool enable,
  1323. uint32_t duration_ms);
  1324. EXPORT bool obs_transition_fixed(obs_source_t *transition);
  1325. typedef void (*obs_transition_video_render_callback_t)(void *data,
  1326. gs_texture_t *a,
  1327. gs_texture_t *b, float t,
  1328. uint32_t cx,
  1329. uint32_t cy);
  1330. typedef float (*obs_transition_audio_mix_callback_t)(void *data, float t);
  1331. EXPORT float obs_transition_get_time(obs_source_t *transition);
  1332. EXPORT void obs_transition_force_stop(obs_source_t *transition);
  1333. EXPORT void
  1334. obs_transition_video_render(obs_source_t *transition,
  1335. obs_transition_video_render_callback_t callback);
  1336. EXPORT void
  1337. obs_transition_video_render2(obs_source_t *transition,
  1338. obs_transition_video_render_callback_t callback,
  1339. gs_texture_t *placeholder_texture);
  1340. EXPORT enum gs_color_space
  1341. obs_transition_video_get_color_space(obs_source_t *transition);
  1342. /** Directly renders its sub-source instead of to texture. Returns false if no
  1343. * longer transitioning */
  1344. EXPORT bool
  1345. obs_transition_video_render_direct(obs_source_t *transition,
  1346. enum obs_transition_target target);
  1347. EXPORT bool
  1348. obs_transition_audio_render(obs_source_t *transition, uint64_t *ts_out,
  1349. struct obs_source_audio_mix *audio, uint32_t mixers,
  1350. size_t channels, size_t sample_rate,
  1351. obs_transition_audio_mix_callback_t mix_a_callback,
  1352. obs_transition_audio_mix_callback_t mix_b_callback);
  1353. /* swaps transition sources and textures as an optimization and to reduce
  1354. * memory usage when switching between transitions */
  1355. EXPORT void obs_transition_swap_begin(obs_source_t *tr_dest,
  1356. obs_source_t *tr_source);
  1357. EXPORT void obs_transition_swap_end(obs_source_t *tr_dest,
  1358. obs_source_t *tr_source);
  1359. /* ------------------------------------------------------------------------- */
  1360. /* Scenes */
  1361. /**
  1362. * Creates a scene.
  1363. *
  1364. * A scene is a source which is a container of other sources with specific
  1365. * display orientations. Scenes can also be used like any other source.
  1366. */
  1367. EXPORT obs_scene_t *obs_scene_create(const char *name);
  1368. EXPORT obs_scene_t *obs_scene_create_private(const char *name);
  1369. enum obs_scene_duplicate_type {
  1370. OBS_SCENE_DUP_REFS, /**< Source refs only */
  1371. OBS_SCENE_DUP_COPY, /**< Fully duplicate */
  1372. OBS_SCENE_DUP_PRIVATE_REFS, /**< Source refs only (as private) */
  1373. OBS_SCENE_DUP_PRIVATE_COPY, /**< Fully duplicate (as private) */
  1374. };
  1375. /**
  1376. * Duplicates a scene.
  1377. */
  1378. EXPORT obs_scene_t *obs_scene_duplicate(obs_scene_t *scene, const char *name,
  1379. enum obs_scene_duplicate_type type);
  1380. OBS_EXTERNAL_DEPRECATED EXPORT void obs_scene_addref(obs_scene_t *scene);
  1381. EXPORT void obs_scene_release(obs_scene_t *scene);
  1382. EXPORT obs_scene_t *obs_scene_get_ref(obs_scene_t *scene);
  1383. /** Gets the scene's source context */
  1384. EXPORT obs_source_t *obs_scene_get_source(const obs_scene_t *scene);
  1385. /** Gets the scene from its source, or NULL if not a scene */
  1386. EXPORT obs_scene_t *obs_scene_from_source(const obs_source_t *source);
  1387. /** Determines whether a source is within a scene */
  1388. EXPORT obs_sceneitem_t *obs_scene_find_source(obs_scene_t *scene,
  1389. const char *name);
  1390. EXPORT obs_sceneitem_t *obs_scene_find_source_recursive(obs_scene_t *scene,
  1391. const char *name);
  1392. EXPORT obs_sceneitem_t *obs_scene_find_sceneitem_by_id(obs_scene_t *scene,
  1393. int64_t id);
  1394. /** Gets scene by name, increments the reference */
  1395. static inline obs_scene_t *obs_get_scene_by_name(const char *name)
  1396. {
  1397. obs_source_t *source = obs_get_source_by_name(name);
  1398. obs_scene_t *scene = obs_scene_from_source(source);
  1399. if (!scene) {
  1400. obs_source_release(source);
  1401. return NULL;
  1402. }
  1403. return scene;
  1404. }
  1405. /** Enumerates sources within a scene */
  1406. EXPORT void obs_scene_enum_items(obs_scene_t *scene,
  1407. bool (*callback)(obs_scene_t *,
  1408. obs_sceneitem_t *, void *),
  1409. void *param);
  1410. EXPORT bool obs_scene_reorder_items(obs_scene_t *scene,
  1411. obs_sceneitem_t *const *item_order,
  1412. size_t item_order_size);
  1413. struct obs_sceneitem_order_info {
  1414. obs_sceneitem_t *group;
  1415. obs_sceneitem_t *item;
  1416. };
  1417. EXPORT bool
  1418. obs_scene_reorder_items2(obs_scene_t *scene,
  1419. struct obs_sceneitem_order_info *item_order,
  1420. size_t item_order_size);
  1421. EXPORT bool obs_source_is_scene(const obs_source_t *source);
  1422. /** Adds/creates a new scene item for a source */
  1423. EXPORT obs_sceneitem_t *obs_scene_add(obs_scene_t *scene, obs_source_t *source);
  1424. typedef void (*obs_scene_atomic_update_func)(void *, obs_scene_t *scene);
  1425. EXPORT void obs_scene_atomic_update(obs_scene_t *scene,
  1426. obs_scene_atomic_update_func func,
  1427. void *data);
  1428. EXPORT void obs_sceneitem_addref(obs_sceneitem_t *item);
  1429. EXPORT void obs_sceneitem_release(obs_sceneitem_t *item);
  1430. /** Removes a scene item. */
  1431. EXPORT void obs_sceneitem_remove(obs_sceneitem_t *item);
  1432. /** Adds a scene item. */
  1433. EXPORT void obs_sceneitems_add(obs_scene_t *scene, obs_data_array_t *data);
  1434. /** Saves Sceneitem into an array, arr **/
  1435. EXPORT void obs_sceneitem_save(obs_sceneitem_t *item, obs_data_array_t *arr);
  1436. /** Set the ID of a sceneitem */
  1437. EXPORT void obs_sceneitem_set_id(obs_sceneitem_t *sceneitem, int64_t id);
  1438. /** Tries to find the sceneitem of the source in a given scene. Returns NULL if not found */
  1439. EXPORT obs_sceneitem_t *obs_scene_sceneitem_from_source(obs_scene_t *scene,
  1440. obs_source_t *source);
  1441. /** Save all the transform states for a current scene's sceneitems */
  1442. EXPORT obs_data_t *obs_scene_save_transform_states(obs_scene_t *scene,
  1443. bool all_items);
  1444. /** Load all the transform states of sceneitems in that scene */
  1445. EXPORT void obs_scene_load_transform_states(const char *state);
  1446. /** Gets a sceneitem's order in its scene */
  1447. EXPORT int obs_sceneitem_get_order_position(obs_sceneitem_t *item);
  1448. /** Gets the scene parent associated with the scene item. */
  1449. EXPORT obs_scene_t *obs_sceneitem_get_scene(const obs_sceneitem_t *item);
  1450. /** Gets the source of a scene item. */
  1451. EXPORT obs_source_t *obs_sceneitem_get_source(const obs_sceneitem_t *item);
  1452. /* FIXME: The following functions should be deprecated and replaced with a way
  1453. * to specify saveable private user data. -Jim */
  1454. EXPORT void obs_sceneitem_select(obs_sceneitem_t *item, bool select);
  1455. EXPORT bool obs_sceneitem_selected(const obs_sceneitem_t *item);
  1456. EXPORT bool obs_sceneitem_locked(const obs_sceneitem_t *item);
  1457. EXPORT bool obs_sceneitem_set_locked(obs_sceneitem_t *item, bool lock);
  1458. /* Functions for getting/setting specific orientation of a scene item */
  1459. EXPORT void obs_sceneitem_set_pos(obs_sceneitem_t *item,
  1460. const struct vec2 *pos);
  1461. EXPORT void obs_sceneitem_set_rot(obs_sceneitem_t *item, float rot_deg);
  1462. EXPORT void obs_sceneitem_set_scale(obs_sceneitem_t *item,
  1463. const struct vec2 *scale);
  1464. EXPORT void obs_sceneitem_set_alignment(obs_sceneitem_t *item,
  1465. uint32_t alignment);
  1466. EXPORT void obs_sceneitem_set_order(obs_sceneitem_t *item,
  1467. enum obs_order_movement movement);
  1468. EXPORT void obs_sceneitem_set_order_position(obs_sceneitem_t *item,
  1469. int position);
  1470. EXPORT void obs_sceneitem_set_bounds_type(obs_sceneitem_t *item,
  1471. enum obs_bounds_type type);
  1472. EXPORT void obs_sceneitem_set_bounds_alignment(obs_sceneitem_t *item,
  1473. uint32_t alignment);
  1474. EXPORT void obs_sceneitem_set_bounds(obs_sceneitem_t *item,
  1475. const struct vec2 *bounds);
  1476. EXPORT int64_t obs_sceneitem_get_id(const obs_sceneitem_t *item);
  1477. EXPORT void obs_sceneitem_get_pos(const obs_sceneitem_t *item,
  1478. struct vec2 *pos);
  1479. EXPORT float obs_sceneitem_get_rot(const obs_sceneitem_t *item);
  1480. EXPORT void obs_sceneitem_get_scale(const obs_sceneitem_t *item,
  1481. struct vec2 *scale);
  1482. EXPORT uint32_t obs_sceneitem_get_alignment(const obs_sceneitem_t *item);
  1483. EXPORT enum obs_bounds_type
  1484. obs_sceneitem_get_bounds_type(const obs_sceneitem_t *item);
  1485. EXPORT uint32_t obs_sceneitem_get_bounds_alignment(const obs_sceneitem_t *item);
  1486. EXPORT void obs_sceneitem_get_bounds(const obs_sceneitem_t *item,
  1487. struct vec2 *bounds);
  1488. EXPORT void obs_sceneitem_get_info(const obs_sceneitem_t *item,
  1489. struct obs_transform_info *info);
  1490. EXPORT void obs_sceneitem_set_info(obs_sceneitem_t *item,
  1491. const struct obs_transform_info *info);
  1492. EXPORT void obs_sceneitem_get_draw_transform(const obs_sceneitem_t *item,
  1493. struct matrix4 *transform);
  1494. EXPORT void obs_sceneitem_get_box_transform(const obs_sceneitem_t *item,
  1495. struct matrix4 *transform);
  1496. EXPORT void obs_sceneitem_get_box_scale(const obs_sceneitem_t *item,
  1497. struct vec2 *scale);
  1498. EXPORT bool obs_sceneitem_visible(const obs_sceneitem_t *item);
  1499. EXPORT bool obs_sceneitem_set_visible(obs_sceneitem_t *item, bool visible);
  1500. struct obs_sceneitem_crop {
  1501. int left;
  1502. int top;
  1503. int right;
  1504. int bottom;
  1505. };
  1506. EXPORT void obs_sceneitem_set_crop(obs_sceneitem_t *item,
  1507. const struct obs_sceneitem_crop *crop);
  1508. EXPORT void obs_sceneitem_get_crop(const obs_sceneitem_t *item,
  1509. struct obs_sceneitem_crop *crop);
  1510. EXPORT void obs_sceneitem_set_scale_filter(obs_sceneitem_t *item,
  1511. enum obs_scale_type filter);
  1512. EXPORT enum obs_scale_type
  1513. obs_sceneitem_get_scale_filter(obs_sceneitem_t *item);
  1514. EXPORT void obs_sceneitem_set_blending_method(obs_sceneitem_t *item,
  1515. enum obs_blending_method method);
  1516. EXPORT enum obs_blending_method
  1517. obs_sceneitem_get_blending_method(obs_sceneitem_t *item);
  1518. EXPORT void obs_sceneitem_set_blending_mode(obs_sceneitem_t *item,
  1519. enum obs_blending_type type);
  1520. EXPORT enum obs_blending_type
  1521. obs_sceneitem_get_blending_mode(obs_sceneitem_t *item);
  1522. EXPORT void obs_sceneitem_force_update_transform(obs_sceneitem_t *item);
  1523. EXPORT void obs_sceneitem_defer_update_begin(obs_sceneitem_t *item);
  1524. EXPORT void obs_sceneitem_defer_update_end(obs_sceneitem_t *item);
  1525. /** Gets private front-end settings data. This data is saved/loaded
  1526. * automatically. Returns an incremented reference. */
  1527. EXPORT obs_data_t *obs_sceneitem_get_private_settings(obs_sceneitem_t *item);
  1528. EXPORT obs_sceneitem_t *obs_scene_add_group(obs_scene_t *scene,
  1529. const char *name);
  1530. EXPORT obs_sceneitem_t *obs_scene_insert_group(obs_scene_t *scene,
  1531. const char *name,
  1532. obs_sceneitem_t **items,
  1533. size_t count);
  1534. EXPORT obs_sceneitem_t *obs_scene_add_group2(obs_scene_t *scene,
  1535. const char *name, bool signal);
  1536. EXPORT obs_sceneitem_t *obs_scene_insert_group2(obs_scene_t *scene,
  1537. const char *name,
  1538. obs_sceneitem_t **items,
  1539. size_t count, bool signal);
  1540. EXPORT obs_sceneitem_t *obs_scene_get_group(obs_scene_t *scene,
  1541. const char *name);
  1542. EXPORT bool obs_sceneitem_is_group(obs_sceneitem_t *item);
  1543. EXPORT obs_scene_t *obs_sceneitem_group_get_scene(const obs_sceneitem_t *group);
  1544. EXPORT void obs_sceneitem_group_ungroup(obs_sceneitem_t *group);
  1545. EXPORT void obs_sceneitem_group_ungroup2(obs_sceneitem_t *group, bool signal);
  1546. EXPORT void obs_sceneitem_group_add_item(obs_sceneitem_t *group,
  1547. obs_sceneitem_t *item);
  1548. EXPORT void obs_sceneitem_group_remove_item(obs_sceneitem_t *group,
  1549. obs_sceneitem_t *item);
  1550. EXPORT obs_sceneitem_t *obs_sceneitem_get_group(obs_scene_t *scene,
  1551. obs_sceneitem_t *item);
  1552. EXPORT bool obs_source_is_group(const obs_source_t *source);
  1553. EXPORT bool obs_scene_is_group(const obs_scene_t *scene);
  1554. EXPORT void obs_sceneitem_group_enum_items(obs_sceneitem_t *group,
  1555. bool (*callback)(obs_scene_t *,
  1556. obs_sceneitem_t *,
  1557. void *),
  1558. void *param);
  1559. /** Gets the group from its source, or NULL if not a group */
  1560. EXPORT obs_scene_t *obs_group_from_source(const obs_source_t *source);
  1561. static inline obs_scene_t *
  1562. obs_group_or_scene_from_source(const obs_source_t *source)
  1563. {
  1564. obs_scene_t *s = obs_scene_from_source(source);
  1565. return s ? s : obs_group_from_source(source);
  1566. }
  1567. EXPORT void obs_sceneitem_defer_group_resize_begin(obs_sceneitem_t *item);
  1568. EXPORT void obs_sceneitem_defer_group_resize_end(obs_sceneitem_t *item);
  1569. EXPORT void obs_sceneitem_set_show_transition(obs_sceneitem_t *item,
  1570. obs_source_t *transition);
  1571. EXPORT void obs_sceneitem_set_show_transition_duration(obs_sceneitem_t *item,
  1572. uint32_t duration_ms);
  1573. OBS_DEPRECATED EXPORT obs_source_t *
  1574. obs_sceneitem_get_show_transition(obs_sceneitem_t *item);
  1575. OBS_DEPRECATED EXPORT uint32_t
  1576. obs_sceneitem_get_show_transition_duration(obs_sceneitem_t *item);
  1577. OBS_DEPRECATED EXPORT void
  1578. obs_sceneitem_set_hide_transition(obs_sceneitem_t *item,
  1579. obs_source_t *transition);
  1580. OBS_DEPRECATED EXPORT void
  1581. obs_sceneitem_set_hide_transition_duration(obs_sceneitem_t *item,
  1582. uint32_t duration_ms);
  1583. OBS_DEPRECATED EXPORT obs_source_t *
  1584. obs_sceneitem_get_hide_transition(obs_sceneitem_t *item);
  1585. OBS_DEPRECATED EXPORT uint32_t
  1586. obs_sceneitem_get_hide_transition_duration(obs_sceneitem_t *item);
  1587. EXPORT void obs_sceneitem_set_transition(obs_sceneitem_t *item, bool show,
  1588. obs_source_t *transition);
  1589. EXPORT obs_source_t *obs_sceneitem_get_transition(obs_sceneitem_t *item,
  1590. bool show);
  1591. EXPORT void obs_sceneitem_set_transition_duration(obs_sceneitem_t *item,
  1592. bool show,
  1593. uint32_t duration_ms);
  1594. EXPORT uint32_t obs_sceneitem_get_transition_duration(obs_sceneitem_t *item,
  1595. bool show);
  1596. EXPORT void obs_sceneitem_do_transition(obs_sceneitem_t *item, bool visible);
  1597. EXPORT void obs_sceneitem_transition_load(struct obs_scene_item *item,
  1598. obs_data_t *data, bool show);
  1599. EXPORT obs_data_t *obs_sceneitem_transition_save(struct obs_scene_item *item,
  1600. bool show);
  1601. EXPORT void obs_scene_prune_sources(obs_scene_t *scene);
  1602. /* ------------------------------------------------------------------------- */
  1603. /* Outputs */
  1604. EXPORT const char *obs_output_get_display_name(const char *id);
  1605. /**
  1606. * Creates an output.
  1607. *
  1608. * Outputs allow outputting to file, outputting to network, outputting to
  1609. * directshow, or other custom outputs.
  1610. */
  1611. EXPORT obs_output_t *obs_output_create(const char *id, const char *name,
  1612. obs_data_t *settings,
  1613. obs_data_t *hotkey_data);
  1614. /**
  1615. * Adds/releases a reference to an output. When the last reference is
  1616. * released, the output is destroyed.
  1617. */
  1618. OBS_EXTERNAL_DEPRECATED EXPORT void obs_output_addref(obs_output_t *output);
  1619. EXPORT void obs_output_release(obs_output_t *output);
  1620. EXPORT void obs_weak_output_addref(obs_weak_output_t *weak);
  1621. EXPORT void obs_weak_output_release(obs_weak_output_t *weak);
  1622. EXPORT obs_output_t *obs_output_get_ref(obs_output_t *output);
  1623. EXPORT obs_weak_output_t *obs_output_get_weak_output(obs_output_t *output);
  1624. EXPORT obs_output_t *obs_weak_output_get_output(obs_weak_output_t *weak);
  1625. EXPORT bool obs_weak_output_references_output(obs_weak_output_t *weak,
  1626. obs_output_t *output);
  1627. EXPORT const char *obs_output_get_name(const obs_output_t *output);
  1628. /** Starts the output. */
  1629. EXPORT bool obs_output_start(obs_output_t *output);
  1630. /** Stops the output. */
  1631. EXPORT void obs_output_stop(obs_output_t *output);
  1632. /**
  1633. * On reconnection, start where it left of on reconnection. Note however that
  1634. * this option will consume extra memory to continually increase delay while
  1635. * waiting to reconnect.
  1636. */
  1637. #define OBS_OUTPUT_DELAY_PRESERVE (1 << 0)
  1638. /**
  1639. * Sets the current output delay, in seconds (if the output supports delay).
  1640. *
  1641. * If delay is currently active, it will set the delay value, but will not
  1642. * affect the current delay, it will only affect the next time the output is
  1643. * activated.
  1644. */
  1645. EXPORT void obs_output_set_delay(obs_output_t *output, uint32_t delay_sec,
  1646. uint32_t flags);
  1647. /** Gets the currently set delay value, in seconds. */
  1648. EXPORT uint32_t obs_output_get_delay(const obs_output_t *output);
  1649. /** If delay is active, gets the currently active delay value, in seconds. */
  1650. EXPORT uint32_t obs_output_get_active_delay(const obs_output_t *output);
  1651. /** Forces the output to stop. Usually only used with delay. */
  1652. EXPORT void obs_output_force_stop(obs_output_t *output);
  1653. /** Returns whether the output is active */
  1654. EXPORT bool obs_output_active(const obs_output_t *output);
  1655. /** Returns output capability flags */
  1656. EXPORT uint32_t obs_output_get_flags(const obs_output_t *output);
  1657. /** Returns output capability flags */
  1658. EXPORT uint32_t obs_get_output_flags(const char *id);
  1659. /** Gets the default settings for an output type */
  1660. EXPORT obs_data_t *obs_output_defaults(const char *id);
  1661. /** Returns the property list, if any. Free with obs_properties_destroy */
  1662. EXPORT obs_properties_t *obs_get_output_properties(const char *id);
  1663. /**
  1664. * Returns the property list of an existing output, if any. Free with
  1665. * obs_properties_destroy
  1666. */
  1667. EXPORT obs_properties_t *obs_output_properties(const obs_output_t *output);
  1668. /** Updates the settings for this output context */
  1669. EXPORT void obs_output_update(obs_output_t *output, obs_data_t *settings);
  1670. /** Specifies whether the output can be paused */
  1671. EXPORT bool obs_output_can_pause(const obs_output_t *output);
  1672. /** Pauses the output (if the functionality is allowed by the output */
  1673. EXPORT bool obs_output_pause(obs_output_t *output, bool pause);
  1674. /** Returns whether output is paused */
  1675. EXPORT bool obs_output_paused(const obs_output_t *output);
  1676. /* Gets the current output settings string */
  1677. EXPORT obs_data_t *obs_output_get_settings(const obs_output_t *output);
  1678. /** Returns the signal handler for an output */
  1679. EXPORT signal_handler_t *
  1680. obs_output_get_signal_handler(const obs_output_t *output);
  1681. /** Returns the procedure handler for an output */
  1682. EXPORT proc_handler_t *obs_output_get_proc_handler(const obs_output_t *output);
  1683. /**
  1684. * Sets the current audio/video media contexts associated with this output,
  1685. * required for non-encoded outputs. Can be null.
  1686. */
  1687. EXPORT void obs_output_set_media(obs_output_t *output, video_t *video,
  1688. audio_t *audio);
  1689. /** Returns the video media context associated with this output */
  1690. EXPORT video_t *obs_output_video(const obs_output_t *output);
  1691. /** Returns the audio media context associated with this output */
  1692. EXPORT audio_t *obs_output_audio(const obs_output_t *output);
  1693. /** Sets the current audio mixer for non-encoded outputs */
  1694. EXPORT void obs_output_set_mixer(obs_output_t *output, size_t mixer_idx);
  1695. /** Gets the current audio mixer for non-encoded outputs */
  1696. EXPORT size_t obs_output_get_mixer(const obs_output_t *output);
  1697. /** Sets the current audio mixes (mask) for a non-encoded multi-track output */
  1698. EXPORT void obs_output_set_mixers(obs_output_t *output, size_t mixers);
  1699. /** Gets the current audio mixes (mask) for a non-encoded multi-track output */
  1700. EXPORT size_t obs_output_get_mixers(const obs_output_t *output);
  1701. /**
  1702. * Sets the current video encoder associated with this output,
  1703. * required for encoded outputs
  1704. */
  1705. EXPORT void obs_output_set_video_encoder(obs_output_t *output,
  1706. obs_encoder_t *encoder);
  1707. /**
  1708. * Sets the current audio encoder associated with this output,
  1709. * required for encoded outputs.
  1710. *
  1711. * The idx parameter specifies the audio encoder index to set the encoder to.
  1712. * Only used with outputs that have multiple audio outputs (RTMP typically),
  1713. * otherwise the parameter is ignored.
  1714. */
  1715. EXPORT void obs_output_set_audio_encoder(obs_output_t *output,
  1716. obs_encoder_t *encoder, size_t idx);
  1717. /** Returns the current video encoder associated with this output */
  1718. EXPORT obs_encoder_t *obs_output_get_video_encoder(const obs_output_t *output);
  1719. /**
  1720. * Returns the current audio encoder associated with this output
  1721. *
  1722. * The idx parameter specifies the audio encoder index. Only used with
  1723. * outputs that have multiple audio outputs, otherwise the parameter is
  1724. * ignored.
  1725. */
  1726. EXPORT obs_encoder_t *obs_output_get_audio_encoder(const obs_output_t *output,
  1727. size_t idx);
  1728. /** Sets the current service associated with this output. */
  1729. EXPORT void obs_output_set_service(obs_output_t *output,
  1730. obs_service_t *service);
  1731. /** Gets the current service associated with this output. */
  1732. EXPORT obs_service_t *obs_output_get_service(const obs_output_t *output);
  1733. /**
  1734. * Sets the reconnect settings. Set retry_count to 0 to disable reconnecting.
  1735. */
  1736. EXPORT void obs_output_set_reconnect_settings(obs_output_t *output,
  1737. int retry_count, int retry_sec);
  1738. EXPORT uint64_t obs_output_get_total_bytes(const obs_output_t *output);
  1739. EXPORT int obs_output_get_frames_dropped(const obs_output_t *output);
  1740. EXPORT int obs_output_get_total_frames(const obs_output_t *output);
  1741. /**
  1742. * Sets the preferred scaled resolution for this output. Set width and height
  1743. * to 0 to disable scaling.
  1744. *
  1745. * If this output uses an encoder, it will call obs_encoder_set_scaled_size on
  1746. * the encoder before the stream is started. If the encoder is already active,
  1747. * then this function will trigger a warning and do nothing.
  1748. */
  1749. EXPORT void obs_output_set_preferred_size(obs_output_t *output, uint32_t width,
  1750. uint32_t height);
  1751. /** For video outputs, returns the width of the encoded image */
  1752. EXPORT uint32_t obs_output_get_width(const obs_output_t *output);
  1753. /** For video outputs, returns the height of the encoded image */
  1754. EXPORT uint32_t obs_output_get_height(const obs_output_t *output);
  1755. EXPORT const char *obs_output_get_id(const obs_output_t *output);
  1756. EXPORT void obs_output_caption(obs_output_t *output,
  1757. const struct obs_source_cea_708 *captions);
  1758. EXPORT void obs_output_output_caption_text1(obs_output_t *output,
  1759. const char *text);
  1760. EXPORT void obs_output_output_caption_text2(obs_output_t *output,
  1761. const char *text,
  1762. double display_duration);
  1763. EXPORT float obs_output_get_congestion(obs_output_t *output);
  1764. EXPORT int obs_output_get_connect_time_ms(obs_output_t *output);
  1765. EXPORT bool obs_output_reconnecting(const obs_output_t *output);
  1766. /** Pass a string of the last output error, for UI use */
  1767. EXPORT void obs_output_set_last_error(obs_output_t *output,
  1768. const char *message);
  1769. EXPORT const char *obs_output_get_last_error(obs_output_t *output);
  1770. EXPORT const char *
  1771. obs_output_get_supported_video_codecs(const obs_output_t *output);
  1772. EXPORT const char *
  1773. obs_output_get_supported_audio_codecs(const obs_output_t *output);
  1774. EXPORT const char *obs_output_get_protocols(const obs_output_t *output);
  1775. EXPORT bool obs_is_output_protocol_registered(const char *protocol);
  1776. EXPORT bool obs_enum_output_protocols(size_t idx, char **protocol);
  1777. EXPORT void obs_enum_output_types_with_protocol(
  1778. const char *protocol, void *data,
  1779. bool (*enum_cb)(void *data, const char *id));
  1780. EXPORT const char *obs_get_output_supported_video_codecs(const char *id);
  1781. EXPORT const char *obs_get_output_supported_audio_codecs(const char *id);
  1782. /* ------------------------------------------------------------------------- */
  1783. /* Functions used by outputs */
  1784. EXPORT void *obs_output_get_type_data(obs_output_t *output);
  1785. /** Gets the video conversion info. Used only for raw output */
  1786. EXPORT const struct video_scale_info *
  1787. obs_output_get_video_conversion(obs_output_t *output);
  1788. /** Optionally sets the video conversion info. Used only for raw output */
  1789. EXPORT void
  1790. obs_output_set_video_conversion(obs_output_t *output,
  1791. const struct video_scale_info *conversion);
  1792. /** Optionally sets the audio conversion info. Used only for raw output */
  1793. EXPORT void
  1794. obs_output_set_audio_conversion(obs_output_t *output,
  1795. const struct audio_convert_info *conversion);
  1796. /** Returns whether data capture can begin with the specified flags */
  1797. EXPORT bool obs_output_can_begin_data_capture(const obs_output_t *output,
  1798. uint32_t flags);
  1799. /** Initializes encoders (if any) */
  1800. EXPORT bool obs_output_initialize_encoders(obs_output_t *output,
  1801. uint32_t flags);
  1802. /**
  1803. * Begins data capture from media/encoders.
  1804. *
  1805. * @param output Output context
  1806. * @param flags Set this to 0 to use default output flags set in the
  1807. * obs_output_info structure, otherwise set to a either
  1808. * OBS_OUTPUT_VIDEO or OBS_OUTPUT_AUDIO to specify whether to
  1809. * connect audio or video. This is useful for things like
  1810. * ffmpeg which may or may not always want to use both audio
  1811. * and video.
  1812. * @return true if successful, false otherwise.
  1813. */
  1814. EXPORT bool obs_output_begin_data_capture(obs_output_t *output, uint32_t flags);
  1815. /** Ends data capture from media/encoders */
  1816. EXPORT void obs_output_end_data_capture(obs_output_t *output);
  1817. /**
  1818. * Signals that the output has stopped itself.
  1819. *
  1820. * @param output Output context
  1821. * @param code Error code (or OBS_OUTPUT_SUCCESS if not an error)
  1822. */
  1823. EXPORT void obs_output_signal_stop(obs_output_t *output, int code);
  1824. EXPORT uint64_t obs_output_get_pause_offset(obs_output_t *output);
  1825. /* ------------------------------------------------------------------------- */
  1826. /* Encoders */
  1827. EXPORT const char *obs_encoder_get_display_name(const char *id);
  1828. /**
  1829. * Creates a video encoder context
  1830. *
  1831. * @param id Video encoder ID
  1832. * @param name Name to assign to this context
  1833. * @param settings Settings
  1834. * @return The video encoder context, or NULL if failed or not found.
  1835. */
  1836. EXPORT obs_encoder_t *obs_video_encoder_create(const char *id, const char *name,
  1837. obs_data_t *settings,
  1838. obs_data_t *hotkey_data);
  1839. /**
  1840. * Creates an audio encoder context
  1841. *
  1842. * @param id Audio Encoder ID
  1843. * @param name Name to assign to this context
  1844. * @param settings Settings
  1845. * @param mixer_idx Index of the mixer to use for this audio encoder
  1846. * @return The video encoder context, or NULL if failed or not found.
  1847. */
  1848. EXPORT obs_encoder_t *obs_audio_encoder_create(const char *id, const char *name,
  1849. obs_data_t *settings,
  1850. size_t mixer_idx,
  1851. obs_data_t *hotkey_data);
  1852. /**
  1853. * Adds/releases a reference to an encoder. When the last reference is
  1854. * released, the encoder is destroyed.
  1855. */
  1856. OBS_EXTERNAL_DEPRECATED EXPORT void obs_encoder_addref(obs_encoder_t *encoder);
  1857. EXPORT void obs_encoder_release(obs_encoder_t *encoder);
  1858. EXPORT void obs_weak_encoder_addref(obs_weak_encoder_t *weak);
  1859. EXPORT void obs_weak_encoder_release(obs_weak_encoder_t *weak);
  1860. EXPORT obs_encoder_t *obs_encoder_get_ref(obs_encoder_t *encoder);
  1861. EXPORT obs_weak_encoder_t *obs_encoder_get_weak_encoder(obs_encoder_t *encoder);
  1862. EXPORT obs_encoder_t *obs_weak_encoder_get_encoder(obs_weak_encoder_t *weak);
  1863. EXPORT bool obs_weak_encoder_references_encoder(obs_weak_encoder_t *weak,
  1864. obs_encoder_t *encoder);
  1865. EXPORT void obs_encoder_set_name(obs_encoder_t *encoder, const char *name);
  1866. EXPORT const char *obs_encoder_get_name(const obs_encoder_t *encoder);
  1867. /** Returns the codec of an encoder by the id */
  1868. EXPORT const char *obs_get_encoder_codec(const char *id);
  1869. /** Returns the type of an encoder by the id */
  1870. EXPORT enum obs_encoder_type obs_get_encoder_type(const char *id);
  1871. /** Returns the codec of the encoder */
  1872. EXPORT const char *obs_encoder_get_codec(const obs_encoder_t *encoder);
  1873. /** Returns the type of an encoder */
  1874. EXPORT enum obs_encoder_type obs_encoder_get_type(const obs_encoder_t *encoder);
  1875. /**
  1876. * Sets the scaled resolution for a video encoder. Set width and height to 0
  1877. * to disable scaling. If the encoder is active, this function will trigger
  1878. * a warning, and do nothing.
  1879. */
  1880. EXPORT void obs_encoder_set_scaled_size(obs_encoder_t *encoder, uint32_t width,
  1881. uint32_t height);
  1882. /** For video encoders, returns true if pre-encode scaling is enabled */
  1883. EXPORT bool obs_encoder_scaling_enabled(const obs_encoder_t *encoder);
  1884. /** For video encoders, returns the width of the encoded image */
  1885. EXPORT uint32_t obs_encoder_get_width(const obs_encoder_t *encoder);
  1886. /** For video encoders, returns the height of the encoded image */
  1887. EXPORT uint32_t obs_encoder_get_height(const obs_encoder_t *encoder);
  1888. /** For audio encoders, returns the sample rate of the audio */
  1889. EXPORT uint32_t obs_encoder_get_sample_rate(const obs_encoder_t *encoder);
  1890. /** For audio encoders, returns the frame size of the audio packet */
  1891. EXPORT size_t obs_encoder_get_frame_size(const obs_encoder_t *encoder);
  1892. /**
  1893. * Sets the preferred video format for a video encoder. If the encoder can use
  1894. * the format specified, it will force a conversion to that format if the
  1895. * obs output format does not match the preferred format.
  1896. *
  1897. * If the format is set to VIDEO_FORMAT_NONE, will revert to the default
  1898. * functionality of converting only when absolutely necessary.
  1899. */
  1900. EXPORT void obs_encoder_set_preferred_video_format(obs_encoder_t *encoder,
  1901. enum video_format format);
  1902. EXPORT enum video_format
  1903. obs_encoder_get_preferred_video_format(const obs_encoder_t *encoder);
  1904. /** Gets the default settings for an encoder type */
  1905. EXPORT obs_data_t *obs_encoder_defaults(const char *id);
  1906. EXPORT obs_data_t *obs_encoder_get_defaults(const obs_encoder_t *encoder);
  1907. /** Returns the property list, if any. Free with obs_properties_destroy */
  1908. EXPORT obs_properties_t *obs_get_encoder_properties(const char *id);
  1909. /**
  1910. * Returns the property list of an existing encoder, if any. Free with
  1911. * obs_properties_destroy
  1912. */
  1913. EXPORT obs_properties_t *obs_encoder_properties(const obs_encoder_t *encoder);
  1914. /**
  1915. * Updates the settings of the encoder context. Usually used for changing
  1916. * bitrate while active
  1917. */
  1918. EXPORT void obs_encoder_update(obs_encoder_t *encoder, obs_data_t *settings);
  1919. /** Gets extra data (headers) associated with this context */
  1920. EXPORT bool obs_encoder_get_extra_data(const obs_encoder_t *encoder,
  1921. uint8_t **extra_data, size_t *size);
  1922. /** Returns the current settings for this encoder */
  1923. EXPORT obs_data_t *obs_encoder_get_settings(const obs_encoder_t *encoder);
  1924. /** Sets the video output context to be used with this encoder */
  1925. EXPORT void obs_encoder_set_video(obs_encoder_t *encoder, video_t *video);
  1926. /** Sets the audio output context to be used with this encoder */
  1927. EXPORT void obs_encoder_set_audio(obs_encoder_t *encoder, audio_t *audio);
  1928. /**
  1929. * Returns the video output context used with this encoder, or NULL if not
  1930. * a video context
  1931. */
  1932. EXPORT video_t *obs_encoder_video(const obs_encoder_t *encoder);
  1933. /**
  1934. * Returns the audio output context used with this encoder, or NULL if not
  1935. * a audio context
  1936. */
  1937. EXPORT audio_t *obs_encoder_audio(const obs_encoder_t *encoder);
  1938. /** Returns true if encoder is active, false otherwise */
  1939. EXPORT bool obs_encoder_active(const obs_encoder_t *encoder);
  1940. EXPORT void *obs_encoder_get_type_data(obs_encoder_t *encoder);
  1941. EXPORT const char *obs_encoder_get_id(const obs_encoder_t *encoder);
  1942. EXPORT uint32_t obs_get_encoder_caps(const char *encoder_id);
  1943. EXPORT uint32_t obs_encoder_get_caps(const obs_encoder_t *encoder);
  1944. #ifndef SWIG
  1945. /** Duplicates an encoder packet */
  1946. OBS_DEPRECATED
  1947. EXPORT void obs_duplicate_encoder_packet(struct encoder_packet *dst,
  1948. const struct encoder_packet *src);
  1949. OBS_DEPRECATED
  1950. EXPORT void obs_free_encoder_packet(struct encoder_packet *packet);
  1951. #endif
  1952. EXPORT void obs_encoder_packet_ref(struct encoder_packet *dst,
  1953. struct encoder_packet *src);
  1954. EXPORT void obs_encoder_packet_release(struct encoder_packet *packet);
  1955. EXPORT void *obs_encoder_create_rerouted(obs_encoder_t *encoder,
  1956. const char *reroute_id);
  1957. /** Returns whether encoder is paused */
  1958. EXPORT bool obs_encoder_paused(const obs_encoder_t *output);
  1959. EXPORT const char *obs_encoder_get_last_error(obs_encoder_t *encoder);
  1960. EXPORT void obs_encoder_set_last_error(obs_encoder_t *encoder,
  1961. const char *message);
  1962. EXPORT uint64_t obs_encoder_get_pause_offset(const obs_encoder_t *encoder);
  1963. /* ------------------------------------------------------------------------- */
  1964. /* Stream Services */
  1965. EXPORT const char *obs_service_get_display_name(const char *id);
  1966. EXPORT obs_service_t *obs_service_create(const char *id, const char *name,
  1967. obs_data_t *settings,
  1968. obs_data_t *hotkey_data);
  1969. EXPORT obs_service_t *obs_service_create_private(const char *id,
  1970. const char *name,
  1971. obs_data_t *settings);
  1972. /**
  1973. * Adds/releases a reference to a service. When the last reference is
  1974. * released, the service is destroyed.
  1975. */
  1976. OBS_EXTERNAL_DEPRECATED EXPORT void obs_service_addref(obs_service_t *service);
  1977. EXPORT void obs_service_release(obs_service_t *service);
  1978. EXPORT void obs_weak_service_addref(obs_weak_service_t *weak);
  1979. EXPORT void obs_weak_service_release(obs_weak_service_t *weak);
  1980. EXPORT obs_service_t *obs_service_get_ref(obs_service_t *service);
  1981. EXPORT obs_weak_service_t *obs_service_get_weak_service(obs_service_t *service);
  1982. EXPORT obs_service_t *obs_weak_service_get_service(obs_weak_service_t *weak);
  1983. EXPORT bool obs_weak_service_references_service(obs_weak_service_t *weak,
  1984. obs_service_t *service);
  1985. EXPORT const char *obs_service_get_name(const obs_service_t *service);
  1986. /** Gets the default settings for a service */
  1987. EXPORT obs_data_t *obs_service_defaults(const char *id);
  1988. /** Returns the property list, if any. Free with obs_properties_destroy */
  1989. EXPORT obs_properties_t *obs_get_service_properties(const char *id);
  1990. /**
  1991. * Returns the property list of an existing service context, if any. Free with
  1992. * obs_properties_destroy
  1993. */
  1994. EXPORT obs_properties_t *obs_service_properties(const obs_service_t *service);
  1995. /** Gets the service type */
  1996. EXPORT const char *obs_service_get_type(const obs_service_t *service);
  1997. /** Updates the settings of the service context */
  1998. EXPORT void obs_service_update(obs_service_t *service, obs_data_t *settings);
  1999. /** Returns the current settings for this service */
  2000. EXPORT obs_data_t *obs_service_get_settings(const obs_service_t *service);
  2001. /** Returns the URL for this service context */
  2002. OBS_DEPRECATED EXPORT const char *
  2003. obs_service_get_url(const obs_service_t *service);
  2004. /** Returns the stream key (if any) for this service context */
  2005. OBS_DEPRECATED EXPORT const char *
  2006. obs_service_get_key(const obs_service_t *service);
  2007. /** Returns the username (if any) for this service context */
  2008. OBS_DEPRECATED EXPORT const char *
  2009. obs_service_get_username(const obs_service_t *service);
  2010. /** Returns the password (if any) for this service context */
  2011. OBS_DEPRECATED EXPORT const char *
  2012. obs_service_get_password(const obs_service_t *service);
  2013. /**
  2014. * Applies service-specific video encoder settings.
  2015. *
  2016. * @param video_encoder_settings Video encoder settings. Optional.
  2017. * @param audio_encoder_settings Audio encoder settings. Optional.
  2018. */
  2019. EXPORT void
  2020. obs_service_apply_encoder_settings(obs_service_t *service,
  2021. obs_data_t *video_encoder_settings,
  2022. obs_data_t *audio_encoder_settings);
  2023. EXPORT void *obs_service_get_type_data(obs_service_t *service);
  2024. EXPORT const char *obs_service_get_id(const obs_service_t *service);
  2025. EXPORT void obs_service_get_supported_resolutions(
  2026. const obs_service_t *service,
  2027. struct obs_service_resolution **resolutions, size_t *count);
  2028. EXPORT void obs_service_get_max_fps(const obs_service_t *service, int *fps);
  2029. EXPORT void obs_service_get_max_bitrate(const obs_service_t *service,
  2030. int *video_bitrate, int *audio_bitrate);
  2031. EXPORT const char **
  2032. obs_service_get_supported_video_codecs(const obs_service_t *service);
  2033. EXPORT const char **
  2034. obs_service_get_supported_audio_codecs(const obs_service_t *service);
  2035. /* NOTE: This function is temporary and should be removed/replaced at a later
  2036. * date. */
  2037. OBS_DEPRECATED EXPORT const char *
  2038. obs_service_get_output_type(const obs_service_t *service);
  2039. /** Returns the protocol for this service context */
  2040. EXPORT const char *obs_service_get_protocol(const obs_service_t *service);
  2041. EXPORT const char *
  2042. obs_service_get_preferred_output_type(const obs_service_t *service);
  2043. EXPORT const char *obs_service_get_connect_info(const obs_service_t *service,
  2044. uint32_t type);
  2045. EXPORT bool obs_service_can_try_to_connect(const obs_service_t *service);
  2046. /* ------------------------------------------------------------------------- */
  2047. /* Source frame allocation functions */
  2048. EXPORT void obs_source_frame_init(struct obs_source_frame *frame,
  2049. enum video_format format, uint32_t width,
  2050. uint32_t height);
  2051. static inline void obs_source_frame_free(struct obs_source_frame *frame)
  2052. {
  2053. if (frame) {
  2054. bfree(frame->data[0]);
  2055. memset(frame, 0, sizeof(*frame));
  2056. }
  2057. }
  2058. static inline struct obs_source_frame *
  2059. obs_source_frame_create(enum video_format format, uint32_t width,
  2060. uint32_t height)
  2061. {
  2062. struct obs_source_frame *frame;
  2063. frame = (struct obs_source_frame *)bzalloc(sizeof(*frame));
  2064. obs_source_frame_init(frame, format, width, height);
  2065. return frame;
  2066. }
  2067. static inline void obs_source_frame_destroy(struct obs_source_frame *frame)
  2068. {
  2069. if (frame) {
  2070. bfree(frame->data[0]);
  2071. bfree(frame);
  2072. }
  2073. }
  2074. EXPORT void obs_source_frame_copy(struct obs_source_frame *dst,
  2075. const struct obs_source_frame *src);
  2076. /* ------------------------------------------------------------------------- */
  2077. /* Get source icon type */
  2078. EXPORT enum obs_icon_type obs_source_get_icon_type(const char *id);
  2079. #ifdef __cplusplus
  2080. }
  2081. #endif