obs.h 45 KB

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