obs.h 42 KB

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