obs.h 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767
  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-source.h"
  61. #include "obs-encoder.h"
  62. #include "obs-output.h"
  63. #include "obs-service.h"
  64. #include "obs-audio-controls.h"
  65. #include "obs-hotkey.h"
  66. /**
  67. * @file
  68. * @brief Main libobs header used by applications.
  69. *
  70. * @mainpage
  71. *
  72. * @section intro_sec Introduction
  73. *
  74. * This document describes the api for libobs to be used by applications as well
  75. * as @ref modules_page implementing some kind of functionality.
  76. *
  77. */
  78. #ifdef __cplusplus
  79. extern "C" {
  80. #endif
  81. /** Used for changing the order of items (for example, filters in a source,
  82. * or items in a scene) */
  83. enum obs_order_movement {
  84. OBS_ORDER_MOVE_UP,
  85. OBS_ORDER_MOVE_DOWN,
  86. OBS_ORDER_MOVE_TOP,
  87. OBS_ORDER_MOVE_BOTTOM
  88. };
  89. /**
  90. * Used with obs_source_process_filter to specify whether the filter should
  91. * render the source directly with the specified effect, or whether it should
  92. * render it to a texture
  93. */
  94. enum obs_allow_direct_render {
  95. OBS_NO_DIRECT_RENDERING,
  96. OBS_ALLOW_DIRECT_RENDERING,
  97. };
  98. enum obs_scale_type {
  99. OBS_SCALE_DISABLE,
  100. OBS_SCALE_POINT,
  101. OBS_SCALE_BICUBIC,
  102. OBS_SCALE_BILINEAR,
  103. OBS_SCALE_LANCZOS
  104. };
  105. /**
  106. * Used with scene items to indicate the type of bounds to use for scene items.
  107. * Mostly determines how the image will be scaled within those bounds, or
  108. * whether to use bounds at all.
  109. */
  110. enum obs_bounds_type {
  111. OBS_BOUNDS_NONE, /**< no bounds */
  112. OBS_BOUNDS_STRETCH, /**< stretch (ignores base scale) */
  113. OBS_BOUNDS_SCALE_INNER, /**< scales to inner rectangle */
  114. OBS_BOUNDS_SCALE_OUTER, /**< scales to outer rectangle */
  115. OBS_BOUNDS_SCALE_TO_WIDTH, /**< scales to the width */
  116. OBS_BOUNDS_SCALE_TO_HEIGHT, /**< scales to the height */
  117. OBS_BOUNDS_MAX_ONLY, /**< no scaling, maximum size only */
  118. };
  119. struct obs_transform_info {
  120. struct vec2 pos;
  121. float rot;
  122. struct vec2 scale;
  123. uint32_t alignment;
  124. enum obs_bounds_type bounds_type;
  125. uint32_t bounds_alignment;
  126. struct vec2 bounds;
  127. };
  128. /**
  129. * Video initialization structure
  130. */
  131. struct obs_video_info {
  132. /**
  133. * Graphics module to use (usually "libobs-opengl" or "libobs-d3d11")
  134. */
  135. const char *graphics_module;
  136. uint32_t fps_num; /**< Output FPS numerator */
  137. uint32_t fps_den; /**< Output FPS denominator */
  138. uint32_t base_width; /**< Base compositing width */
  139. uint32_t base_height; /**< Base compositing height */
  140. uint32_t output_width; /**< Output width */
  141. uint32_t output_height; /**< Output height */
  142. enum video_format output_format; /**< Output format */
  143. /** Video adapter index to use (NOTE: avoid for optimus laptops) */
  144. uint32_t adapter;
  145. /** Use shaders to convert to different color formats */
  146. bool gpu_conversion;
  147. enum video_colorspace colorspace; /**< YUV type (if YUV) */
  148. enum video_range_type range; /**< YUV range (if YUV) */
  149. enum obs_scale_type scale_type; /**< How to scale if scaling */
  150. };
  151. /**
  152. * Audio initialization structure
  153. */
  154. struct obs_audio_info {
  155. uint32_t samples_per_sec;
  156. enum speaker_layout speakers;
  157. };
  158. /**
  159. * Sent to source filters via the filter_audio callback to allow filtering of
  160. * audio data
  161. */
  162. struct obs_audio_data {
  163. uint8_t *data[MAX_AV_PLANES];
  164. uint32_t frames;
  165. uint64_t timestamp;
  166. };
  167. /**
  168. * Source audio output structure. Used with obs_source_output_audio to output
  169. * source audio. Audio is automatically resampled and remixed as necessary.
  170. */
  171. struct obs_source_audio {
  172. const uint8_t *data[MAX_AV_PLANES];
  173. uint32_t frames;
  174. enum speaker_layout speakers;
  175. enum audio_format format;
  176. uint32_t samples_per_sec;
  177. uint64_t timestamp;
  178. };
  179. /**
  180. * Source asynchronous video output structure. Used with
  181. * obs_source_output_video to output asynchronous video. Video is buffered as
  182. * necessary to play according to timestamps. When used with audio output,
  183. * audio is synced to video as it is played.
  184. *
  185. * If a YUV format is specified, it will be automatically upsampled and
  186. * converted to RGB via shader on the graphics processor.
  187. */
  188. struct obs_source_frame {
  189. uint8_t *data[MAX_AV_PLANES];
  190. uint32_t linesize[MAX_AV_PLANES];
  191. uint32_t width;
  192. uint32_t height;
  193. uint64_t timestamp;
  194. enum video_format format;
  195. float color_matrix[16];
  196. bool full_range;
  197. float color_range_min[3];
  198. float color_range_max[3];
  199. bool flip;
  200. /* used internally by libobs */
  201. volatile long refs;
  202. bool prev_frame;
  203. };
  204. /* ------------------------------------------------------------------------- */
  205. /* OBS context */
  206. /**
  207. * Initializes OBS
  208. *
  209. * @param locale The locale to use for modules
  210. * @param module_config_path Path to module config storage directory
  211. * (or NULL if none)
  212. * @param store The profiler name store for OBS to use or NULL
  213. */
  214. EXPORT bool obs_startup(const char *locale, const char *module_config_path,
  215. profiler_name_store_t *store);
  216. /** Releases all data associated with OBS and terminates the OBS context */
  217. EXPORT void obs_shutdown(void);
  218. /** @return true if the main OBS context has been initialized */
  219. EXPORT bool obs_initialized(void);
  220. /** @return The current core version */
  221. EXPORT uint32_t obs_get_version(void);
  222. /**
  223. * Sets a new locale to use for modules. This will call obs_module_set_locale
  224. * for each module with the new locale.
  225. *
  226. * @param locale The locale to use for modules
  227. */
  228. EXPORT void obs_set_locale(const char *locale);
  229. /** @return the current locale */
  230. EXPORT const char *obs_get_locale(void);
  231. /**
  232. * Returns the profiler name store (see util/profiler.h) used by OBS, which is
  233. * either a name store passed to obs_startup, an internal name store, or NULL
  234. * in case obs_initialized() returns false.
  235. */
  236. EXPORT profiler_name_store_t *obs_get_profiler_name_store(void);
  237. /**
  238. * Sets base video ouput base resolution/fps/format.
  239. *
  240. * @note This data cannot be changed if an output is corrently active.
  241. * @note The graphics module cannot be changed without fully destroying the
  242. * OBS context.
  243. *
  244. * @param ovi Pointer to an obs_video_info structure containing the
  245. * specification of the graphics subsystem,
  246. * @return OBS_VIDEO_SUCCESS if sucessful
  247. * OBS_VIDEO_NOT_SUPPORTED if the adapter lacks capabilities
  248. * OBS_VIDEO_INVALID_PARAM if a parameter is invalid
  249. * OBS_VIDEO_CURRENTLY_ACTIVE if video is currently active
  250. * OBS_VIDEO_MODULE_NOT_FOUND if the graphics module is not found
  251. * OBS_VIDEO_FAIL for generic failure
  252. */
  253. EXPORT int obs_reset_video(struct obs_video_info *ovi);
  254. /**
  255. * Sets base audio output format/channels/samples/etc
  256. *
  257. * @note Cannot reset base audio if an output is currently active.
  258. */
  259. EXPORT bool obs_reset_audio(const struct obs_audio_info *oai);
  260. /** Gets the current video settings, returns false if no video */
  261. EXPORT bool obs_get_video_info(struct obs_video_info *ovi);
  262. /** Gets the current audio settings, returns false if no audio */
  263. EXPORT bool obs_get_audio_info(struct obs_audio_info *oai);
  264. /**
  265. * Opens a plugin module directly from a specific path.
  266. *
  267. * If the module already exists then the function will return successful, and
  268. * the module parameter will be given the pointer to the existing module.
  269. *
  270. * This does not initialize the module, it only loads the module image. To
  271. * initialize the module, call obs_init_module.
  272. *
  273. * @param module The pointer to the created module.
  274. * @param path Specifies the path to the module library file. If the
  275. * extension is not specified, it will use the extension
  276. * appropriate to the operating system.
  277. * @param data_path Specifies the path to the directory where the module's
  278. * data files are stored.
  279. * @returns MODULE_SUCCESS if successful
  280. * MODULE_ERROR if a generic error occurred
  281. * MODULE_FILE_NOT_FOUND if the module was not found
  282. * MODULE_MISSING_EXPORTS if required exports are missing
  283. * MODULE_INCOMPATIBLE_VER if incompatible version
  284. */
  285. EXPORT int obs_open_module(obs_module_t **module, const char *path,
  286. const char *data_path);
  287. /**
  288. * Initializes the module, which calls its obs_module_load export. If the
  289. * module is alrady loaded, then this function does nothing and returns
  290. * successful.
  291. */
  292. EXPORT bool obs_init_module(obs_module_t *module);
  293. /** Returns the module file name */
  294. EXPORT const char *obs_get_module_file_name(obs_module_t *module);
  295. /** Returns the module full name */
  296. EXPORT const char *obs_get_module_name(obs_module_t *module);
  297. /** Returns the module author(s) */
  298. EXPORT const char *obs_get_module_author(obs_module_t *module);
  299. /** Returns the module description */
  300. EXPORT const char *obs_get_module_description(obs_module_t *module);
  301. /** Returns the module binary path */
  302. EXPORT const char *obs_get_module_binary_path(obs_module_t *module);
  303. /** Returns the module data path */
  304. EXPORT const char *obs_get_module_data_path(obs_module_t *module);
  305. /**
  306. * Adds a module search path to be used with obs_find_modules. If the search
  307. * path strings contain %module%, that text will be replaced with the module
  308. * name when used.
  309. *
  310. * @param bin Specifies the module's binary directory search path.
  311. * @param data Specifies the module's data directory search path.
  312. */
  313. EXPORT void obs_add_module_path(const char *bin, const char *data);
  314. /** Automatically loads all modules from module paths (convenience function) */
  315. EXPORT void obs_load_all_modules(void);
  316. struct obs_module_info {
  317. const char *bin_path;
  318. const char *data_path;
  319. };
  320. typedef void (*obs_find_module_callback_t)(void *param,
  321. const struct obs_module_info *info);
  322. /** Finds all modules within the search paths added by obs_add_module_path. */
  323. EXPORT void obs_find_modules(obs_find_module_callback_t callback, void *param);
  324. typedef void (*obs_enum_module_callback_t)(void *param, obs_module_t *module);
  325. /** Enumerates all loaded modules */
  326. EXPORT void obs_enum_modules(obs_enum_module_callback_t callback, void *param);
  327. /** Helper function for using default module locale */
  328. EXPORT lookup_t *obs_module_load_locale(obs_module_t *module,
  329. const char *default_locale, const char *locale);
  330. /**
  331. * Returns the location of a plugin module data file.
  332. *
  333. * @note Modules should use obs_module_file function defined in obs-module.h
  334. * as a more elegant means of getting their files without having to
  335. * specify the module parameter.
  336. *
  337. * @param module The module associated with the file to locate
  338. * @param file The file to locate
  339. * @return Path string, or NULL if not found. Use bfree to free string.
  340. */
  341. EXPORT char *obs_find_module_file(obs_module_t *module, const char *file);
  342. /**
  343. * Returns the path of a plugin module config file (whether it exists or not)
  344. *
  345. * @note Modules should use obs_module_config_path function defined in
  346. * obs-module.h as a more elegant means of getting their files without
  347. * having to specify the module parameter.
  348. *
  349. * @param module The module associated with the path
  350. * @param file The file to get a path to
  351. * @return Path string, or NULL if not found. Use bfree to free string.
  352. */
  353. EXPORT char *obs_module_get_config_path(obs_module_t *module, const char *file);
  354. /** Enumerates all source types (inputs, filters, transitions, etc). */
  355. EXPORT bool obs_enum_source_types(size_t idx, const char **id);
  356. /**
  357. * Enumerates all available inputs source types.
  358. *
  359. * Inputs are general source inputs (such as capture sources, device sources,
  360. * etc).
  361. */
  362. EXPORT bool obs_enum_input_types(size_t idx, const char **id);
  363. /**
  364. * Enumerates all available filter source types.
  365. *
  366. * Filters are sources that are used to modify the video/audio output of
  367. * other sources.
  368. */
  369. EXPORT bool obs_enum_filter_types(size_t idx, const char **id);
  370. /**
  371. * Enumerates all available transition source types.
  372. *
  373. * Transitions are sources used to transition between two or more other
  374. * sources.
  375. */
  376. EXPORT bool obs_enum_transition_types(size_t idx, const char **id);
  377. /** Enumerates all available output types. */
  378. EXPORT bool obs_enum_output_types(size_t idx, const char **id);
  379. /** Enumerates all available encoder types. */
  380. EXPORT bool obs_enum_encoder_types(size_t idx, const char **id);
  381. /** Enumerates all available service types. */
  382. EXPORT bool obs_enum_service_types(size_t idx, const char **id);
  383. /** Helper function for entering the OBS graphics context */
  384. EXPORT void obs_enter_graphics(void);
  385. /** Helper function for leaving the OBS graphics context */
  386. EXPORT void obs_leave_graphics(void);
  387. /** Gets the main audio output handler for this OBS context */
  388. EXPORT audio_t *obs_get_audio(void);
  389. /** Gets the main video output handler for this OBS context */
  390. EXPORT video_t *obs_get_video(void);
  391. /** Sets the primary output source for a channel. */
  392. EXPORT void obs_set_output_source(uint32_t channel, obs_source_t *source);
  393. /**
  394. * Gets the primary output source for a channel and increments the reference
  395. * counter for that source. Use obs_source_release to release.
  396. */
  397. EXPORT obs_source_t *obs_get_output_source(uint32_t channel);
  398. /**
  399. * Enumerates all input sources
  400. *
  401. * Callback function returns true to continue enumeration, or false to end
  402. * enumeration.
  403. *
  404. * Use obs_source_get_ref or obs_source_get_weak_source if you want to retain
  405. * a reference after obs_enum_sources finishes
  406. */
  407. EXPORT void obs_enum_sources(bool (*enum_proc)(void*, obs_source_t*),
  408. void *param);
  409. /** Enumerates outputs */
  410. EXPORT void obs_enum_outputs(bool (*enum_proc)(void*, obs_output_t*),
  411. void *param);
  412. /** Enumerates encoders */
  413. EXPORT void obs_enum_encoders(bool (*enum_proc)(void*, obs_encoder_t*),
  414. void *param);
  415. /** Enumerates encoders */
  416. EXPORT void obs_enum_services(bool (*enum_proc)(void*, obs_service_t*),
  417. void *param);
  418. /**
  419. * Gets a source by its name.
  420. *
  421. * Increments the source reference counter, use obs_source_release to
  422. * release it when complete.
  423. */
  424. EXPORT obs_source_t *obs_get_source_by_name(const char *name);
  425. /** Gets an output by its name. */
  426. EXPORT obs_output_t *obs_get_output_by_name(const char *name);
  427. /** Gets an encoder by its name. */
  428. EXPORT obs_encoder_t *obs_get_encoder_by_name(const char *name);
  429. /** Gets an service by its name. */
  430. EXPORT obs_service_t *obs_get_service_by_name(const char *name);
  431. enum obs_base_effect {
  432. OBS_EFFECT_DEFAULT, /**< RGB/YUV */
  433. OBS_EFFECT_DEFAULT_RECT, /**< RGB/YUV (using texture_rect) */
  434. OBS_EFFECT_OPAQUE, /**< RGB/YUV (alpha set to 1.0) */
  435. OBS_EFFECT_SOLID, /**< RGB/YUV (solid color only) */
  436. OBS_EFFECT_BICUBIC, /**< Bicubic downscale */
  437. OBS_EFFECT_LANCZOS, /**< Lanczos downscale */
  438. OBS_EFFECT_BILINEAR_LOWRES, /**< Bilinear low resolution downscale */
  439. OBS_EFFECT_PREMULTIPLIED_ALPHA,/**< Premultiplied alpha */
  440. };
  441. /** Returns a commonly used base effect */
  442. EXPORT gs_effect_t *obs_get_base_effect(enum obs_base_effect effect);
  443. /* DEPRECATED: gets texture_rect default effect */
  444. DEPRECATED_START EXPORT gs_effect_t *obs_get_default_rect_effect(void)
  445. DEPRECATED_END;
  446. /** Returns the primary obs signal handler */
  447. EXPORT signal_handler_t *obs_get_signal_handler(void);
  448. /** Returns the primary obs procedure handler */
  449. EXPORT proc_handler_t *obs_get_proc_handler(void);
  450. /** Renders the main view */
  451. EXPORT void obs_render_main_view(void);
  452. /** Sets the master user volume */
  453. EXPORT void obs_set_master_volume(float volume);
  454. /** Gets the master user volume */
  455. EXPORT float obs_get_master_volume(void);
  456. /** Saves a source to settings data */
  457. EXPORT obs_data_t *obs_save_source(obs_source_t *source);
  458. /** Loads a source from settings data */
  459. EXPORT obs_source_t *obs_load_source(obs_data_t *data);
  460. typedef void (*obs_load_source_cb)(void *private_data, obs_source_t *source);
  461. /** Loads sources from a data array */
  462. EXPORT void obs_load_sources(obs_data_array_t *array, obs_load_source_cb cb,
  463. void *private_data);
  464. /** Saves sources to a data array */
  465. EXPORT obs_data_array_t *obs_save_sources(void);
  466. typedef bool (*obs_save_source_filter_cb)(void *data, obs_source_t *source);
  467. EXPORT obs_data_array_t *obs_save_sources_filtered(obs_save_source_filter_cb cb,
  468. void *data);
  469. enum obs_obj_type {
  470. OBS_OBJ_TYPE_INVALID,
  471. OBS_OBJ_TYPE_SOURCE,
  472. OBS_OBJ_TYPE_OUTPUT,
  473. OBS_OBJ_TYPE_ENCODER,
  474. OBS_OBJ_TYPE_SERVICE
  475. };
  476. EXPORT enum obs_obj_type obs_obj_get_type(void *obj);
  477. EXPORT const char *obs_obj_get_id(void *obj);
  478. EXPORT bool obs_obj_invalid(void *obj);
  479. /* ------------------------------------------------------------------------- */
  480. /* View context */
  481. /**
  482. * Creates a view context.
  483. *
  484. * A view can be used for things like separate previews, or drawing
  485. * sources separately.
  486. */
  487. EXPORT obs_view_t *obs_view_create(void);
  488. /** Destroys this view context */
  489. EXPORT void obs_view_destroy(obs_view_t *view);
  490. /** Sets the source to be used for this view context. */
  491. EXPORT void obs_view_set_source(obs_view_t *view, uint32_t channel,
  492. obs_source_t *source);
  493. /** Gets the source currently in use for this view context */
  494. EXPORT obs_source_t *obs_view_get_source(obs_view_t *view,
  495. uint32_t channel);
  496. /** Renders the sources of this view context */
  497. EXPORT void obs_view_render(obs_view_t *view);
  498. EXPORT uint64_t obs_get_video_frame_time(void);
  499. /* ------------------------------------------------------------------------- */
  500. /* Display context */
  501. /**
  502. * Adds a new window display linked to the main render pipeline. This creates
  503. * a new swap chain which updates every frame.
  504. *
  505. * @param graphics_data The swap chain initialization data.
  506. * @return The new display context, or NULL if failed.
  507. */
  508. EXPORT obs_display_t *obs_display_create(
  509. const struct gs_init_data *graphics_data);
  510. /** Destroys a display context */
  511. EXPORT void obs_display_destroy(obs_display_t *display);
  512. /** Changes the size of this display */
  513. EXPORT void obs_display_resize(obs_display_t *display, uint32_t cx,
  514. uint32_t cy);
  515. /**
  516. * Adds a draw callback for this display context
  517. *
  518. * @param display The display context.
  519. * @param draw The draw callback which is called each time a frame
  520. * updates.
  521. * @param param The user data to be associated with this draw callback.
  522. */
  523. EXPORT void obs_display_add_draw_callback(obs_display_t *display,
  524. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  525. void *param);
  526. /** Removes a draw callback for this display context */
  527. EXPORT void obs_display_remove_draw_callback(obs_display_t *display,
  528. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  529. void *param);
  530. EXPORT void obs_display_set_enabled(obs_display_t *display, bool enable);
  531. EXPORT bool obs_display_enabled(obs_display_t *display);
  532. EXPORT void obs_display_set_background_color(obs_display_t *display,
  533. uint32_t color);
  534. /* ------------------------------------------------------------------------- */
  535. /* Sources */
  536. /** Returns the translated display name of a source */
  537. EXPORT const char *obs_source_get_display_name(const char *id);
  538. /**
  539. * Creates a source of the specified type with the specified settings.
  540. *
  541. * The "source" context is used for anything related to presenting
  542. * or modifying video/audio. Use obs_source_release to release it.
  543. */
  544. EXPORT obs_source_t *obs_source_create(const char *id, const char *name,
  545. obs_data_t *settings, obs_data_t *hotkey_data);
  546. EXPORT obs_source_t *obs_source_create_private(const char *id,
  547. const char *name, obs_data_t *settings);
  548. /* if source has OBS_SOURCE_DO_NOT_DUPLICATE output flag set, only returns a
  549. * reference */
  550. EXPORT obs_source_t *obs_source_duplicate(obs_source_t *source,
  551. const char *desired_name, bool create_private);
  552. /**
  553. * Adds/releases a reference to a source. When the last reference is
  554. * released, the source is destroyed.
  555. */
  556. EXPORT void obs_source_addref(obs_source_t *source);
  557. EXPORT void obs_source_release(obs_source_t *source);
  558. EXPORT void obs_weak_source_addref(obs_weak_source_t *weak);
  559. EXPORT void obs_weak_source_release(obs_weak_source_t *weak);
  560. EXPORT obs_source_t *obs_source_get_ref(obs_source_t *source);
  561. EXPORT obs_weak_source_t *obs_source_get_weak_source(obs_source_t *source);
  562. EXPORT obs_source_t *obs_weak_source_get_source(obs_weak_source_t *weak);
  563. EXPORT bool obs_weak_source_references_source(obs_weak_source_t *weak,
  564. obs_source_t *source);
  565. /** Notifies all references that the source should be released */
  566. EXPORT void obs_source_remove(obs_source_t *source);
  567. /** Returns true if the source should be released */
  568. EXPORT bool obs_source_removed(const obs_source_t *source);
  569. /** Returns capability flags of a source */
  570. EXPORT uint32_t obs_source_get_output_flags(const obs_source_t *source);
  571. /** Returns capability flags of a source type */
  572. EXPORT uint32_t obs_get_source_output_flags(const char *id);
  573. /** Gets the default settings for a source type */
  574. EXPORT obs_data_t *obs_get_source_defaults(const char *id);
  575. /** Returns the property list, if any. Free with obs_properties_destroy */
  576. EXPORT obs_properties_t *obs_get_source_properties(const char *id);
  577. /** Returns whether the source has custom properties or not */
  578. EXPORT bool obs_is_source_configurable(const char *id);
  579. EXPORT bool obs_source_configurable(const obs_source_t *source);
  580. /**
  581. * Returns the properties list for a specific existing source. Free with
  582. * obs_properties_destroy
  583. */
  584. EXPORT obs_properties_t *obs_source_properties(const obs_source_t *source);
  585. /** Updates settings for this source */
  586. EXPORT void obs_source_update(obs_source_t *source, obs_data_t *settings);
  587. /** Renders a video source. */
  588. EXPORT void obs_source_video_render(obs_source_t *source);
  589. /** Gets the width of a source (if it has video) */
  590. EXPORT uint32_t obs_source_get_width(obs_source_t *source);
  591. /** Gets the height of a source (if it has video) */
  592. EXPORT uint32_t obs_source_get_height(obs_source_t *source);
  593. /**
  594. * If the source is a filter, returns the parent source of the filter. Only
  595. * guaranteed to be valid inside of the video_render, filter_audio,
  596. * filter_video, and filter_remove callbacks.
  597. */
  598. EXPORT obs_source_t *obs_filter_get_parent(const obs_source_t *filter);
  599. /**
  600. * If the source is a filter, returns the target source of the filter. Only
  601. * guaranteed to be valid inside of the video_render, filter_audio,
  602. * filter_video, and filter_remove callbacks.
  603. */
  604. EXPORT obs_source_t *obs_filter_get_target(const obs_source_t *filter);
  605. /** Adds a filter to the source (which is used whenever the source is used) */
  606. EXPORT void obs_source_filter_add(obs_source_t *source, obs_source_t *filter);
  607. /** Removes a filter from the source */
  608. EXPORT void obs_source_filter_remove(obs_source_t *source,
  609. obs_source_t *filter);
  610. /** Modifies the order of a specific filter */
  611. EXPORT void obs_source_filter_set_order(obs_source_t *source,
  612. obs_source_t *filter, enum obs_order_movement movement);
  613. /** Gets the settings string for a source */
  614. EXPORT obs_data_t *obs_source_get_settings(const obs_source_t *source);
  615. /** Gets the name of a source */
  616. EXPORT const char *obs_source_get_name(const obs_source_t *source);
  617. /** Sets the name of a source */
  618. EXPORT void obs_source_set_name(obs_source_t *source, const char *name);
  619. /** Gets the source type */
  620. EXPORT enum obs_source_type obs_source_get_type(const obs_source_t *source);
  621. /** Gets the source identifier */
  622. EXPORT const char *obs_source_get_id(const obs_source_t *source);
  623. /** Returns the signal handler for a source */
  624. EXPORT signal_handler_t *obs_source_get_signal_handler(
  625. const obs_source_t *source);
  626. /** Returns the procedure handler for a source */
  627. EXPORT proc_handler_t *obs_source_get_proc_handler(const obs_source_t *source);
  628. /** Sets the user volume for a source that has audio output */
  629. EXPORT void obs_source_set_volume(obs_source_t *source, float volume);
  630. /** Gets the user volume for a source that has audio output */
  631. EXPORT float obs_source_get_volume(const obs_source_t *source);
  632. /** Sets the audio sync offset (in nanoseconds) for a source */
  633. EXPORT void obs_source_set_sync_offset(obs_source_t *source, int64_t offset);
  634. /** Gets the audio sync offset (in nanoseconds) for a source */
  635. EXPORT int64_t obs_source_get_sync_offset(const obs_source_t *source);
  636. /** Enumerates active child sources used by this source */
  637. EXPORT void obs_source_enum_active_sources(obs_source_t *source,
  638. obs_source_enum_proc_t enum_callback,
  639. void *param);
  640. /** Enumerates the entire active child source tree used by this source */
  641. EXPORT void obs_source_enum_active_tree(obs_source_t *source,
  642. obs_source_enum_proc_t enum_callback,
  643. void *param);
  644. /** Returns true if active, false if not */
  645. EXPORT bool obs_source_active(const obs_source_t *source);
  646. /**
  647. * Returns true if currently displayed somewhere (active or not), false if not
  648. */
  649. EXPORT bool obs_source_showing(const obs_source_t *source);
  650. /** Specifies that async video frames should be played as soon as possible */
  651. #define OBS_SOURCE_FLAG_UNBUFFERED (1<<0)
  652. /** Specifies to force audio to mono */
  653. #define OBS_SOURCE_FLAG_FORCE_MONO (1<<1)
  654. /**
  655. * Sets source flags. Note that these are different from the main output
  656. * flags. These are generally things that can be set by the source or user,
  657. * while the output flags are more used to determine capabilities of a source.
  658. */
  659. EXPORT void obs_source_set_flags(obs_source_t *source, uint32_t flags);
  660. /** Gets source flags. */
  661. EXPORT uint32_t obs_source_get_flags(const obs_source_t *source);
  662. /**
  663. * Sets audio mixer flags. These flags are used to specify which mixers
  664. * the source's audio should be applied to.
  665. */
  666. EXPORT void obs_source_set_audio_mixers(obs_source_t *source, uint32_t mixers);
  667. /** Gets audio mixer flags */
  668. EXPORT uint32_t obs_source_get_audio_mixers(const obs_source_t *source);
  669. /**
  670. * Increments the 'showing' reference counter to indicate that the source is
  671. * being shown somewhere. If the reference counter was 0, will call the 'show'
  672. * callback.
  673. */
  674. EXPORT void obs_source_inc_showing(obs_source_t *source);
  675. /**
  676. * Decrements the 'showing' reference counter to indicate that the source is
  677. * no longer being shown somewhere. If the reference counter is set to 0,
  678. * will call the 'hide' callback
  679. */
  680. EXPORT void obs_source_dec_showing(obs_source_t *source);
  681. /** Enumerates filters assigned to the source */
  682. EXPORT void obs_source_enum_filters(obs_source_t *source,
  683. obs_source_enum_proc_t callback, void *param);
  684. /** Gets a filter of a source by its display name. */
  685. EXPORT obs_source_t *obs_source_get_filter_by_name(obs_source_t *source,
  686. const char *name);
  687. EXPORT bool obs_source_enabled(const obs_source_t *source);
  688. EXPORT void obs_source_set_enabled(obs_source_t *source, bool enabled);
  689. EXPORT bool obs_source_muted(const obs_source_t *source);
  690. EXPORT void obs_source_set_muted(obs_source_t *source, bool muted);
  691. EXPORT bool obs_source_push_to_mute_enabled(obs_source_t *source);
  692. EXPORT void obs_source_enable_push_to_mute(obs_source_t *source, bool enabled);
  693. EXPORT uint64_t obs_source_get_push_to_mute_delay(obs_source_t *source);
  694. EXPORT void obs_source_set_push_to_mute_delay(obs_source_t *source,
  695. uint64_t delay);
  696. EXPORT bool obs_source_push_to_talk_enabled(obs_source_t *source);
  697. EXPORT void obs_source_enable_push_to_talk(obs_source_t *source, bool enabled);
  698. EXPORT uint64_t obs_source_get_push_to_talk_delay(obs_source_t *source);
  699. EXPORT void obs_source_set_push_to_talk_delay(obs_source_t *source,
  700. uint64_t delay);
  701. typedef void (*obs_source_audio_capture_t)(void *param, obs_source_t *source,
  702. const struct audio_data *audio_data, bool muted);
  703. EXPORT void obs_source_add_audio_capture_callback(obs_source_t *source,
  704. obs_source_audio_capture_t callback, void *param);
  705. EXPORT void obs_source_remove_audio_capture_callback(obs_source_t *source,
  706. obs_source_audio_capture_t callback, void *param);
  707. enum obs_deinterlace_mode {
  708. OBS_DEINTERLACE_MODE_DISABLE,
  709. OBS_DEINTERLACE_MODE_DISCARD,
  710. OBS_DEINTERLACE_MODE_RETRO,
  711. OBS_DEINTERLACE_MODE_BLEND,
  712. OBS_DEINTERLACE_MODE_BLEND_2X,
  713. OBS_DEINTERLACE_MODE_LINEAR,
  714. OBS_DEINTERLACE_MODE_LINEAR_2X,
  715. OBS_DEINTERLACE_MODE_YADIF,
  716. OBS_DEINTERLACE_MODE_YADIF_2X
  717. };
  718. enum obs_deinterlace_field_order {
  719. OBS_DEINTERLACE_FIELD_ORDER_TOP,
  720. OBS_DEINTERLACE_FIELD_ORDER_BOTTOM
  721. };
  722. EXPORT void obs_source_set_deinterlace_mode(obs_source_t *source,
  723. enum obs_deinterlace_mode mode);
  724. EXPORT enum obs_deinterlace_mode obs_source_get_deinterlace_mode(
  725. const obs_source_t *source);
  726. EXPORT void obs_source_set_deinterlace_field_order(obs_source_t *source,
  727. enum obs_deinterlace_field_order field_order);
  728. EXPORT enum obs_deinterlace_field_order obs_source_get_deinterlace_field_order(
  729. const obs_source_t *source);
  730. /* ------------------------------------------------------------------------- */
  731. /* Functions used by sources */
  732. EXPORT void *obs_source_get_type_data(obs_source_t *source);
  733. /**
  734. * Helper function to set the color matrix information when drawing the source.
  735. *
  736. * @param color_matrix The color matrix. Assigns to the 'color_matrix'
  737. * effect variable.
  738. * @param color_range_min The minimum color range. Assigns to the
  739. * 'color_range_min' effect variable. If NULL,
  740. * {0.0f, 0.0f, 0.0f} is used.
  741. * @param color_range_max The maximum color range. Assigns to the
  742. * 'color_range_max' effect variable. If NULL,
  743. * {1.0f, 1.0f, 1.0f} is used.
  744. */
  745. EXPORT void obs_source_draw_set_color_matrix(
  746. const struct matrix4 *color_matrix,
  747. const struct vec3 *color_range_min,
  748. const struct vec3 *color_range_max);
  749. /**
  750. * Helper function to draw sprites for a source (synchronous video).
  751. *
  752. * @param image The sprite texture to draw. Assigns to the 'image' variable
  753. * of the current effect.
  754. * @param x X position of the sprite.
  755. * @param y Y position of the sprite.
  756. * @param cx Width of the sprite. If 0, uses the texture width.
  757. * @param cy Height of the sprite. If 0, uses the texture height.
  758. * @param flip Specifies whether to flip the image vertically.
  759. */
  760. EXPORT void obs_source_draw(gs_texture_t *image, int x, int y,
  761. uint32_t cx, uint32_t cy, bool flip);
  762. /** Outputs asynchronous video data. Set to NULL to deactivate the texture */
  763. EXPORT void obs_source_output_video(obs_source_t *source,
  764. const struct obs_source_frame *frame);
  765. /** Outputs audio data (always asynchronous) */
  766. EXPORT void obs_source_output_audio(obs_source_t *source,
  767. const struct obs_source_audio *audio);
  768. /** Signal an update to any currently used properties via 'update_properties' */
  769. EXPORT void obs_source_update_properties(obs_source_t *source);
  770. /** Gets the current async video frame */
  771. EXPORT struct obs_source_frame *obs_source_get_frame(obs_source_t *source);
  772. /** Releases the current async video frame */
  773. EXPORT void obs_source_release_frame(obs_source_t *source,
  774. struct obs_source_frame *frame);
  775. /**
  776. * Default RGB filter handler for generic effect filters. Processes the
  777. * filter chain and renders them to texture if needed, then the filter is
  778. * drawn with
  779. *
  780. * After calling this, set your parameters for the effect, then call
  781. * obs_source_process_filter_end to draw the filter.
  782. *
  783. * Returns true if filtering should continue, false if the filter is bypassed
  784. * for whatever reason.
  785. */
  786. EXPORT bool obs_source_process_filter_begin(obs_source_t *filter,
  787. enum gs_color_format format,
  788. enum obs_allow_direct_render allow_direct);
  789. /**
  790. * Draws the filter.
  791. *
  792. * Before calling this function, first call obs_source_process_filter_begin and
  793. * then set the effect parameters, and then call this function to finalize the
  794. * filter.
  795. */
  796. EXPORT void obs_source_process_filter_end(obs_source_t *filter,
  797. gs_effect_t *effect, uint32_t width, uint32_t height);
  798. /**
  799. * Draws the filter with a specific technique.
  800. *
  801. * Before calling this function, first call obs_source_process_filter_begin and
  802. * then set the effect parameters, and then call this function to finalize the
  803. * filter.
  804. */
  805. EXPORT void obs_source_process_filter_tech_end(obs_source_t *filter,
  806. gs_effect_t *effect, uint32_t width, uint32_t height,
  807. const char *tech_name);
  808. /** Skips the filter if the filter is invalid and cannot be rendered */
  809. EXPORT void obs_source_skip_video_filter(obs_source_t *filter);
  810. /**
  811. * Adds an active child source. Must be called by parent sources on child
  812. * sources when the child is added and active. This ensures that the source is
  813. * properly activated if the parent is active.
  814. *
  815. * @returns true if source can be added, false if it causes recursion
  816. */
  817. EXPORT bool obs_source_add_active_child(obs_source_t *parent,
  818. obs_source_t *child);
  819. /**
  820. * Removes an active child source. Must be called by parent sources on child
  821. * sources when the child is removed or inactive. This ensures that the source
  822. * is properly deactivated if the parent is no longer active.
  823. */
  824. EXPORT void obs_source_remove_active_child(obs_source_t *parent,
  825. obs_source_t *child);
  826. /** Sends a mouse down/up event to a source */
  827. EXPORT void obs_source_send_mouse_click(obs_source_t *source,
  828. const struct obs_mouse_event *event,
  829. int32_t type, bool mouse_up,
  830. uint32_t click_count);
  831. /** Sends a mouse move event to a source. */
  832. EXPORT void obs_source_send_mouse_move(obs_source_t *source,
  833. const struct obs_mouse_event *event, bool mouse_leave);
  834. /** Sends a mouse wheel event to a source */
  835. EXPORT void obs_source_send_mouse_wheel(obs_source_t *source,
  836. const struct obs_mouse_event *event, int x_delta, int y_delta);
  837. /** Sends a got-focus or lost-focus event to a source */
  838. EXPORT void obs_source_send_focus(obs_source_t *source, bool focus);
  839. /** Sends a key up/down event to a source */
  840. EXPORT void obs_source_send_key_click(obs_source_t *source,
  841. const struct obs_key_event *event, bool key_up);
  842. /** Sets the default source flags. */
  843. EXPORT void obs_source_set_default_flags(obs_source_t *source, uint32_t flags);
  844. /** Gets the base width for a source (not taking in to account filtering) */
  845. EXPORT uint32_t obs_source_get_base_width(obs_source_t *source);
  846. /** Gets the base height for a source (not taking in to account filtering) */
  847. EXPORT uint32_t obs_source_get_base_height(obs_source_t *source);
  848. EXPORT bool obs_source_audio_pending(const obs_source_t *source);
  849. EXPORT uint64_t obs_source_get_audio_timestamp(const obs_source_t *source);
  850. EXPORT void obs_source_get_audio_mix(const obs_source_t *source,
  851. struct obs_source_audio_mix *audio);
  852. /* ------------------------------------------------------------------------- */
  853. /* Transition-specific functions */
  854. enum obs_transition_target {
  855. OBS_TRANSITION_SOURCE_A,
  856. OBS_TRANSITION_SOURCE_B
  857. };
  858. EXPORT obs_source_t *obs_transition_get_source(obs_source_t *transition,
  859. enum obs_transition_target target);
  860. EXPORT void obs_transition_clear(obs_source_t *transition);
  861. EXPORT obs_source_t *obs_transition_get_active_source(obs_source_t *transition);
  862. enum obs_transition_mode {
  863. OBS_TRANSITION_MODE_AUTO,
  864. };
  865. EXPORT bool obs_transition_start(obs_source_t *transition,
  866. enum obs_transition_mode mode, uint32_t duration_ms,
  867. obs_source_t *dest);
  868. EXPORT void obs_transition_set(obs_source_t *transition, obs_source_t *source);
  869. enum obs_transition_scale_type {
  870. OBS_TRANSITION_SCALE_MAX_ONLY,
  871. OBS_TRANSITION_SCALE_ASPECT,
  872. OBS_TRANSITION_SCALE_STRETCH,
  873. };
  874. EXPORT void obs_transition_set_scale_type(obs_source_t *transition,
  875. enum obs_transition_scale_type type);
  876. EXPORT enum obs_transition_scale_type obs_transition_get_scale_type(
  877. const obs_source_t *transition);
  878. EXPORT void obs_transition_set_alignment(obs_source_t *transition,
  879. uint32_t alignment);
  880. EXPORT uint32_t obs_transition_get_alignment(const obs_source_t *transition);
  881. EXPORT void obs_transition_set_size(obs_source_t *transition,
  882. uint32_t cx, uint32_t cy);
  883. EXPORT void obs_transition_get_size(const obs_source_t *transition,
  884. uint32_t *cx, uint32_t *cy);
  885. /* function used by transitions */
  886. /**
  887. * Enables fixed transitions (videos or specific types of transitions that
  888. * are of fixed duration and linearly interpolated
  889. */
  890. EXPORT void obs_transition_enable_fixed(obs_source_t *transition, bool enable,
  891. uint32_t duration_ms);
  892. EXPORT bool obs_transition_fixed(obs_source_t *transition);
  893. typedef void (*obs_transition_video_render_callback_t)(void *data,
  894. gs_texture_t *a, gs_texture_t *b, float t,
  895. uint32_t cx, uint32_t cy);
  896. typedef float (*obs_transition_audio_mix_callback_t)(void *data, float t);
  897. EXPORT void obs_transition_video_render(obs_source_t *transition,
  898. obs_transition_video_render_callback_t callback);
  899. EXPORT bool obs_transition_audio_render(obs_source_t *transition,
  900. uint64_t *ts_out, struct obs_source_audio_mix *audio,
  901. uint32_t mixers, size_t channels, size_t sample_rate,
  902. obs_transition_audio_mix_callback_t mix_a_callback,
  903. obs_transition_audio_mix_callback_t mix_b_callback);
  904. /* swaps transition sources and textures as an optimization and to reduce
  905. * memory usage when switching between transitions */
  906. EXPORT void obs_transition_swap_begin(obs_source_t *tr_dest,
  907. obs_source_t *tr_source);
  908. EXPORT void obs_transition_swap_end(obs_source_t *tr_dest,
  909. obs_source_t *tr_source);
  910. /* ------------------------------------------------------------------------- */
  911. /* Scenes */
  912. /**
  913. * Creates a scene.
  914. *
  915. * A scene is a source which is a container of other sources with specific
  916. * display oriantations. Scenes can also be used like any other source.
  917. */
  918. EXPORT obs_scene_t *obs_scene_create(const char *name);
  919. EXPORT obs_scene_t *obs_scene_create_private(const char *name);
  920. enum obs_scene_duplicate_type {
  921. OBS_SCENE_DUP_REFS, /**< Source refs only */
  922. OBS_SCENE_DUP_COPY, /**< Fully duplicate */
  923. OBS_SCENE_DUP_PRIVATE_REFS, /**< Source refs only (as private) */
  924. OBS_SCENE_DUP_PRIVATE_COPY /**< Fully duplicate (as private) */
  925. };
  926. /**
  927. * Duplicates a scene.
  928. */
  929. EXPORT obs_scene_t *obs_scene_duplicate(obs_scene_t *scene, const char *name,
  930. enum obs_scene_duplicate_type type);
  931. EXPORT void obs_scene_addref(obs_scene_t *scene);
  932. EXPORT void obs_scene_release(obs_scene_t *scene);
  933. /** Gets the scene's source context */
  934. EXPORT obs_source_t *obs_scene_get_source(const obs_scene_t *scene);
  935. /** Gets the scene from its source, or NULL if not a scene */
  936. EXPORT obs_scene_t *obs_scene_from_source(const obs_source_t *source);
  937. /** Determines whether a source is within a scene */
  938. EXPORT obs_sceneitem_t *obs_scene_find_source(obs_scene_t *scene,
  939. const char *name);
  940. /** Enumerates sources within a scene */
  941. EXPORT void obs_scene_enum_items(obs_scene_t *scene,
  942. bool (*callback)(obs_scene_t*, obs_sceneitem_t*, void*),
  943. void *param);
  944. EXPORT bool obs_scene_reorder_items(obs_scene_t *scene,
  945. obs_sceneitem_t * const *item_order, size_t item_order_size);
  946. /** Adds/creates a new scene item for a source */
  947. EXPORT obs_sceneitem_t *obs_scene_add(obs_scene_t *scene, obs_source_t *source);
  948. typedef void (*obs_scene_atomic_update_func)(void *, obs_scene_t *scene);
  949. EXPORT void obs_scene_atomic_update(obs_scene_t *scene,
  950. obs_scene_atomic_update_func func, void *data);
  951. EXPORT void obs_sceneitem_addref(obs_sceneitem_t *item);
  952. EXPORT void obs_sceneitem_release(obs_sceneitem_t *item);
  953. /** Removes a scene item. */
  954. EXPORT void obs_sceneitem_remove(obs_sceneitem_t *item);
  955. /** Gets the scene parent associated with the scene item. */
  956. EXPORT obs_scene_t *obs_sceneitem_get_scene(const obs_sceneitem_t *item);
  957. /** Gets the source of a scene item. */
  958. EXPORT obs_source_t *obs_sceneitem_get_source(const obs_sceneitem_t *item);
  959. EXPORT void obs_sceneitem_select(obs_sceneitem_t *item, bool select);
  960. EXPORT bool obs_sceneitem_selected(const obs_sceneitem_t *item);
  961. /* Functions for gettings/setting specific orientation of a scene item */
  962. EXPORT void obs_sceneitem_set_pos(obs_sceneitem_t *item, const struct vec2 *pos);
  963. EXPORT void obs_sceneitem_set_rot(obs_sceneitem_t *item, float rot_deg);
  964. EXPORT void obs_sceneitem_set_scale(obs_sceneitem_t *item,
  965. const struct vec2 *scale);
  966. EXPORT void obs_sceneitem_set_alignment(obs_sceneitem_t *item,
  967. uint32_t alignment);
  968. EXPORT void obs_sceneitem_set_order(obs_sceneitem_t *item,
  969. enum obs_order_movement movement);
  970. EXPORT void obs_sceneitem_set_order_position(obs_sceneitem_t *item,
  971. int position);
  972. EXPORT void obs_sceneitem_set_bounds_type(obs_sceneitem_t *item,
  973. enum obs_bounds_type type);
  974. EXPORT void obs_sceneitem_set_bounds_alignment(obs_sceneitem_t *item,
  975. uint32_t alignment);
  976. EXPORT void obs_sceneitem_set_bounds(obs_sceneitem_t *item,
  977. const struct vec2 *bounds);
  978. EXPORT void obs_sceneitem_get_pos(const obs_sceneitem_t *item,
  979. struct vec2 *pos);
  980. EXPORT float obs_sceneitem_get_rot(const obs_sceneitem_t *item);
  981. EXPORT void obs_sceneitem_get_scale(const obs_sceneitem_t *item,
  982. struct vec2 *scale);
  983. EXPORT uint32_t obs_sceneitem_get_alignment(const obs_sceneitem_t *item);
  984. EXPORT enum obs_bounds_type obs_sceneitem_get_bounds_type(
  985. const obs_sceneitem_t *item);
  986. EXPORT uint32_t obs_sceneitem_get_bounds_alignment(const obs_sceneitem_t *item);
  987. EXPORT void obs_sceneitem_get_bounds(const obs_sceneitem_t *item,
  988. struct vec2 *bounds);
  989. EXPORT void obs_sceneitem_get_info(const obs_sceneitem_t *item,
  990. struct obs_transform_info *info);
  991. EXPORT void obs_sceneitem_set_info(obs_sceneitem_t *item,
  992. const struct obs_transform_info *info);
  993. EXPORT void obs_sceneitem_get_draw_transform(const obs_sceneitem_t *item,
  994. struct matrix4 *transform);
  995. EXPORT void obs_sceneitem_get_box_transform(const obs_sceneitem_t *item,
  996. struct matrix4 *transform);
  997. EXPORT bool obs_sceneitem_visible(const obs_sceneitem_t *item);
  998. EXPORT bool obs_sceneitem_set_visible(obs_sceneitem_t *item, bool visible);
  999. struct obs_sceneitem_crop {
  1000. int left;
  1001. int top;
  1002. int right;
  1003. int bottom;
  1004. };
  1005. EXPORT void obs_sceneitem_set_crop(obs_sceneitem_t *item,
  1006. const struct obs_sceneitem_crop *crop);
  1007. EXPORT void obs_sceneitem_get_crop(const obs_sceneitem_t *item,
  1008. struct obs_sceneitem_crop *crop);
  1009. EXPORT void obs_sceneitem_set_scale_filter(obs_sceneitem_t *item,
  1010. enum obs_scale_type filter);
  1011. EXPORT enum obs_scale_type obs_sceneitem_get_scale_filter(
  1012. obs_sceneitem_t *item);
  1013. EXPORT void obs_sceneitem_defer_update_begin(obs_sceneitem_t *item);
  1014. EXPORT void obs_sceneitem_defer_update_end(obs_sceneitem_t *item);
  1015. /* ------------------------------------------------------------------------- */
  1016. /* Outputs */
  1017. EXPORT const char *obs_output_get_display_name(const char *id);
  1018. /**
  1019. * Creates an output.
  1020. *
  1021. * Outputs allow outputting to file, outputting to network, outputting to
  1022. * directshow, or other custom outputs.
  1023. */
  1024. EXPORT obs_output_t *obs_output_create(const char *id, const char *name,
  1025. obs_data_t *settings, obs_data_t *hotkey_data);
  1026. /**
  1027. * Adds/releases a reference to an output. When the last reference is
  1028. * released, the output is destroyed.
  1029. */
  1030. EXPORT void obs_output_addref(obs_output_t *output);
  1031. EXPORT void obs_output_release(obs_output_t *output);
  1032. EXPORT void obs_weak_output_addref(obs_weak_output_t *weak);
  1033. EXPORT void obs_weak_output_release(obs_weak_output_t *weak);
  1034. EXPORT obs_output_t *obs_output_get_ref(obs_output_t *output);
  1035. EXPORT obs_weak_output_t *obs_output_get_weak_output(obs_output_t *output);
  1036. EXPORT obs_output_t *obs_weak_output_get_output(obs_weak_output_t *weak);
  1037. EXPORT bool obs_weak_output_references_output(obs_weak_output_t *weak,
  1038. obs_output_t *output);
  1039. EXPORT const char *obs_output_get_name(const obs_output_t *output);
  1040. /** Starts the output. */
  1041. EXPORT bool obs_output_start(obs_output_t *output);
  1042. /** Stops the output. */
  1043. EXPORT void obs_output_stop(obs_output_t *output);
  1044. /**
  1045. * On reconnection, start where it left of on reconnection. Note however that
  1046. * this option will consume extra memory to continually increase delay while
  1047. * waiting to reconnect.
  1048. */
  1049. #define OBS_OUTPUT_DELAY_PRESERVE (1<<0)
  1050. /**
  1051. * Sets the current output delay, in seconds (if the output supports delay).
  1052. *
  1053. * If delay is currently active, it will set the delay value, but will not
  1054. * affect the current delay, it will only affect the next time the output is
  1055. * activated.
  1056. */
  1057. EXPORT void obs_output_set_delay(obs_output_t *output, uint32_t delay_sec,
  1058. uint32_t flags);
  1059. /** Gets the currently set delay value, in seconds. */
  1060. EXPORT uint32_t obs_output_get_delay(const obs_output_t *output);
  1061. /** If delay is active, gets the currently active delay value, in seconds. */
  1062. EXPORT uint32_t obs_output_get_active_delay(const obs_output_t *output);
  1063. /** Forces the output to stop. Usually only used with delay. */
  1064. EXPORT void obs_output_force_stop(obs_output_t *output);
  1065. /** Returns whether the output is active */
  1066. EXPORT bool obs_output_active(const obs_output_t *output);
  1067. /** Gets the default settings for an output type */
  1068. EXPORT obs_data_t *obs_output_defaults(const char *id);
  1069. /** Returns the property list, if any. Free with obs_properties_destroy */
  1070. EXPORT obs_properties_t *obs_get_output_properties(const char *id);
  1071. /**
  1072. * Returns the property list of an existing output, if any. Free with
  1073. * obs_properties_destroy
  1074. */
  1075. EXPORT obs_properties_t *obs_output_properties(const obs_output_t *output);
  1076. /** Updates the settings for this output context */
  1077. EXPORT void obs_output_update(obs_output_t *output, obs_data_t *settings);
  1078. /** Specifies whether the output can be paused */
  1079. EXPORT bool obs_output_can_pause(const obs_output_t *output);
  1080. /** Pauses the output (if the functionality is allowed by the output */
  1081. EXPORT void obs_output_pause(obs_output_t *output);
  1082. /* Gets the current output settings string */
  1083. EXPORT obs_data_t *obs_output_get_settings(const obs_output_t *output);
  1084. /** Returns the signal handler for an output */
  1085. EXPORT signal_handler_t *obs_output_get_signal_handler(
  1086. const obs_output_t *output);
  1087. /** Returns the procedure handler for an output */
  1088. EXPORT proc_handler_t *obs_output_get_proc_handler(const obs_output_t *output);
  1089. /**
  1090. * Sets the current video media context associated with this output,
  1091. * required for non-encoded outputs
  1092. */
  1093. EXPORT void obs_output_set_video(obs_output_t *output, video_t *video);
  1094. /**
  1095. * Sets the current audio/video media contexts associated with this output,
  1096. * required for non-encoded outputs. Can be null.
  1097. */
  1098. EXPORT void obs_output_set_media(obs_output_t *output,
  1099. video_t *video, audio_t *audio);
  1100. /** Returns the video media context associated with this output */
  1101. EXPORT video_t *obs_output_video(const obs_output_t *output);
  1102. /** Returns the audio media context associated with this output */
  1103. EXPORT audio_t *obs_output_audio(const obs_output_t *output);
  1104. /** Sets the current audio mixer for non-encoded outputs */
  1105. EXPORT void obs_output_set_mixer(obs_output_t *output, size_t mixer_idx);
  1106. /** Gets the current audio mixer for non-encoded outputs */
  1107. EXPORT size_t obs_output_get_mixer(const obs_output_t *output);
  1108. /**
  1109. * Sets the current video encoder associated with this output,
  1110. * required for encoded outputs
  1111. */
  1112. EXPORT void obs_output_set_video_encoder(obs_output_t *output,
  1113. obs_encoder_t *encoder);
  1114. /**
  1115. * Sets the current audio encoder associated with this output,
  1116. * required for encoded outputs.
  1117. *
  1118. * The idx parameter specifies the audio encoder index to set the encoder to.
  1119. * Only used with outputs that have multiple audio outputs (RTMP typically),
  1120. * otherwise the parameter is ignored.
  1121. */
  1122. EXPORT void obs_output_set_audio_encoder(obs_output_t *output,
  1123. obs_encoder_t *encoder, size_t idx);
  1124. /** Returns the current video encoder associated with this output */
  1125. EXPORT obs_encoder_t *obs_output_get_video_encoder(const obs_output_t *output);
  1126. /**
  1127. * Returns the current audio encoder associated with this output
  1128. *
  1129. * The idx parameter specifies the audio encoder index. Only used with
  1130. * outputs that have multiple audio outputs, otherwise the parameter is
  1131. * ignored.
  1132. */
  1133. EXPORT obs_encoder_t *obs_output_get_audio_encoder(const obs_output_t *output,
  1134. size_t idx);
  1135. /** Sets the current service associated with this output. */
  1136. EXPORT void obs_output_set_service(obs_output_t *output,
  1137. obs_service_t *service);
  1138. /** Gets the current service associated with this output. */
  1139. EXPORT obs_service_t *obs_output_get_service(const obs_output_t *output);
  1140. /**
  1141. * Sets the reconnect settings. Set retry_count to 0 to disable reconnecting.
  1142. */
  1143. EXPORT void obs_output_set_reconnect_settings(obs_output_t *output,
  1144. int retry_count, int retry_sec);
  1145. EXPORT uint64_t obs_output_get_total_bytes(const obs_output_t *output);
  1146. EXPORT int obs_output_get_frames_dropped(const obs_output_t *output);
  1147. EXPORT int obs_output_get_total_frames(const obs_output_t *output);
  1148. /**
  1149. * Sets the preferred scaled resolution for this output. Set width and height
  1150. * to 0 to disable scaling.
  1151. *
  1152. * If this output uses an encoder, it will call obs_encoder_set_scaled_size on
  1153. * the encoder before the stream is started. If the encoder is already active,
  1154. * then this function will trigger a warning and do nothing.
  1155. */
  1156. EXPORT void obs_output_set_preferred_size(obs_output_t *output, uint32_t width,
  1157. uint32_t height);
  1158. /** For video outputs, returns the width of the encoded image */
  1159. EXPORT uint32_t obs_output_get_width(const obs_output_t *output);
  1160. /** For video outputs, returns the height of the encoded image */
  1161. EXPORT uint32_t obs_output_get_height(const obs_output_t *output);
  1162. EXPORT const char *obs_output_get_id(const obs_output_t *output);
  1163. /* ------------------------------------------------------------------------- */
  1164. /* Functions used by outputs */
  1165. EXPORT void *obs_output_get_type_data(obs_output_t *output);
  1166. /** Optionally sets the video conversion info. Used only for raw output */
  1167. EXPORT void obs_output_set_video_conversion(obs_output_t *output,
  1168. const struct video_scale_info *conversion);
  1169. /** Optionally sets the audio conversion info. Used only for raw output */
  1170. EXPORT void obs_output_set_audio_conversion(obs_output_t *output,
  1171. const struct audio_convert_info *conversion);
  1172. /** Returns whether data capture can begin with the specified flags */
  1173. EXPORT bool obs_output_can_begin_data_capture(const obs_output_t *output,
  1174. uint32_t flags);
  1175. /** Initializes encoders (if any) */
  1176. EXPORT bool obs_output_initialize_encoders(obs_output_t *output,
  1177. uint32_t flags);
  1178. /**
  1179. * Begins data capture from media/encoders.
  1180. *
  1181. * @param output Output context
  1182. * @param flags Set this to 0 to use default output flags set in the
  1183. * obs_output_info structure, otherwise set to a either
  1184. * OBS_OUTPUT_VIDEO or OBS_OUTPUT_AUDIO to specify whether to
  1185. * connect audio or video. This is useful for things like
  1186. * ffmpeg which may or may not always want to use both audio
  1187. * and video.
  1188. * @return true if successful, false otherwise.
  1189. */
  1190. EXPORT bool obs_output_begin_data_capture(obs_output_t *output, uint32_t flags);
  1191. /** Ends data capture from media/encoders */
  1192. EXPORT void obs_output_end_data_capture(obs_output_t *output);
  1193. /**
  1194. * Signals that the output has stopped itself.
  1195. *
  1196. * @param output Output context
  1197. * @param code Error code (or OBS_OUTPUT_SUCCESS if not an error)
  1198. */
  1199. EXPORT void obs_output_signal_stop(obs_output_t *output, int code);
  1200. /* ------------------------------------------------------------------------- */
  1201. /* Encoders */
  1202. EXPORT const char *obs_encoder_get_display_name(const char *id);
  1203. /**
  1204. * Creates a video encoder context
  1205. *
  1206. * @param id Video encoder ID
  1207. * @param name Name to assign to this context
  1208. * @param settings Settings
  1209. * @return The video encoder context, or NULL if failed or not found.
  1210. */
  1211. EXPORT obs_encoder_t *obs_video_encoder_create(const char *id, const char *name,
  1212. obs_data_t *settings, obs_data_t *hotkey_data);
  1213. /**
  1214. * Creates an audio encoder context
  1215. *
  1216. * @param id Audio Encoder ID
  1217. * @param name Name to assign to this context
  1218. * @param settings Settings
  1219. * @param mixer_idx Index of the mixer to use for this audio encoder
  1220. * @return The video encoder context, or NULL if failed or not found.
  1221. */
  1222. EXPORT obs_encoder_t *obs_audio_encoder_create(const char *id, const char *name,
  1223. obs_data_t *settings, size_t mixer_idx,
  1224. obs_data_t *hotkey_data);
  1225. /**
  1226. * Adds/releases a reference to an encoder. When the last reference is
  1227. * released, the encoder is destroyed.
  1228. */
  1229. EXPORT void obs_encoder_addref(obs_encoder_t *encoder);
  1230. EXPORT void obs_encoder_release(obs_encoder_t *encoder);
  1231. EXPORT void obs_weak_encoder_addref(obs_weak_encoder_t *weak);
  1232. EXPORT void obs_weak_encoder_release(obs_weak_encoder_t *weak);
  1233. EXPORT obs_encoder_t *obs_encoder_get_ref(obs_encoder_t *encoder);
  1234. EXPORT obs_weak_encoder_t *obs_encoder_get_weak_encoder(obs_encoder_t *encoder);
  1235. EXPORT obs_encoder_t *obs_weak_encoder_get_encoder(obs_weak_encoder_t *weak);
  1236. EXPORT bool obs_weak_encoder_references_encoder(obs_weak_encoder_t *weak,
  1237. obs_encoder_t *encoder);
  1238. EXPORT void obs_encoder_set_name(obs_encoder_t *encoder, const char *name);
  1239. EXPORT const char *obs_encoder_get_name(const obs_encoder_t *encoder);
  1240. /** Returns the codec of an encoder by the id */
  1241. EXPORT const char *obs_get_encoder_codec(const char *id);
  1242. /** Returns the type of an encoder by the id */
  1243. EXPORT enum obs_encoder_type obs_get_encoder_type(const char *id);
  1244. /** Returns the codec of the encoder */
  1245. EXPORT const char *obs_encoder_get_codec(const obs_encoder_t *encoder);
  1246. /** Returns the type of an encoder */
  1247. EXPORT enum obs_encoder_type obs_encoder_get_type(const obs_encoder_t *encoder);
  1248. /**
  1249. * Sets the scaled resolution for a video encoder. Set width and height to 0
  1250. * to disable scaling. If the encoder is active, this function will trigger
  1251. * a warning, and do nothing.
  1252. */
  1253. EXPORT void obs_encoder_set_scaled_size(obs_encoder_t *encoder, uint32_t width,
  1254. uint32_t height);
  1255. /** For video encoders, returns the width of the encoded image */
  1256. EXPORT uint32_t obs_encoder_get_width(const obs_encoder_t *encoder);
  1257. /** For video encoders, returns the height of the encoded image */
  1258. EXPORT uint32_t obs_encoder_get_height(const obs_encoder_t *encoder);
  1259. /** For audio encoders, returns the sample rate of the audio */
  1260. EXPORT uint32_t obs_encoder_get_sample_rate(const obs_encoder_t *encoder);
  1261. /**
  1262. * Sets the preferred video format for a video encoder. If the encoder can use
  1263. * the format specified, it will force a conversion to that format if the
  1264. * obs output format does not match the preferred format.
  1265. *
  1266. * If the format is set to VIDEO_FORMAT_NONE, will revert to the default
  1267. * functionality of converting only when absolutely necessary.
  1268. */
  1269. EXPORT void obs_encoder_set_preferred_video_format(obs_encoder_t *encoder,
  1270. enum video_format format);
  1271. EXPORT enum video_format obs_encoder_get_preferred_video_format(
  1272. const obs_encoder_t *encoder);
  1273. /** Gets the default settings for an encoder type */
  1274. EXPORT obs_data_t *obs_encoder_defaults(const char *id);
  1275. /** Returns the property list, if any. Free with obs_properties_destroy */
  1276. EXPORT obs_properties_t *obs_get_encoder_properties(const char *id);
  1277. /**
  1278. * Returns the property list of an existing encoder, if any. Free with
  1279. * obs_properties_destroy
  1280. */
  1281. EXPORT obs_properties_t *obs_encoder_properties(const obs_encoder_t *encoder);
  1282. /**
  1283. * Updates the settings of the encoder context. Usually used for changing
  1284. * bitrate while active
  1285. */
  1286. EXPORT void obs_encoder_update(obs_encoder_t *encoder, obs_data_t *settings);
  1287. /** Gets extra data (headers) associated with this context */
  1288. EXPORT bool obs_encoder_get_extra_data(const obs_encoder_t *encoder,
  1289. uint8_t **extra_data, size_t *size);
  1290. /** Returns the current settings for this encoder */
  1291. EXPORT obs_data_t *obs_encoder_get_settings(const obs_encoder_t *encoder);
  1292. /** Sets the video output context to be used with this encoder */
  1293. EXPORT void obs_encoder_set_video(obs_encoder_t *encoder, video_t *video);
  1294. /** Sets the audio output context to be used with this encoder */
  1295. EXPORT void obs_encoder_set_audio(obs_encoder_t *encoder, audio_t *audio);
  1296. /**
  1297. * Returns the video output context used with this encoder, or NULL if not
  1298. * a video context
  1299. */
  1300. EXPORT video_t *obs_encoder_video(const obs_encoder_t *encoder);
  1301. /**
  1302. * Returns the audio output context used with this encoder, or NULL if not
  1303. * a audio context
  1304. */
  1305. EXPORT audio_t *obs_encoder_audio(const obs_encoder_t *encoder);
  1306. /** Returns true if encoder is active, false otherwise */
  1307. EXPORT bool obs_encoder_active(const obs_encoder_t *encoder);
  1308. EXPORT void *obs_encoder_get_type_data(obs_encoder_t *encoder);
  1309. EXPORT const char *obs_encoder_get_id(const obs_encoder_t *encoder);
  1310. EXPORT uint32_t obs_get_encoder_caps(const char *encoder_id);
  1311. /** Duplicates an encoder packet */
  1312. EXPORT void obs_duplicate_encoder_packet(struct encoder_packet *dst,
  1313. const struct encoder_packet *src);
  1314. EXPORT void obs_free_encoder_packet(struct encoder_packet *packet);
  1315. /* ------------------------------------------------------------------------- */
  1316. /* Stream Services */
  1317. EXPORT const char *obs_service_get_display_name(const char *id);
  1318. EXPORT obs_service_t *obs_service_create(const char *id, const char *name,
  1319. obs_data_t *settings, obs_data_t *hotkey_data);
  1320. EXPORT obs_service_t *obs_service_create_private(const char *id,
  1321. const char *name, obs_data_t *settings);
  1322. /**
  1323. * Adds/releases a reference to a service. When the last reference is
  1324. * released, the service is destroyed.
  1325. */
  1326. EXPORT void obs_service_addref(obs_service_t *service);
  1327. EXPORT void obs_service_release(obs_service_t *service);
  1328. EXPORT void obs_weak_service_addref(obs_weak_service_t *weak);
  1329. EXPORT void obs_weak_service_release(obs_weak_service_t *weak);
  1330. EXPORT obs_service_t *obs_service_get_ref(obs_service_t *service);
  1331. EXPORT obs_weak_service_t *obs_service_get_weak_service(obs_service_t *service);
  1332. EXPORT obs_service_t *obs_weak_service_get_service(obs_weak_service_t *weak);
  1333. EXPORT bool obs_weak_service_references_service(obs_weak_service_t *weak,
  1334. obs_service_t *service);
  1335. EXPORT const char *obs_service_get_name(const obs_service_t *service);
  1336. /** Gets the default settings for a service */
  1337. EXPORT obs_data_t *obs_service_defaults(const char *id);
  1338. /** Returns the property list, if any. Free with obs_properties_destroy */
  1339. EXPORT obs_properties_t *obs_get_service_properties(const char *id);
  1340. /**
  1341. * Returns the property list of an existing service context, if any. Free with
  1342. * obs_properties_destroy
  1343. */
  1344. EXPORT obs_properties_t *obs_service_properties(const obs_service_t *service);
  1345. /** Gets the service type */
  1346. EXPORT const char *obs_service_get_type(const obs_service_t *service);
  1347. /** Updates the settings of the service context */
  1348. EXPORT void obs_service_update(obs_service_t *service, obs_data_t *settings);
  1349. /** Returns the current settings for this service */
  1350. EXPORT obs_data_t *obs_service_get_settings(const obs_service_t *service);
  1351. /** Returns the URL for this service context */
  1352. EXPORT const char *obs_service_get_url(const obs_service_t *service);
  1353. /** Returns the stream key (if any) for this service context */
  1354. EXPORT const char *obs_service_get_key(const obs_service_t *service);
  1355. /** Returns the username (if any) for this service context */
  1356. EXPORT const char *obs_service_get_username(const obs_service_t *service);
  1357. /** Returns the password (if any) for this service context */
  1358. EXPORT const char *obs_service_get_password(const obs_service_t *service);
  1359. /**
  1360. * Applies service-specific video encoder settings.
  1361. *
  1362. * @param video_encoder_settings Video encoder settings. Optional.
  1363. * @param audio_encoder_settings Audio encoder settings. Optional.
  1364. */
  1365. EXPORT void obs_service_apply_encoder_settings(obs_service_t *service,
  1366. obs_data_t *video_encoder_settings,
  1367. obs_data_t *audio_encoder_settings);
  1368. EXPORT void *obs_service_get_type_data(obs_service_t *service);
  1369. EXPORT const char *obs_service_get_id(const obs_service_t *service);
  1370. /* ------------------------------------------------------------------------- */
  1371. /* Source frame allocation functions */
  1372. EXPORT void obs_source_frame_init(struct obs_source_frame *frame,
  1373. enum video_format format, uint32_t width, uint32_t height);
  1374. static inline void obs_source_frame_free(struct obs_source_frame *frame)
  1375. {
  1376. if (frame) {
  1377. bfree(frame->data[0]);
  1378. memset(frame, 0, sizeof(*frame));
  1379. }
  1380. }
  1381. static inline struct obs_source_frame *obs_source_frame_create(
  1382. enum video_format format, uint32_t width, uint32_t height)
  1383. {
  1384. struct obs_source_frame *frame;
  1385. frame = (struct obs_source_frame*)bzalloc(sizeof(*frame));
  1386. obs_source_frame_init(frame, format, width, height);
  1387. return frame;
  1388. }
  1389. static inline void obs_source_frame_destroy(struct obs_source_frame *frame)
  1390. {
  1391. if (frame) {
  1392. bfree(frame->data[0]);
  1393. bfree(frame);
  1394. }
  1395. }
  1396. #ifdef __cplusplus
  1397. }
  1398. #endif