obs.h 67 KB

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