obs.h 86 KB

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