obs.h 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403
  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/text-lookup.h"
  18. #include "graphics/graphics.h"
  19. #include "graphics/vec2.h"
  20. #include "graphics/vec3.h"
  21. #include "media-io/audio-io.h"
  22. #include "media-io/video-io.h"
  23. #include "callback/signal.h"
  24. #include "callback/proc.h"
  25. #include "obs-config.h"
  26. #include "obs-defs.h"
  27. #include "obs-data.h"
  28. #include "obs-ui.h"
  29. #include "obs-properties.h"
  30. #include "obs-interaction.h"
  31. struct matrix4;
  32. /* opaque types */
  33. struct obs_display;
  34. struct obs_view;
  35. struct obs_source;
  36. struct obs_scene;
  37. struct obs_scene_item;
  38. struct obs_output;
  39. struct obs_encoder;
  40. struct obs_service;
  41. struct obs_module;
  42. struct obs_fader;
  43. struct obs_volmeter;
  44. typedef struct obs_display obs_display_t;
  45. typedef struct obs_view obs_view_t;
  46. typedef struct obs_source obs_source_t;
  47. typedef struct obs_scene obs_scene_t;
  48. typedef struct obs_scene_item obs_sceneitem_t;
  49. typedef struct obs_output obs_output_t;
  50. typedef struct obs_encoder obs_encoder_t;
  51. typedef struct obs_service obs_service_t;
  52. typedef struct obs_module obs_module_t;
  53. typedef struct obs_fader obs_fader_t;
  54. typedef struct obs_volmeter obs_volmeter_t;
  55. #include "obs-source.h"
  56. #include "obs-encoder.h"
  57. #include "obs-output.h"
  58. #include "obs-service.h"
  59. #include "obs-audio-controls.h"
  60. /**
  61. * @file
  62. * @brief Main libobs header used by applications.
  63. *
  64. * @mainpage
  65. *
  66. * @section intro_sec Introduction
  67. *
  68. * This document describes the api for libobs to be used by applications as well
  69. * as @ref modules_page implementing some kind of functionality.
  70. *
  71. */
  72. #ifdef __cplusplus
  73. extern "C" {
  74. #endif
  75. /** Used for changing the order of items (for example, filters in a source,
  76. * or items in a scene) */
  77. enum obs_order_movement {
  78. OBS_ORDER_MOVE_UP,
  79. OBS_ORDER_MOVE_DOWN,
  80. OBS_ORDER_MOVE_TOP,
  81. OBS_ORDER_MOVE_BOTTOM
  82. };
  83. /**
  84. * Used with obs_source_process_filter to specify whether the filter should
  85. * render the source directly with the specified effect, or whether it should
  86. * render it to a texture
  87. */
  88. enum obs_allow_direct_render {
  89. OBS_NO_DIRECT_RENDERING,
  90. OBS_ALLOW_DIRECT_RENDERING,
  91. };
  92. enum obs_scale_type {
  93. OBS_SCALE_BICUBIC,
  94. OBS_SCALE_BILINEAR,
  95. OBS_SCALE_LANCZOS
  96. };
  97. /**
  98. * Used with scene items to indicate the type of bounds to use for scene items.
  99. * Mostly determines how the image will be scaled within those bounds, or
  100. * whether to use bounds at all.
  101. */
  102. enum obs_bounds_type {
  103. OBS_BOUNDS_NONE, /**< no bounds */
  104. OBS_BOUNDS_STRETCH, /**< stretch (ignores base scale) */
  105. OBS_BOUNDS_SCALE_INNER, /**< scales to inner rectangle */
  106. OBS_BOUNDS_SCALE_OUTER, /**< scales to outer rectangle */
  107. OBS_BOUNDS_SCALE_TO_WIDTH, /**< scales to the width */
  108. OBS_BOUNDS_SCALE_TO_HEIGHT, /**< scales to the height */
  109. OBS_BOUNDS_MAX_ONLY, /**< no scaling, maximum size only */
  110. };
  111. struct obs_transform_info {
  112. struct vec2 pos;
  113. float rot;
  114. struct vec2 scale;
  115. uint32_t alignment;
  116. enum obs_bounds_type bounds_type;
  117. uint32_t bounds_alignment;
  118. struct vec2 bounds;
  119. };
  120. /**
  121. * Video initialization structure
  122. */
  123. struct obs_video_info {
  124. /**
  125. * Graphics module to use (usually "libobs-opengl" or "libobs-d3d11")
  126. */
  127. const char *graphics_module;
  128. uint32_t fps_num; /**< Output FPS numerator */
  129. uint32_t fps_den; /**< Output FPS denominator */
  130. uint32_t window_width; /**< Window width */
  131. uint32_t window_height; /**< Window height */
  132. uint32_t base_width; /**< Base compositing width */
  133. uint32_t base_height; /**< Base compositing height */
  134. uint32_t output_width; /**< Output width */
  135. uint32_t output_height; /**< Output height */
  136. enum video_format output_format; /**< Output format */
  137. /** Video adapter index to use (NOTE: avoid for optimus laptops) */
  138. uint32_t adapter;
  139. struct gs_window window; /**< Window to render to */
  140. /** Use shaders to convert to different color formats */
  141. bool gpu_conversion;
  142. enum video_colorspace colorspace; /**< YUV type (if YUV) */
  143. enum video_range_type range; /**< YUV range (if YUV) */
  144. enum obs_scale_type scale_type; /**< How to scale if scaling */
  145. };
  146. /**
  147. * Audio initialization structure
  148. */
  149. struct obs_audio_info {
  150. uint32_t samples_per_sec;
  151. enum speaker_layout speakers;
  152. uint64_t buffer_ms;
  153. };
  154. /**
  155. * Sent to source filters via the filter_audio callback to allow filtering of
  156. * audio data
  157. */
  158. struct obs_audio_data {
  159. uint8_t *data[MAX_AV_PLANES];
  160. uint32_t frames;
  161. uint64_t timestamp;
  162. };
  163. /**
  164. * Source audio output structure. Used with obs_source_output_audio to output
  165. * source audio. Audio is automatically resampled and remixed as necessary.
  166. */
  167. struct obs_source_audio {
  168. const uint8_t *data[MAX_AV_PLANES];
  169. uint32_t frames;
  170. enum speaker_layout speakers;
  171. enum audio_format format;
  172. uint32_t samples_per_sec;
  173. uint64_t timestamp;
  174. };
  175. /**
  176. * Source asynchronous video output structure. Used with
  177. * obs_source_output_video to output asynchronous video. Video is buffered as
  178. * necessary to play according to timestamps. When used with audio output,
  179. * audio is synced to video as it is played.
  180. *
  181. * If a YUV format is specified, it will be automatically upsampled and
  182. * converted to RGB via shader on the graphics processor.
  183. */
  184. struct obs_source_frame {
  185. uint8_t *data[MAX_AV_PLANES];
  186. uint32_t linesize[MAX_AV_PLANES];
  187. uint32_t width;
  188. uint32_t height;
  189. uint64_t timestamp;
  190. enum video_format format;
  191. float color_matrix[16];
  192. bool full_range;
  193. float color_range_min[3];
  194. float color_range_max[3];
  195. bool flip;
  196. };
  197. /* ------------------------------------------------------------------------- */
  198. /* OBS context */
  199. /**
  200. * Initializes OBS
  201. *
  202. * @param locale The locale to use for modules
  203. */
  204. EXPORT bool obs_startup(const char *locale);
  205. /** Releases all data associated with OBS and terminates the OBS context */
  206. EXPORT void obs_shutdown(void);
  207. /** @return true if the main OBS context has been initialized */
  208. EXPORT bool obs_initialized(void);
  209. /** @return The current core version */
  210. EXPORT uint32_t obs_get_version(void);
  211. /**
  212. * Sets a new locale to use for modules. This will call obs_module_set_locale
  213. * for each module with the new locale.
  214. *
  215. * @param locale The locale to use for modules
  216. */
  217. EXPORT void obs_set_locale(const char *locale);
  218. /** @return the current locale */
  219. EXPORT const char *obs_get_locale(void);
  220. /**
  221. * Sets base video ouput base resolution/fps/format.
  222. *
  223. * @note This data cannot be changed if an output is corrently active.
  224. * @note The graphics module cannot be changed without fully destroying the
  225. * OBS context.
  226. *
  227. * @param ovi Pointer to an obs_video_info structure containing the
  228. * specification of the graphics subsystem,
  229. * @return OBS_VIDEO_SUCCESS if sucessful
  230. * OBS_VIDEO_NOT_SUPPORTED if the adapter lacks capabilities
  231. * OBS_VIDEO_INVALID_PARAM if a parameter is invalid
  232. * OBS_VIDEO_CURRENTLY_ACTIVE if video is currently active
  233. * OBS_VIDEO_MODULE_NOT_FOUND if the graphics module is not found
  234. * OBS_VIDEO_FAIL for generic failure
  235. */
  236. EXPORT int obs_reset_video(struct obs_video_info *ovi);
  237. /**
  238. * Sets base audio output format/channels/samples/etc
  239. *
  240. * @note Cannot reset base audio if an output is currently active.
  241. */
  242. EXPORT bool obs_reset_audio(const struct obs_audio_info *oai);
  243. /** Gets the current video settings, returns false if no video */
  244. EXPORT bool obs_get_video_info(struct obs_video_info *ovi);
  245. /** Gets the current audio settings, returns false if no audio */
  246. EXPORT bool obs_get_audio_info(struct obs_audio_info *oai);
  247. /**
  248. * Opens a plugin module directly from a specific path.
  249. *
  250. * If the module already exists then the function will return successful, and
  251. * the module parameter will be given the pointer to the existing module.
  252. *
  253. * This does not initialize the module, it only loads the module image. To
  254. * initialize the module, call obs_init_module.
  255. *
  256. * @param module The pointer to the created module.
  257. * @param path Specifies the path to the module library file. If the
  258. * extension is not specified, it will use the extension
  259. * appropriate to the operating system.
  260. * @param data_path Specifies the path to the directory where the module's
  261. * data files are stored.
  262. * @returns MODULE_SUCCESS if successful
  263. * MODULE_ERROR if a generic error occurred
  264. * MODULE_FILE_NOT_FOUND if the module was not found
  265. * MODULE_MISSING_EXPORTS if required exports are missing
  266. * MODULE_INCOMPATIBLE_VER if incompatible version
  267. */
  268. EXPORT int obs_open_module(obs_module_t **module, const char *path,
  269. const char *data_path);
  270. /**
  271. * Initializes the module, which calls its obs_module_load export. If the
  272. * module is alrady loaded, then this function does nothing and returns
  273. * successful.
  274. */
  275. EXPORT bool obs_init_module(obs_module_t *module);
  276. /** Returns the module file name */
  277. EXPORT const char *obs_get_module_file_name(obs_module_t *module);
  278. /** Returns the module full name */
  279. EXPORT const char *obs_get_module_name(obs_module_t *module);
  280. /** Returns the module author(s) */
  281. EXPORT const char *obs_get_module_author(obs_module_t *module);
  282. /** Returns the module description */
  283. EXPORT const char *obs_get_module_description(obs_module_t *module);
  284. /** Returns the module binary path */
  285. EXPORT const char *obs_get_module_binary_path(obs_module_t *module);
  286. /** Returns the module data path */
  287. EXPORT const char *obs_get_module_data_path(obs_module_t *module);
  288. /**
  289. * Adds a module search path to be used with obs_find_modules. If the search
  290. * path strings contain %module%, that text will be replaced with the module
  291. * name when used.
  292. *
  293. * @param bin Specifies the module's binary directory search path.
  294. * @param data Specifies the module's data directory search path.
  295. */
  296. EXPORT void obs_add_module_path(const char *bin, const char *data);
  297. /** Automatically loads all modules from module paths (convenience function) */
  298. EXPORT void obs_load_all_modules(void);
  299. struct obs_module_info {
  300. const char *bin_path;
  301. const char *data_path;
  302. };
  303. typedef void (*obs_find_module_callback_t)(void *param,
  304. const struct obs_module_info *info);
  305. /** Finds all modules within the search paths added by obs_add_module_path. */
  306. EXPORT void obs_find_modules(obs_find_module_callback_t callback, void *param);
  307. typedef void (*obs_enum_module_callback_t)(void *param, obs_module_t *module);
  308. /** Enumerates all loaded modules */
  309. EXPORT void obs_enum_modules(obs_enum_module_callback_t callback, void *param);
  310. /** Helper function for using default module locale */
  311. EXPORT lookup_t *obs_module_load_locale(obs_module_t *module,
  312. const char *default_locale, const char *locale);
  313. /**
  314. * Returns the location of a plugin module data file.
  315. *
  316. * @note Modules should use obs_module_file function defined in obs-module.h
  317. * as a more elegant means of getting their files without having to
  318. * specify the module parameter.
  319. *
  320. * @param module The module associated with the file to locate
  321. * @param file The file to locate
  322. * @return Path string, or NULL if not found. Use bfree to free string.
  323. */
  324. EXPORT char *obs_find_module_file(obs_module_t *module, const char *file);
  325. /**
  326. * Enumerates all available inputs source types.
  327. *
  328. * Inputs are general source inputs (such as capture sources, device sources,
  329. * etc).
  330. */
  331. EXPORT bool obs_enum_input_types(size_t idx, const char **id);
  332. /**
  333. * Enumerates all available filter source types.
  334. *
  335. * Filters are sources that are used to modify the video/audio output of
  336. * other sources.
  337. */
  338. EXPORT bool obs_enum_filter_types(size_t idx, const char **id);
  339. /**
  340. * Enumerates all available transition source types.
  341. *
  342. * Transitions are sources used to transition between two or more other
  343. * sources.
  344. */
  345. EXPORT bool obs_enum_transition_types(size_t idx, const char **id);
  346. /** Enumerates all available output types. */
  347. EXPORT bool obs_enum_output_types(size_t idx, const char **id);
  348. /** Enumerates all available encoder types. */
  349. EXPORT bool obs_enum_encoder_types(size_t idx, const char **id);
  350. /** Enumerates all available service types. */
  351. EXPORT bool obs_enum_service_types(size_t idx, const char **id);
  352. /** Helper function for entering the OBS graphics context */
  353. EXPORT void obs_enter_graphics(void);
  354. /** Helper function for leaving the OBS graphics context */
  355. EXPORT void obs_leave_graphics(void);
  356. /** Gets the main audio output handler for this OBS context */
  357. EXPORT audio_t *obs_get_audio(void);
  358. /** Gets the main video output handler for this OBS context */
  359. EXPORT video_t *obs_get_video(void);
  360. /**
  361. * Adds a source to the user source list and increments the reference counter
  362. * for that source.
  363. *
  364. * The user source list is the list of sources that are accessible by a user.
  365. * Typically when a transition is active, it is not meant to be accessible by
  366. * users, so there's no reason for a user to see such a source.
  367. */
  368. EXPORT bool obs_add_source(obs_source_t *source);
  369. /** Sets the primary output source for a channel. */
  370. EXPORT void obs_set_output_source(uint32_t channel, obs_source_t *source);
  371. /**
  372. * Gets the primary output source for a channel and increments the reference
  373. * counter for that source. Use obs_source_release to release.
  374. */
  375. EXPORT obs_source_t *obs_get_output_source(uint32_t channel);
  376. /**
  377. * Enumerates user sources
  378. *
  379. * Callback function returns true to continue enumeration, or false to end
  380. * enumeration.
  381. */
  382. EXPORT void obs_enum_sources(bool (*enum_proc)(void*, obs_source_t*),
  383. void *param);
  384. /** Enumerates outputs */
  385. EXPORT void obs_enum_outputs(bool (*enum_proc)(void*, obs_output_t*),
  386. void *param);
  387. /** Enumerates encoders */
  388. EXPORT void obs_enum_encoders(bool (*enum_proc)(void*, obs_encoder_t*),
  389. void *param);
  390. /** Enumerates encoders */
  391. EXPORT void obs_enum_services(bool (*enum_proc)(void*, obs_service_t*),
  392. void *param);
  393. /**
  394. * Gets a source by its name.
  395. *
  396. * Increments the source reference counter, use obs_source_release to
  397. * release it when complete.
  398. */
  399. EXPORT obs_source_t *obs_get_source_by_name(const char *name);
  400. /** Gets an output by its name. */
  401. EXPORT obs_output_t *obs_get_output_by_name(const char *name);
  402. /** Gets an encoder by its name. */
  403. EXPORT obs_encoder_t *obs_get_encoder_by_name(const char *name);
  404. /** Gets an service by its name. */
  405. EXPORT obs_service_t *obs_get_service_by_name(const char *name);
  406. /** Returns the default effect for generic RGB/YUV drawing */
  407. EXPORT gs_effect_t *obs_get_default_effect(void);
  408. /** Returns the default effect for generic RGB/YUV drawing using texture_rect */
  409. EXPORT gs_effect_t *obs_get_default_rect_effect(void);
  410. /** Returns the solid effect for drawing solid colors */
  411. EXPORT gs_effect_t *obs_get_solid_effect(void);
  412. /** Returns the bicubic scaling effect */
  413. EXPORT gs_effect_t *obs_get_bicubic_effect(void);
  414. /** Returns the lanczos scaling effect */
  415. EXPORT gs_effect_t *obs_get_lanczos_effect(void);
  416. /** Returns the primary obs signal handler */
  417. EXPORT signal_handler_t *obs_get_signal_handler(void);
  418. /** Returns the primary obs procedure handler */
  419. EXPORT proc_handler_t *obs_get_proc_handler(void);
  420. /** Adds a draw callback to the main render context */
  421. EXPORT void obs_add_draw_callback(
  422. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  423. void *param);
  424. /** Removes a draw callback to the main render context */
  425. EXPORT void obs_remove_draw_callback(
  426. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  427. void *param);
  428. /** Changes the size of the main view */
  429. EXPORT void obs_resize(uint32_t cx, uint32_t cy);
  430. /** Renders the main view */
  431. EXPORT void obs_render_main_view(void);
  432. /** Sets the master user volume */
  433. EXPORT void obs_set_master_volume(float volume);
  434. /** Sets the master presentation volume */
  435. EXPORT void obs_set_present_volume(float volume);
  436. /** Gets the master user volume */
  437. EXPORT float obs_get_master_volume(void);
  438. /** Gets the master presentation volume */
  439. EXPORT float obs_get_present_volume(void);
  440. /** Saves a source to settings data */
  441. EXPORT obs_data_t *obs_save_source(obs_source_t *source);
  442. /** Loads a source from settings data */
  443. EXPORT obs_source_t *obs_load_source(obs_data_t *data);
  444. /** Loads sources from a data array */
  445. EXPORT void obs_load_sources(obs_data_array_t *array);
  446. /** Saves sources to a data array */
  447. EXPORT obs_data_array_t *obs_save_sources(void);
  448. /* ------------------------------------------------------------------------- */
  449. /* View context */
  450. /**
  451. * Creates a view context.
  452. *
  453. * A view can be used for things like separate previews, or drawing
  454. * sources separately.
  455. */
  456. EXPORT obs_view_t *obs_view_create(void);
  457. /** Destroys this view context */
  458. EXPORT void obs_view_destroy(obs_view_t *view);
  459. /** Sets the source to be used for this view context. */
  460. EXPORT void obs_view_set_source(obs_view_t *view, uint32_t channel,
  461. obs_source_t *source);
  462. /** Gets the source currently in use for this view context */
  463. EXPORT obs_source_t *obs_view_get_source(obs_view_t *view,
  464. uint32_t channel);
  465. /** Renders the sources of this view context */
  466. EXPORT void obs_view_render(obs_view_t *view);
  467. /* ------------------------------------------------------------------------- */
  468. /* Display context */
  469. /**
  470. * Adds a new window display linked to the main render pipeline. This creates
  471. * a new swap chain which updates every frame.
  472. *
  473. * @param graphics_data The swap chain initialization data.
  474. * @return The new display context, or NULL if failed.
  475. */
  476. EXPORT obs_display_t *obs_display_create(
  477. const struct gs_init_data *graphics_data);
  478. /** Destroys a display context */
  479. EXPORT void obs_display_destroy(obs_display_t *display);
  480. /** Changes the size of this display */
  481. EXPORT void obs_display_resize(obs_display_t *display, uint32_t cx,
  482. uint32_t cy);
  483. /**
  484. * Adds a draw callback for this display context
  485. *
  486. * @param display The display context.
  487. * @param draw The draw callback which is called each time a frame
  488. * updates.
  489. * @param param The user data to be associated with this draw callback.
  490. */
  491. EXPORT void obs_display_add_draw_callback(obs_display_t *display,
  492. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  493. void *param);
  494. /** Removes a draw callback for this display context */
  495. EXPORT void obs_display_remove_draw_callback(obs_display_t *display,
  496. void (*draw)(void *param, uint32_t cx, uint32_t cy),
  497. void *param);
  498. /* ------------------------------------------------------------------------- */
  499. /* Sources */
  500. /** Returns the translated display name of a source */
  501. EXPORT const char *obs_source_get_display_name(enum obs_source_type type,
  502. const char *id);
  503. /**
  504. * Creates a source of the specified type with the specified settings.
  505. *
  506. * The "source" context is used for anything related to presenting
  507. * or modifying video/audio. Use obs_source_release to release it.
  508. */
  509. EXPORT obs_source_t *obs_source_create(enum obs_source_type type,
  510. const char *id, const char *name, obs_data_t *settings);
  511. /**
  512. * Adds/releases a reference to a source. When the last reference is
  513. * released, the source is destroyed.
  514. */
  515. EXPORT void obs_source_addref(obs_source_t *source);
  516. EXPORT void obs_source_release(obs_source_t *source);
  517. /** Notifies all references that the source should be released */
  518. EXPORT void obs_source_remove(obs_source_t *source);
  519. /** Returns true if the source should be released */
  520. EXPORT bool obs_source_removed(const obs_source_t *source);
  521. /**
  522. * Retrieves flags that specify what type of data the source presents/modifies.
  523. */
  524. EXPORT uint32_t obs_source_get_output_flags(const obs_source_t *source);
  525. /** Gets the default settings for a source type */
  526. EXPORT obs_data_t *obs_get_source_defaults(enum obs_source_type type,
  527. const char *id);
  528. /** Returns the property list, if any. Free with obs_properties_destroy */
  529. EXPORT obs_properties_t *obs_get_source_properties(enum obs_source_type type,
  530. const char *id);
  531. /**
  532. * Returns the properties list for a specific existing source. Free with
  533. * obs_properties_destroy
  534. */
  535. EXPORT obs_properties_t *obs_source_properties(const obs_source_t *source);
  536. /** Updates settings for this source */
  537. EXPORT void obs_source_update(obs_source_t *source, obs_data_t *settings);
  538. /** Renders a video source. */
  539. EXPORT void obs_source_video_render(obs_source_t *source);
  540. /** Gets the width of a source (if it has video) */
  541. EXPORT uint32_t obs_source_get_width(obs_source_t *source);
  542. /** Gets the height of a source (if it has video) */
  543. EXPORT uint32_t obs_source_get_height(obs_source_t *source);
  544. /**
  545. * If the source is a filter, returns the parent source of the filter. Only
  546. * guaranteed to be valid inside of the video_render, filter_audio,
  547. * filter_video, and filter_remove callbacks.
  548. */
  549. EXPORT obs_source_t *obs_filter_get_parent(const obs_source_t *filter);
  550. /**
  551. * If the source is a filter, returns the target source of the filter. Only
  552. * guaranteed to be valid inside of the video_render, filter_audio,
  553. * filter_video, and filter_remove callbacks.
  554. */
  555. EXPORT obs_source_t *obs_filter_get_target(const obs_source_t *filter);
  556. /** Adds a filter to the source (which is used whenever the source is used) */
  557. EXPORT void obs_source_filter_add(obs_source_t *source, obs_source_t *filter);
  558. /** Removes a filter from the source */
  559. EXPORT void obs_source_filter_remove(obs_source_t *source,
  560. obs_source_t *filter);
  561. /** Modifies the order of a specific filter */
  562. EXPORT void obs_source_filter_set_order(obs_source_t *source,
  563. obs_source_t *filter, enum obs_order_movement movement);
  564. /** Gets the settings string for a source */
  565. EXPORT obs_data_t *obs_source_get_settings(const obs_source_t *source);
  566. /** Gets the name of a source */
  567. EXPORT const char *obs_source_get_name(const obs_source_t *source);
  568. /** Sets the name of a source */
  569. EXPORT void obs_source_set_name(obs_source_t *source, const char *name);
  570. /** Gets the source type */
  571. EXPORT enum obs_source_type obs_source_get_type(const obs_source_t *source);
  572. /** Gets the source identifier */
  573. EXPORT const char *obs_source_get_id(const obs_source_t *source);
  574. /** Returns the signal handler for a source */
  575. EXPORT signal_handler_t *obs_source_get_signal_handler(
  576. const obs_source_t *source);
  577. /** Returns the procedure handler for a source */
  578. EXPORT proc_handler_t *obs_source_get_proc_handler(const obs_source_t *source);
  579. /** Sets the user volume for a source that has audio output */
  580. EXPORT void obs_source_set_volume(obs_source_t *source, float volume);
  581. /** Sets the presentation volume for a source */
  582. EXPORT void obs_source_set_present_volume(obs_source_t *source, float volume);
  583. /** Gets the user volume for a source that has audio output */
  584. EXPORT float obs_source_get_volume(const obs_source_t *source);
  585. /** Gets the presentation volume for a source */
  586. EXPORT float obs_source_get_present_volume(const obs_source_t *source);
  587. /** Sets the audio sync offset (in nanoseconds) for a source */
  588. EXPORT void obs_source_set_sync_offset(obs_source_t *source, int64_t offset);
  589. /** Gets the audio sync offset (in nanoseconds) for a source */
  590. EXPORT int64_t obs_source_get_sync_offset(const obs_source_t *source);
  591. /** Enumerates child sources used by this source */
  592. EXPORT void obs_source_enum_sources(obs_source_t *source,
  593. obs_source_enum_proc_t enum_callback,
  594. void *param);
  595. /** Enumerates the entire child source tree used by this source */
  596. EXPORT void obs_source_enum_tree(obs_source_t *source,
  597. obs_source_enum_proc_t enum_callback,
  598. void *param);
  599. /** Returns true if active, false if not */
  600. EXPORT bool obs_source_active(const obs_source_t *source);
  601. /**
  602. * Returns true if currently displayed somewhere (active or not), false if not
  603. */
  604. EXPORT bool obs_source_showing(const obs_source_t *source);
  605. /**
  606. * Sometimes sources need to be told when to save their settings so they
  607. * don't have to constantly update and keep track of their settings. This will
  608. * call the source's 'save' callback if any, which will save its current
  609. * data to its settings.
  610. */
  611. EXPORT void obs_source_save(obs_source_t *source);
  612. /**
  613. * Sometimes sources need to be told when they are loading their settings
  614. * from prior saved data. This is different from a source 'update' in that
  615. * it's meant to be used after the source has been created and loaded from
  616. * somewhere (such as a saved file).
  617. */
  618. EXPORT void obs_source_load(obs_source_t *source);
  619. /** Specifies that async video frames should be played as soon as possible */
  620. #define OBS_SOURCE_FLAG_UNBUFFERED (1<<0)
  621. /** Specifies to force audio to mono */
  622. #define OBS_SOURCE_FLAG_FORCE_MONO (1<<1)
  623. /**
  624. * Sets source flags. Note that these are different from the main output
  625. * flags. These are generally things that can be set by the source or user,
  626. * while the output flags are more used to determine capabilities of a source.
  627. */
  628. EXPORT void obs_source_set_flags(obs_source_t *source, uint32_t flags);
  629. /** Gets source flags. */
  630. EXPORT uint32_t obs_source_get_flags(const obs_source_t *source);
  631. /**
  632. * Sets audio mixer flags. These flags are used to specify which mixers
  633. * the source's audio should be applied to.
  634. */
  635. EXPORT void obs_source_set_audio_mixers(obs_source_t *source, uint32_t mixers);
  636. /** Gets audio mixer flags */
  637. EXPORT uint32_t obs_source_get_audio_mixers(const obs_source_t *source);
  638. /**
  639. * Increments the 'showing' reference counter to indicate that the source is
  640. * being shown somewhere. If the reference counter was 0, will call the 'show'
  641. * callback.
  642. */
  643. EXPORT void obs_source_inc_showing(obs_source_t *source);
  644. /**
  645. * Decrements the 'showing' reference counter to indicate that the source is
  646. * no longer being shown somewhere. If the reference counter is set to 0,
  647. * will call the 'hide' callback
  648. */
  649. EXPORT void obs_source_dec_showing(obs_source_t *source);
  650. /** Enumerates filters assigned to the source */
  651. EXPORT void obs_source_enum_filters(obs_source_t *source,
  652. obs_source_enum_proc_t callback, void *param);
  653. /** Gets a filter of a source by its display name. */
  654. EXPORT obs_source_t *obs_source_get_filter_by_name(obs_source_t *source,
  655. const char *name);
  656. /* ------------------------------------------------------------------------- */
  657. /* Functions used by sources */
  658. /**
  659. * Helper function to set the color matrix information when drawing the source.
  660. *
  661. * @param color_matrix The color matrix. Assigns to the 'color_matrix'
  662. * effect variable.
  663. * @param color_range_min The minimum color range. Assigns to the
  664. * 'color_range_min' effect variable. If NULL,
  665. * {0.0f, 0.0f, 0.0f} is used.
  666. * @param color_range_max The maximum color range. Assigns to the
  667. * 'color_range_max' effect variable. If NULL,
  668. * {1.0f, 1.0f, 1.0f} is used.
  669. */
  670. EXPORT void obs_source_draw_set_color_matrix(
  671. const struct matrix4 *color_matrix,
  672. const struct vec3 *color_range_min,
  673. const struct vec3 *color_range_max);
  674. /**
  675. * Helper function to draw sprites for a source (synchronous video).
  676. *
  677. * @param image The sprite texture to draw. Assigns to the 'image' variable
  678. * of the current effect.
  679. * @param x X position of the sprite.
  680. * @param y Y position of the sprite.
  681. * @param cx Width of the sprite. If 0, uses the texture width.
  682. * @param cy Height of the sprite. If 0, uses the texture height.
  683. * @param flip Specifies whether to flip the image vertically.
  684. */
  685. EXPORT void obs_source_draw(gs_texture_t *image, int x, int y,
  686. uint32_t cx, uint32_t cy, bool flip);
  687. /** Outputs asynchronous video data. Set to NULL to deactivate the texture */
  688. EXPORT void obs_source_output_video(obs_source_t *source,
  689. const struct obs_source_frame *frame);
  690. /** Outputs audio data (always asynchronous) */
  691. EXPORT void obs_source_output_audio(obs_source_t *source,
  692. const struct obs_source_audio *audio);
  693. /** Signal an update to any currently used properties via 'update_properties' */
  694. EXPORT void obs_source_update_properties(obs_source_t *source);
  695. /** Gets the current async video frame */
  696. EXPORT struct obs_source_frame *obs_source_get_frame(obs_source_t *source);
  697. /** Releases the current async video frame */
  698. EXPORT void obs_source_release_frame(obs_source_t *source,
  699. struct obs_source_frame *frame);
  700. /** Default RGB filter handler for generic effect filters */
  701. EXPORT void obs_source_process_filter(obs_source_t *filter, gs_effect_t *effect,
  702. uint32_t width, uint32_t height, enum gs_color_format format,
  703. enum obs_allow_direct_render allow_direct);
  704. /**
  705. * Adds a child source. Must be called by parent sources on child sources
  706. * when the child is added. This ensures that the source is properly activated
  707. * if the parent is active.
  708. *
  709. * @returns true if source can be added, false if it causes recursion
  710. */
  711. EXPORT bool obs_source_add_child(obs_source_t *parent, obs_source_t *child);
  712. /**
  713. * Removes a child source. Must be called by parent sources on child sources
  714. * when the child is removed. This ensures that the source is properly
  715. * deactivated if the parent is active.
  716. */
  717. EXPORT void obs_source_remove_child(obs_source_t *parent, obs_source_t *child);
  718. /** Sends a mouse down/up event to a source */
  719. EXPORT void obs_source_send_mouse_click(obs_source_t *source,
  720. const struct obs_mouse_event *event,
  721. int32_t type, bool mouse_up,
  722. uint32_t click_count);
  723. /** Sends a mouse move event to a source. */
  724. EXPORT void obs_source_send_mouse_move(obs_source_t *source,
  725. const struct obs_mouse_event *event, bool mouse_leave);
  726. /** Sends a mouse wheel event to a source */
  727. EXPORT void obs_source_send_mouse_wheel(obs_source_t *source,
  728. const struct obs_mouse_event *event, int x_delta, int y_delta);
  729. /** Sends a got-focus or lost-focus event to a source */
  730. EXPORT void obs_source_send_focus(obs_source_t *source, bool focus);
  731. /** Sends a key up/down event to a source */
  732. EXPORT void obs_source_send_key_click(obs_source_t *source,
  733. const struct obs_key_event *event, bool key_up);
  734. /** Sets the default source flags. */
  735. EXPORT void obs_source_set_default_flags(obs_source_t *source, uint32_t flags);
  736. /* ------------------------------------------------------------------------- */
  737. /* Scenes */
  738. /**
  739. * Creates a scene.
  740. *
  741. * A scene is a source which is a container of other sources with specific
  742. * display oriantations. Scenes can also be used like any other source.
  743. */
  744. EXPORT obs_scene_t *obs_scene_create(const char *name);
  745. EXPORT void obs_scene_addref(obs_scene_t *scene);
  746. EXPORT void obs_scene_release(obs_scene_t *scene);
  747. /** Gets the scene's source context */
  748. EXPORT obs_source_t *obs_scene_get_source(const obs_scene_t *scene);
  749. /** Gets the scene from its source, or NULL if not a scene */
  750. EXPORT obs_scene_t *obs_scene_from_source(const obs_source_t *source);
  751. /** Determines whether a source is within a scene */
  752. EXPORT obs_sceneitem_t *obs_scene_find_source(obs_scene_t *scene,
  753. const char *name);
  754. /** Enumerates sources within a scene */
  755. EXPORT void obs_scene_enum_items(obs_scene_t *scene,
  756. bool (*callback)(obs_scene_t*, obs_sceneitem_t*, void*),
  757. void *param);
  758. /** Adds/creates a new scene item for a source */
  759. EXPORT obs_sceneitem_t *obs_scene_add(obs_scene_t *scene, obs_source_t *source);
  760. EXPORT void obs_sceneitem_addref(obs_sceneitem_t *item);
  761. EXPORT void obs_sceneitem_release(obs_sceneitem_t *item);
  762. /** Removes a scene item. */
  763. EXPORT void obs_sceneitem_remove(obs_sceneitem_t *item);
  764. /** Gets the scene parent associated with the scene item. */
  765. EXPORT obs_scene_t *obs_sceneitem_get_scene(const obs_sceneitem_t *item);
  766. /** Gets the source of a scene item. */
  767. EXPORT obs_source_t *obs_sceneitem_get_source(const obs_sceneitem_t *item);
  768. EXPORT void obs_sceneitem_select(obs_sceneitem_t *item, bool select);
  769. EXPORT bool obs_sceneitem_selected(const obs_sceneitem_t *item);
  770. /* Functions for gettings/setting specific orientation of a scene item */
  771. EXPORT void obs_sceneitem_set_pos(obs_sceneitem_t *item, const struct vec2 *pos);
  772. EXPORT void obs_sceneitem_set_rot(obs_sceneitem_t *item, float rot_deg);
  773. EXPORT void obs_sceneitem_set_scale(obs_sceneitem_t *item,
  774. const struct vec2 *scale);
  775. EXPORT void obs_sceneitem_set_alignment(obs_sceneitem_t *item,
  776. uint32_t alignment);
  777. EXPORT void obs_sceneitem_set_order(obs_sceneitem_t *item,
  778. enum obs_order_movement movement);
  779. EXPORT void obs_sceneitem_set_order_position(obs_sceneitem_t *item,
  780. int position);
  781. EXPORT void obs_sceneitem_set_bounds_type(obs_sceneitem_t *item,
  782. enum obs_bounds_type type);
  783. EXPORT void obs_sceneitem_set_bounds_alignment(obs_sceneitem_t *item,
  784. uint32_t alignment);
  785. EXPORT void obs_sceneitem_set_bounds(obs_sceneitem_t *item,
  786. const struct vec2 *bounds);
  787. EXPORT void obs_sceneitem_get_pos(const obs_sceneitem_t *item,
  788. struct vec2 *pos);
  789. EXPORT float obs_sceneitem_get_rot(const obs_sceneitem_t *item);
  790. EXPORT void obs_sceneitem_get_scale(const obs_sceneitem_t *item,
  791. struct vec2 *scale);
  792. EXPORT uint32_t obs_sceneitem_get_alignment(const obs_sceneitem_t *item);
  793. EXPORT enum obs_bounds_type obs_sceneitem_get_bounds_type(
  794. const obs_sceneitem_t *item);
  795. EXPORT uint32_t obs_sceneitem_get_bounds_alignment(const obs_sceneitem_t *item);
  796. EXPORT void obs_sceneitem_get_bounds(const obs_sceneitem_t *item,
  797. struct vec2 *bounds);
  798. EXPORT void obs_sceneitem_get_info(const obs_sceneitem_t *item,
  799. struct obs_transform_info *info);
  800. EXPORT void obs_sceneitem_set_info(obs_sceneitem_t *item,
  801. const struct obs_transform_info *info);
  802. EXPORT void obs_sceneitem_get_draw_transform(const obs_sceneitem_t *item,
  803. struct matrix4 *transform);
  804. EXPORT void obs_sceneitem_get_box_transform(const obs_sceneitem_t *item,
  805. struct matrix4 *transform);
  806. /* ------------------------------------------------------------------------- */
  807. /* Outputs */
  808. EXPORT const char *obs_output_get_display_name(const char *id);
  809. /**
  810. * Creates an output.
  811. *
  812. * Outputs allow outputting to file, outputting to network, outputting to
  813. * directshow, or other custom outputs.
  814. */
  815. EXPORT obs_output_t *obs_output_create(const char *id, const char *name,
  816. obs_data_t *settings);
  817. EXPORT void obs_output_destroy(obs_output_t *output);
  818. EXPORT const char *obs_output_get_name(const obs_output_t *output);
  819. /** Starts the output. */
  820. EXPORT bool obs_output_start(obs_output_t *output);
  821. /** Stops the output. */
  822. EXPORT void obs_output_stop(obs_output_t *output);
  823. /** Returns whether the output is active */
  824. EXPORT bool obs_output_active(const obs_output_t *output);
  825. /** Gets the default settings for an output type */
  826. EXPORT obs_data_t *obs_output_defaults(const char *id);
  827. /** Returns the property list, if any. Free with obs_properties_destroy */
  828. EXPORT obs_properties_t *obs_get_output_properties(const char *id);
  829. /**
  830. * Returns the property list of an existing output, if any. Free with
  831. * obs_properties_destroy
  832. */
  833. EXPORT obs_properties_t *obs_output_properties(const obs_output_t *output);
  834. /** Updates the settings for this output context */
  835. EXPORT void obs_output_update(obs_output_t *output, obs_data_t *settings);
  836. /** Specifies whether the output can be paused */
  837. EXPORT bool obs_output_canpause(const obs_output_t *output);
  838. /** Pauses the output (if the functionality is allowed by the output */
  839. EXPORT void obs_output_pause(obs_output_t *output);
  840. /* Gets the current output settings string */
  841. EXPORT obs_data_t *obs_output_get_settings(const obs_output_t *output);
  842. /** Returns the signal handler for an output */
  843. EXPORT signal_handler_t *obs_output_get_signal_handler(
  844. const obs_output_t *output);
  845. /** Returns the procedure handler for an output */
  846. EXPORT proc_handler_t *obs_output_get_proc_handler(const obs_output_t *output);
  847. /**
  848. * Sets the current video media context associated with this output,
  849. * required for non-encoded outputs
  850. */
  851. EXPORT void obs_output_set_video(obs_output_t *output, video_t *video);
  852. /**
  853. * Sets the current audio/video media contexts associated with this output,
  854. * required for non-encoded outputs. Can be null.
  855. */
  856. EXPORT void obs_output_set_media(obs_output_t *output,
  857. video_t *video, audio_t *audio);
  858. /** Returns the video media context associated with this output */
  859. EXPORT video_t *obs_output_video(const obs_output_t *output);
  860. /** Returns the audio media context associated with this output */
  861. EXPORT audio_t *obs_output_audio(const obs_output_t *output);
  862. /** Sets the current audio mixer for non-encoded outputs */
  863. EXPORT void obs_output_set_mixer(obs_output_t *output, size_t mixer_idx);
  864. /** Gets the current audio mixer for non-encoded outputs */
  865. EXPORT size_t obs_output_get_mixer(const obs_output_t *output);
  866. /**
  867. * Sets the current video encoder associated with this output,
  868. * required for encoded outputs
  869. */
  870. EXPORT void obs_output_set_video_encoder(obs_output_t *output,
  871. obs_encoder_t *encoder);
  872. /**
  873. * Sets the current audio encoder associated with this output,
  874. * required for encoded outputs.
  875. *
  876. * The idx parameter specifies the audio encoder index to set the encoder to.
  877. * Only used with outputs that have multiple audio outputs (RTMP typically),
  878. * otherwise the parameter is ignored.
  879. */
  880. EXPORT void obs_output_set_audio_encoder(obs_output_t *output,
  881. obs_encoder_t *encoder, size_t idx);
  882. /** Returns the current video encoder associated with this output */
  883. EXPORT obs_encoder_t *obs_output_get_video_encoder(const obs_output_t *output);
  884. /**
  885. * Returns the current audio encoder associated with this output
  886. *
  887. * The idx parameter specifies the audio encoder index. Only used with
  888. * outputs that have multiple audio outputs, otherwise the parameter is
  889. * ignored.
  890. */
  891. EXPORT obs_encoder_t *obs_output_get_audio_encoder(const obs_output_t *output,
  892. size_t idx);
  893. /** Sets the current service associated with this output. */
  894. EXPORT void obs_output_set_service(obs_output_t *output,
  895. obs_service_t *service);
  896. /** Gets the current service associated with this output. */
  897. EXPORT obs_service_t *obs_output_get_service(const obs_output_t *output);
  898. /**
  899. * Sets the reconnect settings. Set retry_count to 0 to disable reconnecting.
  900. */
  901. EXPORT void obs_output_set_reconnect_settings(obs_output_t *output,
  902. int retry_count, int retry_sec);
  903. EXPORT uint64_t obs_output_get_total_bytes(const obs_output_t *output);
  904. EXPORT int obs_output_get_frames_dropped(const obs_output_t *output);
  905. EXPORT int obs_output_get_total_frames(const obs_output_t *output);
  906. /**
  907. * Sets the preferred scaled resolution for this output. Set width and height
  908. * to 0 to disable scaling.
  909. *
  910. * If this output uses an encoder, it will call obs_encoder_set_scaled_size on
  911. * the encoder before the stream is started. If the encoder is already active,
  912. * then this function will trigger a warning and do nothing.
  913. */
  914. EXPORT void obs_output_set_preferred_size(obs_output_t *output, uint32_t width,
  915. uint32_t height);
  916. /** For video outputs, returns the width of the encoded image */
  917. EXPORT uint32_t obs_output_get_width(const obs_output_t *output);
  918. /** For video outputs, returns the height of the encoded image */
  919. EXPORT uint32_t obs_output_get_height(const obs_output_t *output);
  920. /* ------------------------------------------------------------------------- */
  921. /* Functions used by outputs */
  922. /** Optionally sets the video conversion info. Used only for raw output */
  923. EXPORT void obs_output_set_video_conversion(obs_output_t *output,
  924. const struct video_scale_info *conversion);
  925. /** Optionally sets the audio conversion info. Used only for raw output */
  926. EXPORT void obs_output_set_audio_conversion(obs_output_t *output,
  927. const struct audio_convert_info *conversion);
  928. /** Returns whether data capture can begin with the specified flags */
  929. EXPORT bool obs_output_can_begin_data_capture(const obs_output_t *output,
  930. uint32_t flags);
  931. /** Initializes encoders (if any) */
  932. EXPORT bool obs_output_initialize_encoders(obs_output_t *output,
  933. uint32_t flags);
  934. /**
  935. * Begins data capture from media/encoders.
  936. *
  937. * @param output Output context
  938. * @param flags Set this to 0 to use default output flags set in the
  939. * obs_output_info structure, otherwise set to a either
  940. * OBS_OUTPUT_VIDEO or OBS_OUTPUT_AUDIO to specify whether to
  941. * connect audio or video. This is useful for things like
  942. * ffmpeg which may or may not always want to use both audio
  943. * and video.
  944. * @return true if successful, false otherwise.
  945. */
  946. EXPORT bool obs_output_begin_data_capture(obs_output_t *output, uint32_t flags);
  947. /** Ends data capture from media/encoders */
  948. EXPORT void obs_output_end_data_capture(obs_output_t *output);
  949. /**
  950. * Signals that the output has stopped itself.
  951. *
  952. * @param output Output context
  953. * @param code Error code (or OBS_OUTPUT_SUCCESS if not an error)
  954. */
  955. EXPORT void obs_output_signal_stop(obs_output_t *output, int code);
  956. /* ------------------------------------------------------------------------- */
  957. /* Encoders */
  958. EXPORT const char *obs_encoder_get_display_name(const char *id);
  959. /**
  960. * Creates a video encoder context
  961. *
  962. * @param id Video encoder ID
  963. * @param name Name to assign to this context
  964. * @param settings Settings
  965. * @return The video encoder context, or NULL if failed or not found.
  966. */
  967. EXPORT obs_encoder_t *obs_video_encoder_create(const char *id, const char *name,
  968. obs_data_t *settings);
  969. /**
  970. * Creates an audio encoder context
  971. *
  972. * @param id Audio Encoder ID
  973. * @param name Name to assign to this context
  974. * @param settings Settings
  975. * @param mixer_idx Index of the mixer to use for this audio encoder
  976. * @return The video encoder context, or NULL if failed or not found.
  977. */
  978. EXPORT obs_encoder_t *obs_audio_encoder_create(const char *id, const char *name,
  979. obs_data_t *settings, size_t mixer_idx);
  980. /** Destroys an encoder context */
  981. EXPORT void obs_encoder_destroy(obs_encoder_t *encoder);
  982. EXPORT void obs_encoder_set_name(obs_encoder_t *encoder, const char *name);
  983. EXPORT const char *obs_encoder_get_name(const obs_encoder_t *encoder);
  984. /** Returns the codec of an encoder by the id */
  985. EXPORT const char *obs_get_encoder_codec(const char *id);
  986. /** Returns the type of an encoder by the id */
  987. EXPORT enum obs_encoder_type obs_get_encoder_type(const char *id);
  988. /** Returns the codec of the encoder */
  989. EXPORT const char *obs_encoder_get_codec(const obs_encoder_t *encoder);
  990. /** Returns the type of an encoder */
  991. EXPORT enum obs_encoder_type obs_encoder_get_type(const obs_encoder_t *encoder);
  992. /**
  993. * Sets the scaled resolution for a video encoder. Set width and height to 0
  994. * to disable scaling. If the encoder is active, this function will trigger
  995. * a warning, and do nothing.
  996. */
  997. EXPORT void obs_encoder_set_scaled_size(obs_encoder_t *encoder, uint32_t width,
  998. uint32_t height);
  999. /** For video encoders, returns the width of the encoded image */
  1000. EXPORT uint32_t obs_encoder_get_width(const obs_encoder_t *encoder);
  1001. /** For video encoders, returns the height of the encoded image */
  1002. EXPORT uint32_t obs_encoder_get_height(const obs_encoder_t *encoder);
  1003. /** Gets the default settings for an encoder type */
  1004. EXPORT obs_data_t *obs_encoder_defaults(const char *id);
  1005. /** Returns the property list, if any. Free with obs_properties_destroy */
  1006. EXPORT obs_properties_t *obs_get_encoder_properties(const char *id);
  1007. /**
  1008. * Returns the property list of an existing encoder, if any. Free with
  1009. * obs_properties_destroy
  1010. */
  1011. EXPORT obs_properties_t *obs_encoder_properties(const obs_encoder_t *encoder);
  1012. /**
  1013. * Updates the settings of the encoder context. Usually used for changing
  1014. * bitrate while active
  1015. */
  1016. EXPORT void obs_encoder_update(obs_encoder_t *encoder, obs_data_t *settings);
  1017. /** Gets extra data (headers) associated with this context */
  1018. EXPORT bool obs_encoder_get_extra_data(const obs_encoder_t *encoder,
  1019. uint8_t **extra_data, size_t *size);
  1020. /** Returns the current settings for this encoder */
  1021. EXPORT obs_data_t *obs_encoder_get_settings(const obs_encoder_t *encoder);
  1022. /** Sets the video output context to be used with this encoder */
  1023. EXPORT void obs_encoder_set_video(obs_encoder_t *encoder, video_t *video);
  1024. /** Sets the audio output context to be used with this encoder */
  1025. EXPORT void obs_encoder_set_audio(obs_encoder_t *encoder, audio_t *audio);
  1026. /**
  1027. * Returns the video output context used with this encoder, or NULL if not
  1028. * a video context
  1029. */
  1030. EXPORT video_t *obs_encoder_video(const obs_encoder_t *encoder);
  1031. /**
  1032. * Returns the audio output context used with this encoder, or NULL if not
  1033. * a audio context
  1034. */
  1035. EXPORT audio_t *obs_encoder_audio(const obs_encoder_t *encoder);
  1036. /** Returns true if encoder is active, false otherwise */
  1037. EXPORT bool obs_encoder_active(const obs_encoder_t *encoder);
  1038. /** Duplicates an encoder packet */
  1039. EXPORT void obs_duplicate_encoder_packet(struct encoder_packet *dst,
  1040. const struct encoder_packet *src);
  1041. EXPORT void obs_free_encoder_packet(struct encoder_packet *packet);
  1042. /* ------------------------------------------------------------------------- */
  1043. /* Stream Services */
  1044. EXPORT const char *obs_service_get_display_name(const char *id);
  1045. EXPORT obs_service_t *obs_service_create(const char *id, const char *name,
  1046. obs_data_t *settings);
  1047. EXPORT void obs_service_destroy(obs_service_t *service);
  1048. EXPORT const char *obs_service_get_name(const obs_service_t *service);
  1049. /** Gets the default settings for a service */
  1050. EXPORT obs_data_t *obs_service_defaults(const char *id);
  1051. /** Returns the property list, if any. Free with obs_properties_destroy */
  1052. EXPORT obs_properties_t *obs_get_service_properties(const char *id);
  1053. /**
  1054. * Returns the property list of an existing service context, if any. Free with
  1055. * obs_properties_destroy
  1056. */
  1057. EXPORT obs_properties_t *obs_service_properties(const obs_service_t *service);
  1058. /** Gets the service type */
  1059. EXPORT const char *obs_service_get_type(const obs_service_t *service);
  1060. /** Updates the settings of the service context */
  1061. EXPORT void obs_service_update(obs_service_t *service, obs_data_t *settings);
  1062. /** Returns the current settings for this service */
  1063. EXPORT obs_data_t *obs_service_get_settings(const obs_service_t *service);
  1064. /** Returns the URL for this service context */
  1065. EXPORT const char *obs_service_get_url(const obs_service_t *service);
  1066. /** Returns the stream key (if any) for this service context */
  1067. EXPORT const char *obs_service_get_key(const obs_service_t *service);
  1068. /** Returns the username (if any) for this service context */
  1069. EXPORT const char *obs_service_get_username(const obs_service_t *service);
  1070. /** Returns the password (if any) for this service context */
  1071. EXPORT const char *obs_service_get_password(const obs_service_t *service);
  1072. /**
  1073. * Applies service-specific video encoder settings.
  1074. *
  1075. * @param video_encoder_settings Video encoder settings. Optional.
  1076. * @param audio_encoder_settings Audio encoder settings. Optional.
  1077. */
  1078. EXPORT void obs_service_apply_encoder_settings(obs_service_t *service,
  1079. obs_data_t *video_encoder_settings,
  1080. obs_data_t *audio_encoder_settings);
  1081. /* ------------------------------------------------------------------------- */
  1082. /* Source frame allocation functions */
  1083. EXPORT void obs_source_frame_init(struct obs_source_frame *frame,
  1084. enum video_format format, uint32_t width, uint32_t height);
  1085. static inline void obs_source_frame_free(struct obs_source_frame *frame)
  1086. {
  1087. if (frame) {
  1088. bfree(frame->data[0]);
  1089. memset(frame, 0, sizeof(*frame));
  1090. }
  1091. }
  1092. static inline struct obs_source_frame *obs_source_frame_create(
  1093. enum video_format format, uint32_t width, uint32_t height)
  1094. {
  1095. struct obs_source_frame *frame;
  1096. frame = (struct obs_source_frame*)bzalloc(sizeof(*frame));
  1097. obs_source_frame_init(frame, format, width, height);
  1098. return frame;
  1099. }
  1100. static inline void obs_source_frame_destroy(struct obs_source_frame *frame)
  1101. {
  1102. if (frame) {
  1103. bfree(frame->data[0]);
  1104. bfree(frame);
  1105. }
  1106. }
  1107. #ifdef __cplusplus
  1108. }
  1109. #endif