obs.h 56 KB

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