obs.h 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250
  1. /******************************************************************************
  2. Copyright (C) 2013-2014 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #pragma once
  15. #include "util/c99defs.h"
  16. #include "util/bmem.h"
  17. #include "util/profiler.h"
  18. #include "util/text-lookup.h"
  19. #include "graphics/graphics.h"
  20. #include "graphics/vec2.h"
  21. #include "graphics/vec3.h"
  22. #include "media-io/audio-io.h"
  23. #include "media-io/video-io.h"
  24. #include "callback/signal.h"
  25. #include "callback/proc.h"
  26. #include "obs-config.h"
  27. #include "obs-defs.h"
  28. #include "obs-data.h"
  29. #include "obs-ui.h"
  30. #include "obs-properties.h"
  31. #include "obs-interaction.h"
  32. struct matrix4;
  33. /* opaque types */
  34. struct obs_display;
  35. struct obs_view;
  36. struct obs_source;
  37. struct obs_scene;
  38. struct obs_scene_item;
  39. struct obs_output;
  40. struct obs_encoder;
  41. struct obs_service;
  42. struct obs_module;
  43. struct obs_fader;
  44. struct obs_volmeter;
  45. typedef struct obs_display obs_display_t;
  46. typedef struct obs_view obs_view_t;
  47. typedef struct obs_source obs_source_t;
  48. typedef struct obs_scene obs_scene_t;
  49. typedef struct obs_scene_item obs_sceneitem_t;
  50. typedef struct obs_output obs_output_t;
  51. typedef struct obs_encoder obs_encoder_t;
  52. typedef struct obs_service obs_service_t;
  53. typedef struct obs_module obs_module_t;
  54. typedef struct obs_fader obs_fader_t;
  55. typedef struct obs_volmeter obs_volmeter_t;
  56. typedef struct obs_weak_source obs_weak_source_t;
  57. typedef struct obs_weak_output obs_weak_output_t;
  58. typedef struct obs_weak_encoder obs_weak_encoder_t;
  59. typedef struct obs_weak_service obs_weak_service_t;
  60. #include "obs-source.h"
  61. #include "obs-encoder.h"
  62. #include "obs-output.h"
  63. #include "obs-service.h"
  64. #include "obs-audio-controls.h"
  65. #include "obs-hotkey.h"
  66. /**
  67. * @file
  68. * @brief Main libobs header used by applications.
  69. *
  70. * @mainpage
  71. *
  72. * @section intro_sec Introduction
  73. *
  74. * This document describes the api for libobs to be used by applications as well
  75. * as @ref modules_page implementing some kind of functionality.
  76. *
  77. */
  78. #ifdef __cplusplus
  79. extern "C" {
  80. #endif
  81. /** Used for changing the order of items (for example, filters in a source,
  82. * or items in a scene) */
  83. enum obs_order_movement {
  84. OBS_ORDER_MOVE_UP,
  85. OBS_ORDER_MOVE_DOWN,
  86. OBS_ORDER_MOVE_TOP,
  87. OBS_ORDER_MOVE_BOTTOM,
  88. };
  89. /**
  90. * Used with obs_source_process_filter to specify whether the filter should
  91. * render the source directly with the specified effect, or whether it should
  92. * render it to a texture
  93. */
  94. enum obs_allow_direct_render {
  95. OBS_NO_DIRECT_RENDERING,
  96. OBS_ALLOW_DIRECT_RENDERING,
  97. };
  98. enum obs_scale_type {
  99. OBS_SCALE_DISABLE,
  100. OBS_SCALE_POINT,
  101. OBS_SCALE_BICUBIC,
  102. OBS_SCALE_BILINEAR,
  103. OBS_SCALE_LANCZOS,
  104. OBS_SCALE_AREA,
  105. };
  106. /**
  107. * Used with scene items to indicate the type of bounds to use for scene items.
  108. * Mostly determines how the image will be scaled within those bounds, or
  109. * whether to use bounds at all.
  110. */
  111. enum obs_bounds_type {
  112. OBS_BOUNDS_NONE, /**< no bounds */
  113. OBS_BOUNDS_STRETCH, /**< stretch (ignores base scale) */
  114. OBS_BOUNDS_SCALE_INNER, /**< scales to inner rectangle */
  115. OBS_BOUNDS_SCALE_OUTER, /**< scales to outer rectangle */
  116. OBS_BOUNDS_SCALE_TO_WIDTH, /**< scales to the width */
  117. OBS_BOUNDS_SCALE_TO_HEIGHT, /**< scales to the height */
  118. OBS_BOUNDS_MAX_ONLY, /**< no scaling, maximum size only */
  119. };
  120. struct obs_transform_info {
  121. struct vec2 pos;
  122. float rot;
  123. struct vec2 scale;
  124. uint32_t alignment;
  125. enum obs_bounds_type bounds_type;
  126. uint32_t bounds_alignment;
  127. struct vec2 bounds;
  128. };
  129. /**
  130. * Video initialization structure
  131. */
  132. struct obs_video_info {
  133. #ifndef SWIG
  134. /**
  135. * Graphics module to use (usually "libobs-opengl" or "libobs-d3d11")
  136. */
  137. const char *graphics_module;
  138. #endif
  139. uint32_t fps_num; /**< Output FPS numerator */
  140. uint32_t fps_den; /**< Output FPS denominator */
  141. uint32_t base_width; /**< Base compositing width */
  142. uint32_t base_height; /**< Base compositing height */
  143. uint32_t output_width; /**< Output width */
  144. uint32_t output_height; /**< Output height */
  145. enum video_format output_format; /**< Output format */
  146. /** Video adapter index to use (NOTE: avoid for optimus laptops) */
  147. uint32_t adapter;
  148. /** Use shaders to convert to different color formats */
  149. bool gpu_conversion;
  150. enum video_colorspace colorspace; /**< YUV type (if YUV) */
  151. enum video_range_type range; /**< YUV range (if YUV) */
  152. enum obs_scale_type scale_type; /**< How to scale if scaling */
  153. };
  154. /**
  155. * Audio initialization structure
  156. */
  157. struct obs_audio_info {
  158. uint32_t samples_per_sec;
  159. enum speaker_layout speakers;
  160. };
  161. /**
  162. * Sent to source filters via the filter_audio callback to allow filtering of
  163. * audio data
  164. */
  165. struct obs_audio_data {
  166. uint8_t *data[MAX_AV_PLANES];
  167. uint32_t frames;
  168. uint64_t timestamp;
  169. };
  170. /**
  171. * Source audio output structure. Used with obs_source_output_audio to output
  172. * source audio. Audio is automatically resampled and remixed as necessary.
  173. */
  174. struct obs_source_audio {
  175. const uint8_t *data[MAX_AV_PLANES];
  176. uint32_t frames;
  177. enum speaker_layout speakers;
  178. enum audio_format format;
  179. uint32_t samples_per_sec;
  180. uint64_t timestamp;
  181. };
  182. /**
  183. * Source asynchronous video output structure. Used with
  184. * obs_source_output_video to output asynchronous video. Video is buffered as
  185. * necessary to play according to timestamps. When used with audio output,
  186. * audio is synced to video as it is played.
  187. *
  188. * If a YUV format is specified, it will be automatically upsampled and
  189. * converted to RGB via shader on the graphics processor.
  190. *
  191. * NOTE: Non-YUV formats will always be treated as full range with this
  192. * structure! Use obs_source_frame2 along with obs_source_output_video2
  193. * instead if partial range support is desired for non-YUV video formats.
  194. */
  195. struct obs_source_frame {
  196. uint8_t *data[MAX_AV_PLANES];
  197. uint32_t linesize[MAX_AV_PLANES];
  198. uint32_t width;
  199. uint32_t height;
  200. uint64_t timestamp;
  201. enum video_format format;
  202. float color_matrix[16];
  203. bool full_range;
  204. float color_range_min[3];
  205. float color_range_max[3];
  206. bool flip;
  207. /* used internally by libobs */
  208. volatile long refs;
  209. bool prev_frame;
  210. };
  211. struct obs_source_frame2 {
  212. uint8_t *data[MAX_AV_PLANES];
  213. uint32_t linesize[MAX_AV_PLANES];
  214. uint32_t width;
  215. uint32_t height;
  216. uint64_t timestamp;
  217. enum video_format format;
  218. enum video_range_type range;
  219. float color_matrix[16];
  220. float color_range_min[3];
  221. float color_range_max[3];
  222. bool flip;
  223. };
  224. /** Access to the argc/argv used to start OBS. What you see is what you get. */
  225. struct obs_cmdline_args {
  226. int argc;
  227. char **argv;
  228. };
  229. /* ------------------------------------------------------------------------- */
  230. /* OBS context */
  231. /**
  232. * Find a core libobs data file
  233. * @param path name of the base file
  234. * @return A string containing the full path to the file.
  235. * Use bfree after use.
  236. */
  237. EXPORT char *obs_find_data_file(const char *file);
  238. /**
  239. * Add a path to search libobs data files in.
  240. * @param path Full path to directory to look in.
  241. * The string is copied.
  242. */
  243. EXPORT void obs_add_data_path(const char *path);
  244. /**
  245. * Remove a path from libobs core data paths.
  246. * @param path The path to compare to currently set paths.
  247. * It does not need to be the same pointer, but
  248. * the path string must match an entry fully.
  249. * @return Whether or not the path was successfully removed.
  250. * If false, the path could not be found.
  251. */
  252. EXPORT bool obs_remove_data_path(const char *path);
  253. /**
  254. * Initializes OBS
  255. *
  256. * @param locale The locale to use for modules
  257. * @param module_config_path Path to module config storage directory
  258. * (or NULL if none)
  259. * @param store The profiler name store for OBS to use or NULL
  260. */
  261. EXPORT bool obs_startup(const char *locale, const char *module_config_path,
  262. profiler_name_store_t *store);
  263. /** Releases all data associated with OBS and terminates the OBS context */
  264. EXPORT void obs_shutdown(void);
  265. /** @return true if the main OBS context has been initialized */
  266. EXPORT bool obs_initialized(void);
  267. /** @return The current core version */
  268. EXPORT uint32_t obs_get_version(void);
  269. /** @return The current core version string */
  270. EXPORT const char *obs_get_version_string(void);
  271. /**
  272. * Sets things up for calls to obs_get_cmdline_args. Called only once at startup
  273. * and safely copies argv/argc from main(). Subsequent calls do nothing.
  274. *
  275. * @param argc The count of command line arguments, from main()
  276. * @param argv An array of command line arguments, copied from main() and ends
  277. * with NULL.
  278. */
  279. EXPORT void obs_set_cmdline_args(int argc, const char *const *argv);
  280. /**
  281. * Get the argc/argv used to start OBS
  282. *
  283. * @return The command line arguments used for main(). Don't modify this or
  284. * you'll mess things up for other callers.
  285. */
  286. EXPORT struct obs_cmdline_args obs_get_cmdline_args(void);
  287. /**
  288. * Sets a new locale to use for modules. This will call obs_module_set_locale
  289. * for each module with the new locale.
  290. *
  291. * @param locale The locale to use for modules
  292. */
  293. EXPORT void obs_set_locale(const char *locale);
  294. /** @return the current locale */
  295. EXPORT const char *obs_get_locale(void);
  296. /** Initialize the Windows-specific crash handler */
  297. #ifdef _WIN32
  298. EXPORT void obs_init_win32_crash_handler(void);
  299. #endif
  300. /**
  301. * Returns the profiler name store (see util/profiler.h) used by OBS, which is
  302. * either a name store passed to obs_startup, an internal name store, or NULL
  303. * in case obs_initialized() returns false.
  304. */
  305. EXPORT profiler_name_store_t *obs_get_profiler_name_store(void);
  306. /**
  307. * Sets base video output base resolution/fps/format.
  308. *
  309. * @note This data cannot be changed if an output is currently active.
  310. * @note The graphics module cannot be changed without fully destroying the
  311. * OBS context.
  312. *
  313. * @param ovi Pointer to an obs_video_info structure containing the
  314. * specification of the graphics subsystem,
  315. * @return OBS_VIDEO_SUCCESS if successful
  316. * OBS_VIDEO_NOT_SUPPORTED if the adapter lacks capabilities
  317. * OBS_VIDEO_INVALID_PARAM if a parameter is invalid
  318. * OBS_VIDEO_CURRENTLY_ACTIVE if video is currently active
  319. * OBS_VIDEO_MODULE_NOT_FOUND if the graphics module is not found
  320. * OBS_VIDEO_FAIL for generic failure
  321. */
  322. EXPORT int obs_reset_video(struct obs_video_info *ovi);
  323. /**
  324. * Sets base audio output format/channels/samples/etc
  325. *
  326. * @note Cannot reset base audio if an output is currently active.
  327. */
  328. EXPORT bool obs_reset_audio(const struct obs_audio_info *oai);
  329. /** Gets the current video settings, returns false if no video */
  330. EXPORT bool obs_get_video_info(struct obs_video_info *ovi);
  331. /** Gets the current audio settings, returns false if no audio */
  332. EXPORT bool obs_get_audio_info(struct obs_audio_info *oai);
  333. /**
  334. * Opens a plugin module directly from a specific path.
  335. *
  336. * If the module already exists then the function will return successful, and
  337. * the module parameter will be given the pointer to the existing module.
  338. *
  339. * This does not initialize the module, it only loads the module image. To
  340. * initialize the module, call obs_init_module.
  341. *
  342. * @param module The pointer to the created module.
  343. * @param path Specifies the path to the module library file. If the
  344. * extension is not specified, it will use the extension
  345. * appropriate to the operating system.
  346. * @param data_path Specifies the path to the directory where the module's
  347. * data files are stored.
  348. * @returns MODULE_SUCCESS if successful
  349. * MODULE_ERROR if a generic error occurred
  350. * MODULE_FILE_NOT_FOUND if the module was not found
  351. * MODULE_MISSING_EXPORTS if required exports are missing
  352. * MODULE_INCOMPATIBLE_VER if incompatible version
  353. */
  354. EXPORT int obs_open_module(obs_module_t **module, const char *path,
  355. const char *data_path);
  356. /**
  357. * Initializes the module, which calls its obs_module_load export. If the
  358. * module is already loaded, then this function does nothing and returns
  359. * successful.
  360. */
  361. EXPORT bool obs_init_module(obs_module_t *module);
  362. /** Returns a module based upon its name, or NULL if not found */
  363. EXPORT obs_module_t *obs_get_module(const char *name);
  364. /** Logs loaded modules */
  365. EXPORT void obs_log_loaded_modules(void);
  366. /** Returns the module file name */
  367. EXPORT const char *obs_get_module_file_name(obs_module_t *module);
  368. /** Returns the module full name */
  369. EXPORT const char *obs_get_module_name(obs_module_t *module);
  370. /** Returns the module author(s) */
  371. EXPORT const char *obs_get_module_author(obs_module_t *module);
  372. /** Returns the module description */
  373. EXPORT const char *obs_get_module_description(obs_module_t *module);
  374. /** Returns the module binary path */
  375. EXPORT const char *obs_get_module_binary_path(obs_module_t *module);
  376. /** Returns the module data path */
  377. EXPORT const char *obs_get_module_data_path(obs_module_t *module);
  378. /**
  379. * Adds a module search path to be used with obs_find_modules. If the search
  380. * path strings contain %module%, that text will be replaced with the module
  381. * name when used.
  382. *
  383. * @param bin Specifies the module's binary directory search path.
  384. * @param data Specifies the module's data directory search path.
  385. */
  386. EXPORT void obs_add_module_path(const char *bin, const char *data);
  387. /** Automatically loads all modules from module paths (convenience function) */
  388. EXPORT void obs_load_all_modules(void);
  389. /** Notifies modules that all modules have been loaded. This function should
  390. * be called after all modules have been loaded. */
  391. EXPORT void obs_post_load_modules(void);
  392. #ifndef SWIG
  393. struct obs_module_info {
  394. const char *bin_path;
  395. const char *data_path;
  396. };
  397. typedef void (*obs_find_module_callback_t)(void *param,
  398. const struct obs_module_info *info);
  399. /** Finds all modules within the search paths added by obs_add_module_path. */
  400. EXPORT void obs_find_modules(obs_find_module_callback_t callback, void *param);
  401. #endif
  402. typedef void (*obs_enum_module_callback_t)(void *param, obs_module_t *module);
  403. /** Enumerates all loaded modules */
  404. EXPORT void obs_enum_modules(obs_enum_module_callback_t callback, void *param);
  405. /** Helper function for using default module locale */
  406. EXPORT lookup_t *obs_module_load_locale(obs_module_t *module,
  407. const char *default_locale,
  408. const char *locale);
  409. /**
  410. * Returns the location of a plugin module data file.
  411. *
  412. * @note Modules should use obs_module_file function defined in obs-module.h
  413. * as a more elegant means of getting their files without having to
  414. * specify the module parameter.
  415. *
  416. * @param module The module associated with the file to locate
  417. * @param file The file to locate
  418. * @return Path string, or NULL if not found. Use bfree to free string.
  419. */
  420. EXPORT char *obs_find_module_file(obs_module_t *module, const char *file);
  421. /**
  422. * Returns the path of a plugin module config file (whether it exists or not)
  423. *
  424. * @note Modules should use obs_module_config_path function defined in
  425. * obs-module.h as a more elegant means of getting their files without
  426. * having to specify the module parameter.
  427. *
  428. * @param module The module associated with the path
  429. * @param file The file to get a path to
  430. * @return Path string, or NULL if not found. Use bfree to free string.
  431. */
  432. EXPORT char *obs_module_get_config_path(obs_module_t *module, const char *file);
  433. /** Enumerates all source types (inputs, filters, transitions, etc). */
  434. EXPORT bool obs_enum_source_types(size_t idx, const char **id);
  435. /**
  436. * Enumerates all available inputs source types.
  437. *
  438. * Inputs are general source inputs (such as capture sources, device sources,
  439. * etc).
  440. */
  441. EXPORT bool obs_enum_input_types(size_t idx, const char **id);
  442. EXPORT bool obs_enum_input_types2(size_t idx, const char **id,
  443. const char **unversioned_id);
  444. EXPORT const char *obs_get_latest_input_type_id(const char *unversioned_id);
  445. /**
  446. * Enumerates all available filter source types.
  447. *
  448. * Filters are sources that are used to modify the video/audio output of
  449. * other sources.
  450. */
  451. EXPORT bool obs_enum_filter_types(size_t idx, const char **id);
  452. /**
  453. * Enumerates all available transition source types.
  454. *
  455. * Transitions are sources used to transition between two or more other
  456. * sources.
  457. */
  458. EXPORT bool obs_enum_transition_types(size_t idx, const char **id);
  459. /** Enumerates all available output types. */
  460. EXPORT bool obs_enum_output_types(size_t idx, const char **id);
  461. /** Enumerates all available encoder types. */
  462. EXPORT bool obs_enum_encoder_types(size_t idx, const char **id);
  463. /** Enumerates all available service types. */
  464. EXPORT bool obs_enum_service_types(size_t idx, const char **id);
  465. /** Helper function for entering the OBS graphics context */
  466. EXPORT void obs_enter_graphics(void);
  467. /** Helper function for leaving the OBS graphics context */
  468. EXPORT void obs_leave_graphics(void);
  469. /** Gets the main audio output handler for this OBS context */
  470. EXPORT audio_t *obs_get_audio(void);
  471. /** Gets the main video output handler for this OBS context */
  472. EXPORT video_t *obs_get_video(void);
  473. /** Returns true if video is active, false otherwise */
  474. EXPORT bool obs_video_active(void);
  475. /** Sets the primary output source for a channel. */
  476. EXPORT void obs_set_output_source(uint32_t channel, obs_source_t *source);
  477. /**
  478. * Gets the primary output source for a channel and increments the reference
  479. * counter for that source. Use obs_source_release to release.
  480. */
  481. EXPORT obs_source_t *obs_get_output_source(uint32_t channel);
  482. /**
  483. * Enumerates all input sources
  484. *
  485. * Callback function returns true to continue enumeration, or false to end
  486. * enumeration.
  487. *
  488. * Use obs_source_get_ref or obs_source_get_weak_source if you want to retain
  489. * a reference after obs_enum_sources finishes
  490. */
  491. EXPORT void obs_enum_sources(bool (*enum_proc)(void *, obs_source_t *),
  492. void *param);
  493. /** Enumerates scenes */
  494. EXPORT void obs_enum_scenes(bool (*enum_proc)(void *, obs_source_t *),
  495. void *param);
  496. /** Enumerates outputs */
  497. EXPORT void obs_enum_outputs(bool (*enum_proc)(void *, obs_output_t *),
  498. void *param);
  499. /** Enumerates encoders */
  500. EXPORT void obs_enum_encoders(bool (*enum_proc)(void *, obs_encoder_t *),
  501. void *param);
  502. /** Enumerates encoders */
  503. EXPORT void obs_enum_services(bool (*enum_proc)(void *, obs_service_t *),
  504. void *param);
  505. /**
  506. * Gets a source by its name.
  507. *
  508. * Increments the source reference counter, use obs_source_release to
  509. * release it when complete.
  510. */
  511. EXPORT obs_source_t *obs_get_source_by_name(const char *name);
  512. /** Gets an output by its name. */
  513. EXPORT obs_output_t *obs_get_output_by_name(const char *name);
  514. /** Gets an encoder by its name. */
  515. EXPORT obs_encoder_t *obs_get_encoder_by_name(const char *name);
  516. /** Gets an service by its name. */
  517. EXPORT obs_service_t *obs_get_service_by_name(const char *name);
  518. enum obs_base_effect {
  519. OBS_EFFECT_DEFAULT, /**< RGB/YUV */
  520. OBS_EFFECT_DEFAULT_RECT, /**< RGB/YUV (using texture_rect) */
  521. OBS_EFFECT_OPAQUE, /**< RGB/YUV (alpha set to 1.0) */
  522. OBS_EFFECT_SOLID, /**< RGB/YUV (solid color only) */
  523. OBS_EFFECT_BICUBIC, /**< Bicubic downscale */
  524. OBS_EFFECT_LANCZOS, /**< Lanczos downscale */
  525. OBS_EFFECT_BILINEAR_LOWRES, /**< Bilinear low resolution downscale */
  526. OBS_EFFECT_PREMULTIPLIED_ALPHA, /**< Premultiplied alpha */
  527. OBS_EFFECT_REPEAT, /**< RGB/YUV (repeating) */
  528. OBS_EFFECT_AREA, /**< Area rescale */
  529. };
  530. /** Returns a commonly used base effect */
  531. EXPORT gs_effect_t *obs_get_base_effect(enum obs_base_effect effect);
  532. #ifndef SWIG
  533. /* DEPRECATED: gets texture_rect default effect */
  534. OBS_DEPRECATED
  535. EXPORT gs_effect_t *obs_get_default_rect_effect(void);
  536. #endif
  537. /** Returns the primary obs signal handler */
  538. EXPORT signal_handler_t *obs_get_signal_handler(void);
  539. /** Returns the primary obs procedure handler */
  540. EXPORT proc_handler_t *obs_get_proc_handler(void);
  541. #ifndef SWIG
  542. /** Renders the main view */
  543. OBS_DEPRECATED
  544. EXPORT void obs_render_main_view(void);
  545. #endif
  546. /** Renders the last main output texture */
  547. EXPORT void obs_render_main_texture(void);
  548. /** Renders the last main output texture ignoring background color */
  549. EXPORT void obs_render_main_texture_src_color_only(void);
  550. /** Returns the last main output texture. This can return NULL if the texture
  551. * is unavailable. */
  552. EXPORT gs_texture_t *obs_get_main_texture(void);
  553. /** Sets the master user volume */
  554. EXPORT void obs_set_master_volume(float volume);
  555. /** Gets the master user volume */
  556. EXPORT float obs_get_master_volume(void);
  557. /** Saves a source to settings data */
  558. EXPORT obs_data_t *obs_save_source(obs_source_t *source);
  559. /** Loads a source from settings data */
  560. EXPORT obs_source_t *obs_load_source(obs_data_t *data);
  561. /** Send a save signal to sources */
  562. EXPORT void obs_source_save(obs_source_t *source);
  563. /** Send a load signal to sources */
  564. EXPORT void obs_source_load(obs_source_t *source);
  565. typedef void (*obs_load_source_cb)(void *private_data, obs_source_t *source);
  566. /** Loads sources from a data array */
  567. EXPORT void obs_load_sources(obs_data_array_t *array, obs_load_source_cb cb,
  568. void *private_data);
  569. /** Saves sources to a data array */
  570. EXPORT obs_data_array_t *obs_save_sources(void);
  571. typedef bool (*obs_save_source_filter_cb)(void *data, obs_source_t *source);
  572. EXPORT obs_data_array_t *obs_save_sources_filtered(obs_save_source_filter_cb cb,
  573. void *data);
  574. enum obs_obj_type {
  575. OBS_OBJ_TYPE_INVALID,
  576. OBS_OBJ_TYPE_SOURCE,
  577. OBS_OBJ_TYPE_OUTPUT,
  578. OBS_OBJ_TYPE_ENCODER,
  579. OBS_OBJ_TYPE_SERVICE,
  580. };
  581. EXPORT enum obs_obj_type obs_obj_get_type(void *obj);
  582. EXPORT const char *obs_obj_get_id(void *obj);
  583. EXPORT bool obs_obj_invalid(void *obj);
  584. EXPORT void *obs_obj_get_data(void *obj);
  585. typedef bool (*obs_enum_audio_device_cb)(void *data, const char *name,
  586. const char *id);
  587. EXPORT void obs_enum_audio_monitoring_devices(obs_enum_audio_device_cb cb,
  588. void *data);
  589. EXPORT bool obs_set_audio_monitoring_device(const char *name, const char *id);
  590. EXPORT void obs_get_audio_monitoring_device(const char **name, const char **id);
  591. EXPORT void obs_add_tick_callback(void (*tick)(void *param, float seconds),
  592. void *param);
  593. EXPORT void obs_remove_tick_callback(void (*tick)(void *param, float seconds),
  594. void *param);
  595. EXPORT void obs_add_main_render_callback(void (*draw)(void *param, uint32_t cx,
  596. uint32_t cy),
  597. void *param);
  598. EXPORT void obs_remove_main_render_callback(
  599. void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param);
  600. EXPORT void obs_add_raw_video_callback(
  601. const struct video_scale_info *conversion,
  602. void (*callback)(void *param, struct video_data *frame), void *param);
  603. EXPORT void obs_remove_raw_video_callback(
  604. void (*callback)(void *param, struct video_data *frame), void *param);
  605. EXPORT uint64_t obs_get_video_frame_time(void);
  606. EXPORT double obs_get_active_fps(void);
  607. EXPORT uint64_t obs_get_average_frame_time_ns(void);
  608. EXPORT uint64_t obs_get_frame_interval_ns(void);
  609. EXPORT uint32_t obs_get_total_frames(void);
  610. EXPORT uint32_t obs_get_lagged_frames(void);
  611. EXPORT bool obs_nv12_tex_active(void);
  612. EXPORT void obs_apply_private_data(obs_data_t *settings);
  613. EXPORT void obs_set_private_data(obs_data_t *settings);
  614. EXPORT obs_data_t *obs_get_private_data(void);
  615. typedef void (*obs_task_t)(void *param);
  616. enum obs_task_type {
  617. OBS_TASK_UI,
  618. OBS_TASK_GRAPHICS,
  619. };
  620. EXPORT void obs_queue_task(enum obs_task_type type, obs_task_t task,
  621. void *param, bool wait);
  622. typedef void (*obs_task_handler_t)(obs_task_t task, void *param, bool wait);
  623. EXPORT void obs_set_ui_task_handler(obs_task_handler_t handler);
  624. /* ------------------------------------------------------------------------- */
  625. /* View context */
  626. /**
  627. * Creates a view context.
  628. *
  629. * A view can be used for things like separate previews, or drawing
  630. * sources separately.
  631. */
  632. EXPORT obs_view_t *obs_view_create(void);
  633. /** Destroys this view context */
  634. EXPORT void obs_view_destroy(obs_view_t *view);
  635. /** Sets the source to be used for this view context. */
  636. EXPORT void obs_view_set_source(obs_view_t *view, uint32_t channel,
  637. obs_source_t *source);
  638. /** Gets the source currently in use for this view context */
  639. EXPORT obs_source_t *obs_view_get_source(obs_view_t *view, uint32_t channel);
  640. /** Renders the sources of this view context */
  641. EXPORT void obs_view_render(obs_view_t *view);
  642. /* ------------------------------------------------------------------------- */
  643. /* Display context */
  644. /**
  645. * Adds a new window display linked to the main render pipeline. This creates
  646. * a new swap chain which updates every frame.
  647. *
  648. * @param graphics_data The swap chain initialization data.
  649. * @return The new display context, or NULL if failed.
  650. */
  651. EXPORT obs_display_t *
  652. obs_display_create(const struct gs_init_data *graphics_data,
  653. uint32_t backround_color);
  654. /** Destroys a display context */
  655. EXPORT void obs_display_destroy(obs_display_t *display);
  656. /** Changes the size of this display */
  657. EXPORT void obs_display_resize(obs_display_t *display, uint32_t cx,
  658. uint32_t cy);
  659. /**
  660. * Adds a draw callback for this display context
  661. *
  662. * @param display The display context.
  663. * @param draw The draw callback which is called each time a frame
  664. * updates.
  665. * @param param The user data to be associated with this draw callback.
  666. */
  667. EXPORT void obs_display_add_draw_callback(obs_display_t *display,
  668. void (*draw)(void *param, uint32_t cx,
  669. uint32_t cy),
  670. void *param);
  671. /** Removes a draw callback for this display context */
  672. EXPORT void obs_display_remove_draw_callback(
  673. obs_display_t *display,
  674. void (*draw)(void *param, uint32_t cx, uint32_t cy), void *param);
  675. EXPORT void obs_display_set_enabled(obs_display_t *display, bool enable);
  676. EXPORT bool obs_display_enabled(obs_display_t *display);
  677. EXPORT void obs_display_set_background_color(obs_display_t *display,
  678. uint32_t color);
  679. EXPORT void obs_display_size(obs_display_t *display, uint32_t *width,
  680. uint32_t *height);
  681. /* ------------------------------------------------------------------------- */
  682. /* Sources */
  683. /** Returns the translated display name of a source */
  684. EXPORT const char *obs_source_get_display_name(const char *id);
  685. /**
  686. * Creates a source of the specified type with the specified settings.
  687. *
  688. * The "source" context is used for anything related to presenting
  689. * or modifying video/audio. Use obs_source_release to release it.
  690. */
  691. EXPORT obs_source_t *obs_source_create(const char *id, const char *name,
  692. obs_data_t *settings,
  693. obs_data_t *hotkey_data);
  694. EXPORT obs_source_t *obs_source_create_private(const char *id, const char *name,
  695. obs_data_t *settings);
  696. /* if source has OBS_SOURCE_DO_NOT_DUPLICATE output flag set, only returns a
  697. * reference */
  698. EXPORT obs_source_t *obs_source_duplicate(obs_source_t *source,
  699. const char *desired_name,
  700. bool create_private);
  701. /**
  702. * Adds/releases a reference to a source. When the last reference is
  703. * released, the source is destroyed.
  704. */
  705. EXPORT void obs_source_addref(obs_source_t *source);
  706. EXPORT void obs_source_release(obs_source_t *source);
  707. EXPORT void obs_weak_source_addref(obs_weak_source_t *weak);
  708. EXPORT void obs_weak_source_release(obs_weak_source_t *weak);
  709. EXPORT obs_source_t *obs_source_get_ref(obs_source_t *source);
  710. EXPORT obs_weak_source_t *obs_source_get_weak_source(obs_source_t *source);
  711. EXPORT obs_source_t *obs_weak_source_get_source(obs_weak_source_t *weak);
  712. EXPORT bool obs_weak_source_references_source(obs_weak_source_t *weak,
  713. obs_source_t *source);
  714. /** Notifies all references that the source should be released */
  715. EXPORT void obs_source_remove(obs_source_t *source);
  716. /** Returns true if the source should be released */
  717. EXPORT bool obs_source_removed(const obs_source_t *source);
  718. /** Returns capability flags of a source */
  719. EXPORT uint32_t obs_source_get_output_flags(const obs_source_t *source);
  720. /** Returns capability flags of a source type */
  721. EXPORT uint32_t obs_get_source_output_flags(const char *id);
  722. /** Gets the default settings for a source type */
  723. EXPORT obs_data_t *obs_get_source_defaults(const char *id);
  724. /** Returns the property list, if any. Free with obs_properties_destroy */
  725. EXPORT obs_properties_t *obs_get_source_properties(const char *id);
  726. /** Returns whether the source has custom properties or not */
  727. EXPORT bool obs_is_source_configurable(const char *id);
  728. EXPORT bool obs_source_configurable(const obs_source_t *source);
  729. /**
  730. * Returns the properties list for a specific existing source. Free with
  731. * obs_properties_destroy
  732. */
  733. EXPORT obs_properties_t *obs_source_properties(const obs_source_t *source);
  734. /** Updates settings for this source */
  735. EXPORT void obs_source_update(obs_source_t *source, obs_data_t *settings);
  736. /** Renders a video source. */
  737. EXPORT void obs_source_video_render(obs_source_t *source);
  738. /** Gets the width of a source (if it has video) */
  739. EXPORT uint32_t obs_source_get_width(obs_source_t *source);
  740. /** Gets the height of a source (if it has video) */
  741. EXPORT uint32_t obs_source_get_height(obs_source_t *source);
  742. /**
  743. * If the source is a filter, returns the parent source of the filter. Only
  744. * guaranteed to be valid inside of the video_render, filter_audio,
  745. * filter_video, and filter_remove callbacks.
  746. */
  747. EXPORT obs_source_t *obs_filter_get_parent(const obs_source_t *filter);
  748. /**
  749. * If the source is a filter, returns the target source of the filter. Only
  750. * guaranteed to be valid inside of the video_render, filter_audio,
  751. * filter_video, and filter_remove callbacks.
  752. */
  753. EXPORT obs_source_t *obs_filter_get_target(const obs_source_t *filter);
  754. /** Used to directly render a non-async source without any filter processing */
  755. EXPORT void obs_source_default_render(obs_source_t *source);
  756. /** Adds a filter to the source (which is used whenever the source is used) */
  757. EXPORT void obs_source_filter_add(obs_source_t *source, obs_source_t *filter);
  758. /** Removes a filter from the source */
  759. EXPORT void obs_source_filter_remove(obs_source_t *source,
  760. obs_source_t *filter);
  761. /** Modifies the order of a specific filter */
  762. EXPORT void obs_source_filter_set_order(obs_source_t *source,
  763. obs_source_t *filter,
  764. enum obs_order_movement movement);
  765. /** Gets the settings string for a source */
  766. EXPORT obs_data_t *obs_source_get_settings(const obs_source_t *source);
  767. /** Gets the name of a source */
  768. EXPORT const char *obs_source_get_name(const obs_source_t *source);
  769. /** Sets the name of a source */
  770. EXPORT void obs_source_set_name(obs_source_t *source, const char *name);
  771. /** Gets the source type */
  772. EXPORT enum obs_source_type obs_source_get_type(const obs_source_t *source);
  773. /** Gets the source identifier */
  774. EXPORT const char *obs_source_get_id(const obs_source_t *source);
  775. EXPORT const char *obs_source_get_unversioned_id(const obs_source_t *source);
  776. /** Returns the signal handler for a source */
  777. EXPORT signal_handler_t *
  778. obs_source_get_signal_handler(const obs_source_t *source);
  779. /** Returns the procedure handler for a source */
  780. EXPORT proc_handler_t *obs_source_get_proc_handler(const obs_source_t *source);
  781. /** Sets the user volume for a source that has audio output */
  782. EXPORT void obs_source_set_volume(obs_source_t *source, float volume);
  783. /** Gets the user volume for a source that has audio output */
  784. EXPORT float obs_source_get_volume(const obs_source_t *source);
  785. /* Gets speaker layout of a source */
  786. EXPORT enum speaker_layout obs_source_get_speaker_layout(obs_source_t *source);
  787. /** Sets the balance value for a stereo audio source */
  788. EXPORT void obs_source_set_balance_value(obs_source_t *source, float balance);
  789. /** Gets the balance value for a stereo audio source */
  790. EXPORT float obs_source_get_balance_value(const obs_source_t *source);
  791. /** Sets the audio sync offset (in nanoseconds) for a source */
  792. EXPORT void obs_source_set_sync_offset(obs_source_t *source, int64_t offset);
  793. /** Gets the audio sync offset (in nanoseconds) for a source */
  794. EXPORT int64_t obs_source_get_sync_offset(const obs_source_t *source);
  795. /** Enumerates active child sources used by this source */
  796. EXPORT void obs_source_enum_active_sources(obs_source_t *source,
  797. obs_source_enum_proc_t enum_callback,
  798. void *param);
  799. /** Enumerates the entire active child source tree used by this source */
  800. EXPORT void obs_source_enum_active_tree(obs_source_t *source,
  801. obs_source_enum_proc_t enum_callback,
  802. void *param);
  803. /** Returns true if active, false if not */
  804. EXPORT bool obs_source_active(const obs_source_t *source);
  805. /**
  806. * Returns true if currently displayed somewhere (active or not), false if not
  807. */
  808. EXPORT bool obs_source_showing(const obs_source_t *source);
  809. /** Unused flag */
  810. #define OBS_SOURCE_FLAG_UNUSED_1 (1 << 0)
  811. /** Specifies to force audio to mono */
  812. #define OBS_SOURCE_FLAG_FORCE_MONO (1 << 1)
  813. /**
  814. * Sets source flags. Note that these are different from the main output
  815. * flags. These are generally things that can be set by the source or user,
  816. * while the output flags are more used to determine capabilities of a source.
  817. */
  818. EXPORT void obs_source_set_flags(obs_source_t *source, uint32_t flags);
  819. /** Gets source flags. */
  820. EXPORT uint32_t obs_source_get_flags(const obs_source_t *source);
  821. /**
  822. * Sets audio mixer flags. These flags are used to specify which mixers
  823. * the source's audio should be applied to.
  824. */
  825. EXPORT void obs_source_set_audio_mixers(obs_source_t *source, uint32_t mixers);
  826. /** Gets audio mixer flags */
  827. EXPORT uint32_t obs_source_get_audio_mixers(const obs_source_t *source);
  828. /**
  829. * Increments the 'showing' reference counter to indicate that the source is
  830. * being shown somewhere. If the reference counter was 0, will call the 'show'
  831. * callback.
  832. */
  833. EXPORT void obs_source_inc_showing(obs_source_t *source);
  834. /**
  835. * Increments the 'active' reference counter to indicate that the source is
  836. * fully active. If the reference counter was 0, will call the 'activate'
  837. * callback.
  838. *
  839. * Unlike obs_source_inc_showing, this will cause children of this source to be
  840. * considered showing as well (currently used by transition previews to make
  841. * the stinger transition show correctly). obs_source_inc_showing should
  842. * generally be used instead.
  843. */
  844. EXPORT void obs_source_inc_active(obs_source_t *source);
  845. /**
  846. * Decrements the 'showing' reference counter to indicate that the source is
  847. * no longer being shown somewhere. If the reference counter is set to 0,
  848. * will call the 'hide' callback
  849. */
  850. EXPORT void obs_source_dec_showing(obs_source_t *source);
  851. /**
  852. * Decrements the 'active' reference counter to indicate that the source is no
  853. * longer fully active. If the reference counter is set to 0, will call the
  854. * 'deactivate' callback
  855. *
  856. * Unlike obs_source_dec_showing, this will cause children of this source to be
  857. * considered not showing as well. obs_source_dec_showing should generally be
  858. * used instead.
  859. */
  860. EXPORT void obs_source_dec_active(obs_source_t *source);
  861. /** Enumerates filters assigned to the source */
  862. EXPORT void obs_source_enum_filters(obs_source_t *source,
  863. obs_source_enum_proc_t callback,
  864. void *param);
  865. /** Gets a filter of a source by its display name. */
  866. EXPORT obs_source_t *obs_source_get_filter_by_name(obs_source_t *source,
  867. const char *name);
  868. EXPORT void obs_source_copy_filters(obs_source_t *dst, obs_source_t *src);
  869. EXPORT bool obs_source_enabled(const obs_source_t *source);
  870. EXPORT void obs_source_set_enabled(obs_source_t *source, bool enabled);
  871. EXPORT bool obs_source_muted(const obs_source_t *source);
  872. EXPORT void obs_source_set_muted(obs_source_t *source, bool muted);
  873. EXPORT bool obs_source_push_to_mute_enabled(obs_source_t *source);
  874. EXPORT void obs_source_enable_push_to_mute(obs_source_t *source, bool enabled);
  875. EXPORT uint64_t obs_source_get_push_to_mute_delay(obs_source_t *source);
  876. EXPORT void obs_source_set_push_to_mute_delay(obs_source_t *source,
  877. uint64_t delay);
  878. EXPORT bool obs_source_push_to_talk_enabled(obs_source_t *source);
  879. EXPORT void obs_source_enable_push_to_talk(obs_source_t *source, bool enabled);
  880. EXPORT uint64_t obs_source_get_push_to_talk_delay(obs_source_t *source);
  881. EXPORT void obs_source_set_push_to_talk_delay(obs_source_t *source,
  882. uint64_t delay);
  883. typedef void (*obs_source_audio_capture_t)(void *param, obs_source_t *source,
  884. const struct audio_data *audio_data,
  885. bool muted);
  886. EXPORT void obs_source_add_audio_capture_callback(
  887. obs_source_t *source, obs_source_audio_capture_t callback, void *param);
  888. EXPORT void obs_source_remove_audio_capture_callback(
  889. obs_source_t *source, obs_source_audio_capture_t callback, void *param);
  890. enum obs_deinterlace_mode {
  891. OBS_DEINTERLACE_MODE_DISABLE,
  892. OBS_DEINTERLACE_MODE_DISCARD,
  893. OBS_DEINTERLACE_MODE_RETRO,
  894. OBS_DEINTERLACE_MODE_BLEND,
  895. OBS_DEINTERLACE_MODE_BLEND_2X,
  896. OBS_DEINTERLACE_MODE_LINEAR,
  897. OBS_DEINTERLACE_MODE_LINEAR_2X,
  898. OBS_DEINTERLACE_MODE_YADIF,
  899. OBS_DEINTERLACE_MODE_YADIF_2X,
  900. };
  901. enum obs_deinterlace_field_order {
  902. OBS_DEINTERLACE_FIELD_ORDER_TOP,
  903. OBS_DEINTERLACE_FIELD_ORDER_BOTTOM,
  904. };
  905. EXPORT void obs_source_set_deinterlace_mode(obs_source_t *source,
  906. enum obs_deinterlace_mode mode);
  907. EXPORT enum obs_deinterlace_mode
  908. obs_source_get_deinterlace_mode(const obs_source_t *source);
  909. EXPORT void obs_source_set_deinterlace_field_order(
  910. obs_source_t *source, enum obs_deinterlace_field_order field_order);
  911. EXPORT enum obs_deinterlace_field_order
  912. obs_source_get_deinterlace_field_order(const obs_source_t *source);
  913. enum obs_monitoring_type {
  914. OBS_MONITORING_TYPE_NONE,
  915. OBS_MONITORING_TYPE_MONITOR_ONLY,
  916. OBS_MONITORING_TYPE_MONITOR_AND_OUTPUT,
  917. };
  918. EXPORT void obs_source_set_monitoring_type(obs_source_t *source,
  919. enum obs_monitoring_type type);
  920. EXPORT enum obs_monitoring_type
  921. obs_source_get_monitoring_type(const obs_source_t *source);
  922. /** Gets private front-end settings data. This data is saved/loaded
  923. * automatically. Returns an incremented reference. */
  924. EXPORT obs_data_t *obs_source_get_private_settings(obs_source_t *item);
  925. /* ------------------------------------------------------------------------- */
  926. /* Functions used by sources */
  927. EXPORT void *obs_source_get_type_data(obs_source_t *source);
  928. /**
  929. * Helper function to set the color matrix information when drawing the source.
  930. *
  931. * @param color_matrix The color matrix. Assigns to the 'color_matrix'
  932. * effect variable.
  933. * @param color_range_min The minimum color range. Assigns to the
  934. * 'color_range_min' effect variable. If NULL,
  935. * {0.0f, 0.0f, 0.0f} is used.
  936. * @param color_range_max The maximum color range. Assigns to the
  937. * 'color_range_max' effect variable. If NULL,
  938. * {1.0f, 1.0f, 1.0f} is used.
  939. */
  940. EXPORT void
  941. obs_source_draw_set_color_matrix(const struct matrix4 *color_matrix,
  942. const struct vec3 *color_range_min,
  943. const struct vec3 *color_range_max);
  944. /**
  945. * Helper function to draw sprites for a source (synchronous video).
  946. *
  947. * @param image The sprite texture to draw. Assigns to the 'image' variable
  948. * of the current effect.
  949. * @param x X position of the sprite.
  950. * @param y Y position of the sprite.
  951. * @param cx Width of the sprite. If 0, uses the texture width.
  952. * @param cy Height of the sprite. If 0, uses the texture height.
  953. * @param flip Specifies whether to flip the image vertically.
  954. */
  955. EXPORT void obs_source_draw(gs_texture_t *image, int x, int y, uint32_t cx,
  956. uint32_t cy, bool flip);
  957. /**
  958. * Outputs asynchronous video data. Set to NULL to deactivate the texture
  959. *
  960. * NOTE: Non-YUV formats will always be treated as full range with this
  961. * function! Use obs_source_output_video2 instead if partial range support is
  962. * desired for non-YUV video formats.
  963. */
  964. EXPORT void obs_source_output_video(obs_source_t *source,
  965. const struct obs_source_frame *frame);
  966. EXPORT void obs_source_output_video2(obs_source_t *source,
  967. const struct obs_source_frame2 *frame);
  968. EXPORT void obs_source_set_async_rotation(obs_source_t *source, long rotation);
  969. /**
  970. * Preloads asynchronous video data to allow instantaneous playback
  971. *
  972. * NOTE: Non-YUV formats will always be treated as full range with this
  973. * function! Use obs_source_preload_video2 instead if partial range support is
  974. * desired for non-YUV video formats.
  975. */
  976. EXPORT void obs_source_preload_video(obs_source_t *source,
  977. const struct obs_source_frame *frame);
  978. EXPORT void obs_source_preload_video2(obs_source_t *source,
  979. const struct obs_source_frame2 *frame);
  980. /** Shows any preloaded video data */
  981. EXPORT void obs_source_show_preloaded_video(obs_source_t *source);
  982. /**
  983. * Sets current async video frame immediately
  984. *
  985. * NOTE: Non-YUV formats will always be treated as full range with this
  986. * function! Use obs_source_preload_video2 instead if partial range support is
  987. * desired for non-YUV video formats.
  988. */
  989. EXPORT void obs_source_set_video_frame(obs_source_t *source,
  990. const struct obs_source_frame *frame);
  991. EXPORT void obs_source_set_video_frame2(obs_source_t *source,
  992. const struct obs_source_frame2 *frame);
  993. /** Outputs audio data (always asynchronous) */
  994. EXPORT void obs_source_output_audio(obs_source_t *source,
  995. const struct obs_source_audio *audio);
  996. /** Signal an update to any currently used properties via 'update_properties' */
  997. EXPORT void obs_source_update_properties(obs_source_t *source);
  998. /** Gets the current async video frame */
  999. EXPORT struct obs_source_frame *obs_source_get_frame(obs_source_t *source);
  1000. /** Releases the current async video frame */
  1001. EXPORT void obs_source_release_frame(obs_source_t *source,
  1002. struct obs_source_frame *frame);
  1003. /**
  1004. * Default RGB filter handler for generic effect filters. Processes the
  1005. * filter chain and renders them to texture if needed, then the filter is
  1006. * drawn with
  1007. *
  1008. * After calling this, set your parameters for the effect, then call
  1009. * obs_source_process_filter_end to draw the filter.
  1010. *
  1011. * Returns true if filtering should continue, false if the filter is bypassed
  1012. * for whatever reason.
  1013. */
  1014. EXPORT bool
  1015. obs_source_process_filter_begin(obs_source_t *filter,
  1016. enum gs_color_format format,
  1017. enum obs_allow_direct_render allow_direct);
  1018. /**
  1019. * Draws the filter.
  1020. *
  1021. * Before calling this function, first call obs_source_process_filter_begin and
  1022. * then set the effect parameters, and then call this function to finalize the
  1023. * filter.
  1024. */
  1025. EXPORT void obs_source_process_filter_end(obs_source_t *filter,
  1026. gs_effect_t *effect, uint32_t width,
  1027. uint32_t height);
  1028. /**
  1029. * Draws the filter with a specific technique.
  1030. *
  1031. * Before calling this function, first call obs_source_process_filter_begin and
  1032. * then set the effect parameters, and then call this function to finalize the
  1033. * filter.
  1034. */
  1035. EXPORT void obs_source_process_filter_tech_end(obs_source_t *filter,
  1036. gs_effect_t *effect,
  1037. uint32_t width, uint32_t height,
  1038. const char *tech_name);
  1039. /** Skips the filter if the filter is invalid and cannot be rendered */
  1040. EXPORT void obs_source_skip_video_filter(obs_source_t *filter);
  1041. /**
  1042. * Adds an active child source. Must be called by parent sources on child
  1043. * sources when the child is added and active. This ensures that the source is
  1044. * properly activated if the parent is active.
  1045. *
  1046. * @returns true if source can be added, false if it causes recursion
  1047. */
  1048. EXPORT bool obs_source_add_active_child(obs_source_t *parent,
  1049. obs_source_t *child);
  1050. /**
  1051. * Removes an active child source. Must be called by parent sources on child
  1052. * sources when the child is removed or inactive. This ensures that the source
  1053. * is properly deactivated if the parent is no longer active.
  1054. */
  1055. EXPORT void obs_source_remove_active_child(obs_source_t *parent,
  1056. obs_source_t *child);
  1057. /** Sends a mouse down/up event to a source */
  1058. EXPORT void obs_source_send_mouse_click(obs_source_t *source,
  1059. const struct obs_mouse_event *event,
  1060. int32_t type, bool mouse_up,
  1061. uint32_t click_count);
  1062. /** Sends a mouse move event to a source. */
  1063. EXPORT void obs_source_send_mouse_move(obs_source_t *source,
  1064. const struct obs_mouse_event *event,
  1065. bool mouse_leave);
  1066. /** Sends a mouse wheel event to a source */
  1067. EXPORT void obs_source_send_mouse_wheel(obs_source_t *source,
  1068. const struct obs_mouse_event *event,
  1069. int x_delta, int y_delta);
  1070. /** Sends a got-focus or lost-focus event to a source */
  1071. EXPORT void obs_source_send_focus(obs_source_t *source, bool focus);
  1072. /** Sends a key up/down event to a source */
  1073. EXPORT void obs_source_send_key_click(obs_source_t *source,
  1074. const struct obs_key_event *event,
  1075. bool key_up);
  1076. /** Sets the default source flags. */
  1077. EXPORT void obs_source_set_default_flags(obs_source_t *source, uint32_t flags);
  1078. /** Gets the base width for a source (not taking in to account filtering) */
  1079. EXPORT uint32_t obs_source_get_base_width(obs_source_t *source);
  1080. /** Gets the base height for a source (not taking in to account filtering) */
  1081. EXPORT uint32_t obs_source_get_base_height(obs_source_t *source);
  1082. EXPORT bool obs_source_audio_pending(const obs_source_t *source);
  1083. EXPORT uint64_t obs_source_get_audio_timestamp(const obs_source_t *source);
  1084. EXPORT void obs_source_get_audio_mix(const obs_source_t *source,
  1085. struct obs_source_audio_mix *audio);
  1086. EXPORT void obs_source_set_async_unbuffered(obs_source_t *source,
  1087. bool unbuffered);
  1088. EXPORT bool obs_source_async_unbuffered(const obs_source_t *source);
  1089. /** Used to decouple audio from video so that audio doesn't attempt to sync up
  1090. * with video. I.E. Audio acts independently. Only works when in unbuffered
  1091. * mode. */
  1092. EXPORT void obs_source_set_async_decoupled(obs_source_t *source, bool decouple);
  1093. EXPORT bool obs_source_async_decoupled(const obs_source_t *source);
  1094. EXPORT void obs_source_set_audio_active(obs_source_t *source, bool show);
  1095. EXPORT bool obs_source_audio_active(const obs_source_t *source);
  1096. EXPORT uint32_t obs_source_get_last_obs_version(const obs_source_t *source);
  1097. /** Media controls */
  1098. EXPORT void obs_source_media_play_pause(obs_source_t *source, bool pause);
  1099. EXPORT void obs_source_media_restart(obs_source_t *source);
  1100. EXPORT void obs_source_media_stop(obs_source_t *source);
  1101. EXPORT void obs_source_media_next(obs_source_t *source);
  1102. EXPORT void obs_source_media_previous(obs_source_t *source);
  1103. EXPORT int64_t obs_source_media_get_duration(obs_source_t *source);
  1104. EXPORT int64_t obs_source_media_get_time(obs_source_t *source);
  1105. EXPORT void obs_source_media_set_time(obs_source_t *source, int64_t ms);
  1106. EXPORT enum obs_media_state obs_source_media_get_state(obs_source_t *source);
  1107. EXPORT void obs_source_media_started(obs_source_t *source);
  1108. EXPORT void obs_source_media_ended(obs_source_t *source);
  1109. /* ------------------------------------------------------------------------- */
  1110. /* Transition-specific functions */
  1111. enum obs_transition_target {
  1112. OBS_TRANSITION_SOURCE_A,
  1113. OBS_TRANSITION_SOURCE_B,
  1114. };
  1115. EXPORT obs_source_t *
  1116. obs_transition_get_source(obs_source_t *transition,
  1117. enum obs_transition_target target);
  1118. EXPORT void obs_transition_clear(obs_source_t *transition);
  1119. EXPORT obs_source_t *obs_transition_get_active_source(obs_source_t *transition);
  1120. enum obs_transition_mode {
  1121. OBS_TRANSITION_MODE_AUTO,
  1122. OBS_TRANSITION_MODE_MANUAL,
  1123. };
  1124. EXPORT bool obs_transition_start(obs_source_t *transition,
  1125. enum obs_transition_mode mode,
  1126. uint32_t duration_ms, obs_source_t *dest);
  1127. EXPORT void obs_transition_set(obs_source_t *transition, obs_source_t *source);
  1128. EXPORT void obs_transition_set_manual_time(obs_source_t *transition, float t);
  1129. EXPORT void obs_transition_set_manual_torque(obs_source_t *transition,
  1130. float torque, float clamp);
  1131. enum obs_transition_scale_type {
  1132. OBS_TRANSITION_SCALE_MAX_ONLY,
  1133. OBS_TRANSITION_SCALE_ASPECT,
  1134. OBS_TRANSITION_SCALE_STRETCH,
  1135. };
  1136. EXPORT void obs_transition_set_scale_type(obs_source_t *transition,
  1137. enum obs_transition_scale_type type);
  1138. EXPORT enum obs_transition_scale_type
  1139. obs_transition_get_scale_type(const obs_source_t *transition);
  1140. EXPORT void obs_transition_set_alignment(obs_source_t *transition,
  1141. uint32_t alignment);
  1142. EXPORT uint32_t obs_transition_get_alignment(const obs_source_t *transition);
  1143. EXPORT void obs_transition_set_size(obs_source_t *transition, uint32_t cx,
  1144. uint32_t cy);
  1145. EXPORT void obs_transition_get_size(const obs_source_t *transition,
  1146. uint32_t *cx, uint32_t *cy);
  1147. /* function used by transitions */
  1148. /**
  1149. * Enables fixed transitions (videos or specific types of transitions that
  1150. * are of fixed duration and linearly interpolated
  1151. */
  1152. EXPORT void obs_transition_enable_fixed(obs_source_t *transition, bool enable,
  1153. uint32_t duration_ms);
  1154. EXPORT bool obs_transition_fixed(obs_source_t *transition);
  1155. typedef void (*obs_transition_video_render_callback_t)(void *data,
  1156. gs_texture_t *a,
  1157. gs_texture_t *b, float t,
  1158. uint32_t cx,
  1159. uint32_t cy);
  1160. typedef float (*obs_transition_audio_mix_callback_t)(void *data, float t);
  1161. EXPORT float obs_transition_get_time(obs_source_t *transition);
  1162. EXPORT void obs_transition_force_stop(obs_source_t *transition);
  1163. EXPORT void
  1164. obs_transition_video_render(obs_source_t *transition,
  1165. obs_transition_video_render_callback_t callback);
  1166. /** Directly renders its sub-source instead of to texture. Returns false if no
  1167. * longer transitioning */
  1168. EXPORT bool
  1169. obs_transition_video_render_direct(obs_source_t *transition,
  1170. enum obs_transition_target target);
  1171. EXPORT bool
  1172. obs_transition_audio_render(obs_source_t *transition, uint64_t *ts_out,
  1173. struct obs_source_audio_mix *audio, uint32_t mixers,
  1174. size_t channels, size_t sample_rate,
  1175. obs_transition_audio_mix_callback_t mix_a_callback,
  1176. obs_transition_audio_mix_callback_t mix_b_callback);
  1177. /* swaps transition sources and textures as an optimization and to reduce
  1178. * memory usage when switching between transitions */
  1179. EXPORT void obs_transition_swap_begin(obs_source_t *tr_dest,
  1180. obs_source_t *tr_source);
  1181. EXPORT void obs_transition_swap_end(obs_source_t *tr_dest,
  1182. obs_source_t *tr_source);
  1183. /* ------------------------------------------------------------------------- */
  1184. /* Scenes */
  1185. /**
  1186. * Creates a scene.
  1187. *
  1188. * A scene is a source which is a container of other sources with specific
  1189. * display orientations. Scenes can also be used like any other source.
  1190. */
  1191. EXPORT obs_scene_t *obs_scene_create(const char *name);
  1192. EXPORT obs_scene_t *obs_scene_create_private(const char *name);
  1193. enum obs_scene_duplicate_type {
  1194. OBS_SCENE_DUP_REFS, /**< Source refs only */
  1195. OBS_SCENE_DUP_COPY, /**< Fully duplicate */
  1196. OBS_SCENE_DUP_PRIVATE_REFS, /**< Source refs only (as private) */
  1197. OBS_SCENE_DUP_PRIVATE_COPY, /**< Fully duplicate (as private) */
  1198. };
  1199. /**
  1200. * Duplicates a scene.
  1201. */
  1202. EXPORT obs_scene_t *obs_scene_duplicate(obs_scene_t *scene, const char *name,
  1203. enum obs_scene_duplicate_type type);
  1204. EXPORT void obs_scene_addref(obs_scene_t *scene);
  1205. EXPORT void obs_scene_release(obs_scene_t *scene);
  1206. /** Gets the scene's source context */
  1207. EXPORT obs_source_t *obs_scene_get_source(const obs_scene_t *scene);
  1208. /** Gets the scene from its source, or NULL if not a scene */
  1209. EXPORT obs_scene_t *obs_scene_from_source(const obs_source_t *source);
  1210. /** Determines whether a source is within a scene */
  1211. EXPORT obs_sceneitem_t *obs_scene_find_source(obs_scene_t *scene,
  1212. const char *name);
  1213. EXPORT obs_sceneitem_t *obs_scene_find_source_recursive(obs_scene_t *scene,
  1214. const char *name);
  1215. EXPORT obs_sceneitem_t *obs_scene_find_sceneitem_by_id(obs_scene_t *scene,
  1216. int64_t id);
  1217. /** Enumerates sources within a scene */
  1218. EXPORT void obs_scene_enum_items(obs_scene_t *scene,
  1219. bool (*callback)(obs_scene_t *,
  1220. obs_sceneitem_t *, void *),
  1221. void *param);
  1222. EXPORT bool obs_scene_reorder_items(obs_scene_t *scene,
  1223. obs_sceneitem_t *const *item_order,
  1224. size_t item_order_size);
  1225. struct obs_sceneitem_order_info {
  1226. obs_sceneitem_t *group;
  1227. obs_sceneitem_t *item;
  1228. };
  1229. EXPORT bool
  1230. obs_scene_reorder_items2(obs_scene_t *scene,
  1231. struct obs_sceneitem_order_info *item_order,
  1232. size_t item_order_size);
  1233. /** Adds/creates a new scene item for a source */
  1234. EXPORT obs_sceneitem_t *obs_scene_add(obs_scene_t *scene, obs_source_t *source);
  1235. typedef void (*obs_scene_atomic_update_func)(void *, obs_scene_t *scene);
  1236. EXPORT void obs_scene_atomic_update(obs_scene_t *scene,
  1237. obs_scene_atomic_update_func func,
  1238. void *data);
  1239. EXPORT void obs_sceneitem_addref(obs_sceneitem_t *item);
  1240. EXPORT void obs_sceneitem_release(obs_sceneitem_t *item);
  1241. /** Removes a scene item. */
  1242. EXPORT void obs_sceneitem_remove(obs_sceneitem_t *item);
  1243. /** Gets the scene parent associated with the scene item. */
  1244. EXPORT obs_scene_t *obs_sceneitem_get_scene(const obs_sceneitem_t *item);
  1245. /** Gets the source of a scene item. */
  1246. EXPORT obs_source_t *obs_sceneitem_get_source(const obs_sceneitem_t *item);
  1247. /* FIXME: The following functions should be deprecated and replaced with a way
  1248. * to specify saveable private user data. -Jim */
  1249. EXPORT void obs_sceneitem_select(obs_sceneitem_t *item, bool select);
  1250. EXPORT bool obs_sceneitem_selected(const obs_sceneitem_t *item);
  1251. EXPORT bool obs_sceneitem_locked(const obs_sceneitem_t *item);
  1252. EXPORT bool obs_sceneitem_set_locked(obs_sceneitem_t *item, bool lock);
  1253. /* Functions for getting/setting specific orientation of a scene item */
  1254. EXPORT void obs_sceneitem_set_pos(obs_sceneitem_t *item,
  1255. const struct vec2 *pos);
  1256. EXPORT void obs_sceneitem_set_rot(obs_sceneitem_t *item, float rot_deg);
  1257. EXPORT void obs_sceneitem_set_scale(obs_sceneitem_t *item,
  1258. const struct vec2 *scale);
  1259. EXPORT void obs_sceneitem_set_alignment(obs_sceneitem_t *item,
  1260. uint32_t alignment);
  1261. EXPORT void obs_sceneitem_set_order(obs_sceneitem_t *item,
  1262. enum obs_order_movement movement);
  1263. EXPORT void obs_sceneitem_set_order_position(obs_sceneitem_t *item,
  1264. int position);
  1265. EXPORT void obs_sceneitem_set_bounds_type(obs_sceneitem_t *item,
  1266. enum obs_bounds_type type);
  1267. EXPORT void obs_sceneitem_set_bounds_alignment(obs_sceneitem_t *item,
  1268. uint32_t alignment);
  1269. EXPORT void obs_sceneitem_set_bounds(obs_sceneitem_t *item,
  1270. const struct vec2 *bounds);
  1271. EXPORT int64_t obs_sceneitem_get_id(const obs_sceneitem_t *item);
  1272. EXPORT void obs_sceneitem_get_pos(const obs_sceneitem_t *item,
  1273. struct vec2 *pos);
  1274. EXPORT float obs_sceneitem_get_rot(const obs_sceneitem_t *item);
  1275. EXPORT void obs_sceneitem_get_scale(const obs_sceneitem_t *item,
  1276. struct vec2 *scale);
  1277. EXPORT uint32_t obs_sceneitem_get_alignment(const obs_sceneitem_t *item);
  1278. EXPORT enum obs_bounds_type
  1279. obs_sceneitem_get_bounds_type(const obs_sceneitem_t *item);
  1280. EXPORT uint32_t obs_sceneitem_get_bounds_alignment(const obs_sceneitem_t *item);
  1281. EXPORT void obs_sceneitem_get_bounds(const obs_sceneitem_t *item,
  1282. struct vec2 *bounds);
  1283. EXPORT void obs_sceneitem_get_info(const obs_sceneitem_t *item,
  1284. struct obs_transform_info *info);
  1285. EXPORT void obs_sceneitem_set_info(obs_sceneitem_t *item,
  1286. const struct obs_transform_info *info);
  1287. EXPORT void obs_sceneitem_get_draw_transform(const obs_sceneitem_t *item,
  1288. struct matrix4 *transform);
  1289. EXPORT void obs_sceneitem_get_box_transform(const obs_sceneitem_t *item,
  1290. struct matrix4 *transform);
  1291. EXPORT void obs_sceneitem_get_box_scale(const obs_sceneitem_t *item,
  1292. struct vec2 *scale);
  1293. EXPORT bool obs_sceneitem_visible(const obs_sceneitem_t *item);
  1294. EXPORT bool obs_sceneitem_set_visible(obs_sceneitem_t *item, bool visible);
  1295. struct obs_sceneitem_crop {
  1296. int left;
  1297. int top;
  1298. int right;
  1299. int bottom;
  1300. };
  1301. EXPORT void obs_sceneitem_set_crop(obs_sceneitem_t *item,
  1302. const struct obs_sceneitem_crop *crop);
  1303. EXPORT void obs_sceneitem_get_crop(const obs_sceneitem_t *item,
  1304. struct obs_sceneitem_crop *crop);
  1305. EXPORT void obs_sceneitem_set_scale_filter(obs_sceneitem_t *item,
  1306. enum obs_scale_type filter);
  1307. EXPORT enum obs_scale_type
  1308. obs_sceneitem_get_scale_filter(obs_sceneitem_t *item);
  1309. EXPORT void obs_sceneitem_force_update_transform(obs_sceneitem_t *item);
  1310. EXPORT void obs_sceneitem_defer_update_begin(obs_sceneitem_t *item);
  1311. EXPORT void obs_sceneitem_defer_update_end(obs_sceneitem_t *item);
  1312. /** Gets private front-end settings data. This data is saved/loaded
  1313. * automatically. Returns an incremented reference. */
  1314. EXPORT obs_data_t *obs_sceneitem_get_private_settings(obs_sceneitem_t *item);
  1315. EXPORT obs_sceneitem_t *obs_scene_add_group(obs_scene_t *scene,
  1316. const char *name);
  1317. EXPORT obs_sceneitem_t *obs_scene_insert_group(obs_scene_t *scene,
  1318. const char *name,
  1319. obs_sceneitem_t **items,
  1320. size_t count);
  1321. EXPORT obs_sceneitem_t *obs_scene_add_group2(obs_scene_t *scene,
  1322. const char *name, bool signal);
  1323. EXPORT obs_sceneitem_t *obs_scene_insert_group2(obs_scene_t *scene,
  1324. const char *name,
  1325. obs_sceneitem_t **items,
  1326. size_t count, bool signal);
  1327. EXPORT obs_sceneitem_t *obs_scene_get_group(obs_scene_t *scene,
  1328. const char *name);
  1329. EXPORT bool obs_sceneitem_is_group(obs_sceneitem_t *item);
  1330. EXPORT obs_scene_t *obs_sceneitem_group_get_scene(const obs_sceneitem_t *group);
  1331. EXPORT void obs_sceneitem_group_ungroup(obs_sceneitem_t *group);
  1332. EXPORT void obs_sceneitem_group_ungroup2(obs_sceneitem_t *group, bool signal);
  1333. EXPORT void obs_sceneitem_group_add_item(obs_sceneitem_t *group,
  1334. obs_sceneitem_t *item);
  1335. EXPORT void obs_sceneitem_group_remove_item(obs_sceneitem_t *group,
  1336. obs_sceneitem_t *item);
  1337. EXPORT obs_sceneitem_t *obs_sceneitem_get_group(obs_scene_t *scene,
  1338. obs_sceneitem_t *item);
  1339. EXPORT bool obs_source_is_group(const obs_source_t *source);
  1340. EXPORT bool obs_scene_is_group(const obs_scene_t *scene);
  1341. EXPORT void obs_sceneitem_group_enum_items(obs_sceneitem_t *group,
  1342. bool (*callback)(obs_scene_t *,
  1343. obs_sceneitem_t *,
  1344. void *),
  1345. void *param);
  1346. /** Gets the group from its source, or NULL if not a group */
  1347. EXPORT obs_scene_t *obs_group_from_source(const obs_source_t *source);
  1348. EXPORT void obs_sceneitem_defer_group_resize_begin(obs_sceneitem_t *item);
  1349. EXPORT void obs_sceneitem_defer_group_resize_end(obs_sceneitem_t *item);
  1350. /* ------------------------------------------------------------------------- */
  1351. /* Outputs */
  1352. EXPORT const char *obs_output_get_display_name(const char *id);
  1353. /**
  1354. * Creates an output.
  1355. *
  1356. * Outputs allow outputting to file, outputting to network, outputting to
  1357. * directshow, or other custom outputs.
  1358. */
  1359. EXPORT obs_output_t *obs_output_create(const char *id, const char *name,
  1360. obs_data_t *settings,
  1361. obs_data_t *hotkey_data);
  1362. /**
  1363. * Adds/releases a reference to an output. When the last reference is
  1364. * released, the output is destroyed.
  1365. */
  1366. EXPORT void obs_output_addref(obs_output_t *output);
  1367. EXPORT void obs_output_release(obs_output_t *output);
  1368. EXPORT void obs_weak_output_addref(obs_weak_output_t *weak);
  1369. EXPORT void obs_weak_output_release(obs_weak_output_t *weak);
  1370. EXPORT obs_output_t *obs_output_get_ref(obs_output_t *output);
  1371. EXPORT obs_weak_output_t *obs_output_get_weak_output(obs_output_t *output);
  1372. EXPORT obs_output_t *obs_weak_output_get_output(obs_weak_output_t *weak);
  1373. EXPORT bool obs_weak_output_references_output(obs_weak_output_t *weak,
  1374. obs_output_t *output);
  1375. EXPORT const char *obs_output_get_name(const obs_output_t *output);
  1376. /** Starts the output. */
  1377. EXPORT bool obs_output_start(obs_output_t *output);
  1378. /** Stops the output. */
  1379. EXPORT void obs_output_stop(obs_output_t *output);
  1380. /**
  1381. * On reconnection, start where it left of on reconnection. Note however that
  1382. * this option will consume extra memory to continually increase delay while
  1383. * waiting to reconnect.
  1384. */
  1385. #define OBS_OUTPUT_DELAY_PRESERVE (1 << 0)
  1386. /**
  1387. * Sets the current output delay, in seconds (if the output supports delay).
  1388. *
  1389. * If delay is currently active, it will set the delay value, but will not
  1390. * affect the current delay, it will only affect the next time the output is
  1391. * activated.
  1392. */
  1393. EXPORT void obs_output_set_delay(obs_output_t *output, uint32_t delay_sec,
  1394. uint32_t flags);
  1395. /** Gets the currently set delay value, in seconds. */
  1396. EXPORT uint32_t obs_output_get_delay(const obs_output_t *output);
  1397. /** If delay is active, gets the currently active delay value, in seconds. */
  1398. EXPORT uint32_t obs_output_get_active_delay(const obs_output_t *output);
  1399. /** Forces the output to stop. Usually only used with delay. */
  1400. EXPORT void obs_output_force_stop(obs_output_t *output);
  1401. /** Returns whether the output is active */
  1402. EXPORT bool obs_output_active(const obs_output_t *output);
  1403. /** Returns output capability flags */
  1404. EXPORT uint32_t obs_output_get_flags(const obs_output_t *output);
  1405. /** Returns output capability flags */
  1406. EXPORT uint32_t obs_get_output_flags(const char *id);
  1407. /** Gets the default settings for an output type */
  1408. EXPORT obs_data_t *obs_output_defaults(const char *id);
  1409. /** Returns the property list, if any. Free with obs_properties_destroy */
  1410. EXPORT obs_properties_t *obs_get_output_properties(const char *id);
  1411. /**
  1412. * Returns the property list of an existing output, if any. Free with
  1413. * obs_properties_destroy
  1414. */
  1415. EXPORT obs_properties_t *obs_output_properties(const obs_output_t *output);
  1416. /** Updates the settings for this output context */
  1417. EXPORT void obs_output_update(obs_output_t *output, obs_data_t *settings);
  1418. /** Specifies whether the output can be paused */
  1419. EXPORT bool obs_output_can_pause(const obs_output_t *output);
  1420. /** Pauses the output (if the functionality is allowed by the output */
  1421. EXPORT bool obs_output_pause(obs_output_t *output, bool pause);
  1422. /** Returns whether output is paused */
  1423. EXPORT bool obs_output_paused(const obs_output_t *output);
  1424. /* Gets the current output settings string */
  1425. EXPORT obs_data_t *obs_output_get_settings(const obs_output_t *output);
  1426. /** Returns the signal handler for an output */
  1427. EXPORT signal_handler_t *
  1428. obs_output_get_signal_handler(const obs_output_t *output);
  1429. /** Returns the procedure handler for an output */
  1430. EXPORT proc_handler_t *obs_output_get_proc_handler(const obs_output_t *output);
  1431. /**
  1432. * Sets the current audio/video media contexts associated with this output,
  1433. * required for non-encoded outputs. Can be null.
  1434. */
  1435. EXPORT void obs_output_set_media(obs_output_t *output, video_t *video,
  1436. audio_t *audio);
  1437. /** Returns the video media context associated with this output */
  1438. EXPORT video_t *obs_output_video(const obs_output_t *output);
  1439. /** Returns the audio media context associated with this output */
  1440. EXPORT audio_t *obs_output_audio(const obs_output_t *output);
  1441. /** Sets the current audio mixer for non-encoded outputs */
  1442. EXPORT void obs_output_set_mixer(obs_output_t *output, size_t mixer_idx);
  1443. /** Gets the current audio mixer for non-encoded outputs */
  1444. EXPORT size_t obs_output_get_mixer(const obs_output_t *output);
  1445. /** Sets the current audio mixes (mask) for a non-encoded multi-track output */
  1446. EXPORT void obs_output_set_mixers(obs_output_t *output, size_t mixers);
  1447. /** Gets the current audio mixes (mask) for a non-encoded multi-track output */
  1448. EXPORT size_t obs_output_get_mixers(const obs_output_t *output);
  1449. /**
  1450. * Sets the current video encoder associated with this output,
  1451. * required for encoded outputs
  1452. */
  1453. EXPORT void obs_output_set_video_encoder(obs_output_t *output,
  1454. obs_encoder_t *encoder);
  1455. /**
  1456. * Sets the current audio encoder associated with this output,
  1457. * required for encoded outputs.
  1458. *
  1459. * The idx parameter specifies the audio encoder index to set the encoder to.
  1460. * Only used with outputs that have multiple audio outputs (RTMP typically),
  1461. * otherwise the parameter is ignored.
  1462. */
  1463. EXPORT void obs_output_set_audio_encoder(obs_output_t *output,
  1464. obs_encoder_t *encoder, size_t idx);
  1465. /** Returns the current video encoder associated with this output */
  1466. EXPORT obs_encoder_t *obs_output_get_video_encoder(const obs_output_t *output);
  1467. /**
  1468. * Returns the current audio encoder associated with this output
  1469. *
  1470. * The idx parameter specifies the audio encoder index. Only used with
  1471. * outputs that have multiple audio outputs, otherwise the parameter is
  1472. * ignored.
  1473. */
  1474. EXPORT obs_encoder_t *obs_output_get_audio_encoder(const obs_output_t *output,
  1475. size_t idx);
  1476. /** Sets the current service associated with this output. */
  1477. EXPORT void obs_output_set_service(obs_output_t *output,
  1478. obs_service_t *service);
  1479. /** Gets the current service associated with this output. */
  1480. EXPORT obs_service_t *obs_output_get_service(const obs_output_t *output);
  1481. /**
  1482. * Sets the reconnect settings. Set retry_count to 0 to disable reconnecting.
  1483. */
  1484. EXPORT void obs_output_set_reconnect_settings(obs_output_t *output,
  1485. int retry_count, int retry_sec);
  1486. EXPORT uint64_t obs_output_get_total_bytes(const obs_output_t *output);
  1487. EXPORT int obs_output_get_frames_dropped(const obs_output_t *output);
  1488. EXPORT int obs_output_get_total_frames(const obs_output_t *output);
  1489. /**
  1490. * Sets the preferred scaled resolution for this output. Set width and height
  1491. * to 0 to disable scaling.
  1492. *
  1493. * If this output uses an encoder, it will call obs_encoder_set_scaled_size on
  1494. * the encoder before the stream is started. If the encoder is already active,
  1495. * then this function will trigger a warning and do nothing.
  1496. */
  1497. EXPORT void obs_output_set_preferred_size(obs_output_t *output, uint32_t width,
  1498. uint32_t height);
  1499. /** For video outputs, returns the width of the encoded image */
  1500. EXPORT uint32_t obs_output_get_width(const obs_output_t *output);
  1501. /** For video outputs, returns the height of the encoded image */
  1502. EXPORT uint32_t obs_output_get_height(const obs_output_t *output);
  1503. EXPORT const char *obs_output_get_id(const obs_output_t *output);
  1504. #if BUILD_CAPTIONS
  1505. EXPORT void obs_output_output_caption_text1(obs_output_t *output,
  1506. const char *text);
  1507. EXPORT void obs_output_output_caption_text2(obs_output_t *output,
  1508. const char *text,
  1509. double display_duration);
  1510. #endif
  1511. EXPORT float obs_output_get_congestion(obs_output_t *output);
  1512. EXPORT int obs_output_get_connect_time_ms(obs_output_t *output);
  1513. EXPORT bool obs_output_reconnecting(const obs_output_t *output);
  1514. /** Pass a string of the last output error, for UI use */
  1515. EXPORT void obs_output_set_last_error(obs_output_t *output,
  1516. const char *message);
  1517. EXPORT const char *obs_output_get_last_error(obs_output_t *output);
  1518. EXPORT const char *
  1519. obs_output_get_supported_video_codecs(const obs_output_t *output);
  1520. EXPORT const char *
  1521. obs_output_get_supported_audio_codecs(const obs_output_t *output);
  1522. /* ------------------------------------------------------------------------- */
  1523. /* Functions used by outputs */
  1524. EXPORT void *obs_output_get_type_data(obs_output_t *output);
  1525. /** Optionally sets the video conversion info. Used only for raw output */
  1526. EXPORT void
  1527. obs_output_set_video_conversion(obs_output_t *output,
  1528. const struct video_scale_info *conversion);
  1529. /** Optionally sets the audio conversion info. Used only for raw output */
  1530. EXPORT void
  1531. obs_output_set_audio_conversion(obs_output_t *output,
  1532. const struct audio_convert_info *conversion);
  1533. /** Returns whether data capture can begin with the specified flags */
  1534. EXPORT bool obs_output_can_begin_data_capture(const obs_output_t *output,
  1535. uint32_t flags);
  1536. /** Initializes encoders (if any) */
  1537. EXPORT bool obs_output_initialize_encoders(obs_output_t *output,
  1538. uint32_t flags);
  1539. /**
  1540. * Begins data capture from media/encoders.
  1541. *
  1542. * @param output Output context
  1543. * @param flags Set this to 0 to use default output flags set in the
  1544. * obs_output_info structure, otherwise set to a either
  1545. * OBS_OUTPUT_VIDEO or OBS_OUTPUT_AUDIO to specify whether to
  1546. * connect audio or video. This is useful for things like
  1547. * ffmpeg which may or may not always want to use both audio
  1548. * and video.
  1549. * @return true if successful, false otherwise.
  1550. */
  1551. EXPORT bool obs_output_begin_data_capture(obs_output_t *output, uint32_t flags);
  1552. /** Ends data capture from media/encoders */
  1553. EXPORT void obs_output_end_data_capture(obs_output_t *output);
  1554. /**
  1555. * Signals that the output has stopped itself.
  1556. *
  1557. * @param output Output context
  1558. * @param code Error code (or OBS_OUTPUT_SUCCESS if not an error)
  1559. */
  1560. EXPORT void obs_output_signal_stop(obs_output_t *output, int code);
  1561. EXPORT uint64_t obs_output_get_pause_offset(obs_output_t *output);
  1562. /* ------------------------------------------------------------------------- */
  1563. /* Encoders */
  1564. EXPORT const char *obs_encoder_get_display_name(const char *id);
  1565. /**
  1566. * Creates a video encoder context
  1567. *
  1568. * @param id Video encoder ID
  1569. * @param name Name to assign to this context
  1570. * @param settings Settings
  1571. * @return The video encoder context, or NULL if failed or not found.
  1572. */
  1573. EXPORT obs_encoder_t *obs_video_encoder_create(const char *id, const char *name,
  1574. obs_data_t *settings,
  1575. obs_data_t *hotkey_data);
  1576. /**
  1577. * Creates an audio encoder context
  1578. *
  1579. * @param id Audio Encoder ID
  1580. * @param name Name to assign to this context
  1581. * @param settings Settings
  1582. * @param mixer_idx Index of the mixer to use for this audio encoder
  1583. * @return The video encoder context, or NULL if failed or not found.
  1584. */
  1585. EXPORT obs_encoder_t *obs_audio_encoder_create(const char *id, const char *name,
  1586. obs_data_t *settings,
  1587. size_t mixer_idx,
  1588. obs_data_t *hotkey_data);
  1589. /**
  1590. * Adds/releases a reference to an encoder. When the last reference is
  1591. * released, the encoder is destroyed.
  1592. */
  1593. EXPORT void obs_encoder_addref(obs_encoder_t *encoder);
  1594. EXPORT void obs_encoder_release(obs_encoder_t *encoder);
  1595. EXPORT void obs_weak_encoder_addref(obs_weak_encoder_t *weak);
  1596. EXPORT void obs_weak_encoder_release(obs_weak_encoder_t *weak);
  1597. EXPORT obs_encoder_t *obs_encoder_get_ref(obs_encoder_t *encoder);
  1598. EXPORT obs_weak_encoder_t *obs_encoder_get_weak_encoder(obs_encoder_t *encoder);
  1599. EXPORT obs_encoder_t *obs_weak_encoder_get_encoder(obs_weak_encoder_t *weak);
  1600. EXPORT bool obs_weak_encoder_references_encoder(obs_weak_encoder_t *weak,
  1601. obs_encoder_t *encoder);
  1602. EXPORT void obs_encoder_set_name(obs_encoder_t *encoder, const char *name);
  1603. EXPORT const char *obs_encoder_get_name(const obs_encoder_t *encoder);
  1604. /** Returns the codec of an encoder by the id */
  1605. EXPORT const char *obs_get_encoder_codec(const char *id);
  1606. /** Returns the type of an encoder by the id */
  1607. EXPORT enum obs_encoder_type obs_get_encoder_type(const char *id);
  1608. /** Returns the codec of the encoder */
  1609. EXPORT const char *obs_encoder_get_codec(const obs_encoder_t *encoder);
  1610. /** Returns the type of an encoder */
  1611. EXPORT enum obs_encoder_type obs_encoder_get_type(const obs_encoder_t *encoder);
  1612. /**
  1613. * Sets the scaled resolution for a video encoder. Set width and height to 0
  1614. * to disable scaling. If the encoder is active, this function will trigger
  1615. * a warning, and do nothing.
  1616. */
  1617. EXPORT void obs_encoder_set_scaled_size(obs_encoder_t *encoder, uint32_t width,
  1618. uint32_t height);
  1619. /** For video encoders, returns true if pre-encode scaling is enabled */
  1620. EXPORT bool obs_encoder_scaling_enabled(const obs_encoder_t *encoder);
  1621. /** For video encoders, returns the width of the encoded image */
  1622. EXPORT uint32_t obs_encoder_get_width(const obs_encoder_t *encoder);
  1623. /** For video encoders, returns the height of the encoded image */
  1624. EXPORT uint32_t obs_encoder_get_height(const obs_encoder_t *encoder);
  1625. /** For audio encoders, returns the sample rate of the audio */
  1626. EXPORT uint32_t obs_encoder_get_sample_rate(const obs_encoder_t *encoder);
  1627. /**
  1628. * Sets the preferred video format for a video encoder. If the encoder can use
  1629. * the format specified, it will force a conversion to that format if the
  1630. * obs output format does not match the preferred format.
  1631. *
  1632. * If the format is set to VIDEO_FORMAT_NONE, will revert to the default
  1633. * functionality of converting only when absolutely necessary.
  1634. */
  1635. EXPORT void obs_encoder_set_preferred_video_format(obs_encoder_t *encoder,
  1636. enum video_format format);
  1637. EXPORT enum video_format
  1638. obs_encoder_get_preferred_video_format(const obs_encoder_t *encoder);
  1639. /** Gets the default settings for an encoder type */
  1640. EXPORT obs_data_t *obs_encoder_defaults(const char *id);
  1641. EXPORT obs_data_t *obs_encoder_get_defaults(const obs_encoder_t *encoder);
  1642. /** Returns the property list, if any. Free with obs_properties_destroy */
  1643. EXPORT obs_properties_t *obs_get_encoder_properties(const char *id);
  1644. /**
  1645. * Returns the property list of an existing encoder, if any. Free with
  1646. * obs_properties_destroy
  1647. */
  1648. EXPORT obs_properties_t *obs_encoder_properties(const obs_encoder_t *encoder);
  1649. /**
  1650. * Updates the settings of the encoder context. Usually used for changing
  1651. * bitrate while active
  1652. */
  1653. EXPORT void obs_encoder_update(obs_encoder_t *encoder, obs_data_t *settings);
  1654. /** Gets extra data (headers) associated with this context */
  1655. EXPORT bool obs_encoder_get_extra_data(const obs_encoder_t *encoder,
  1656. uint8_t **extra_data, size_t *size);
  1657. /** Returns the current settings for this encoder */
  1658. EXPORT obs_data_t *obs_encoder_get_settings(const obs_encoder_t *encoder);
  1659. /** Sets the video output context to be used with this encoder */
  1660. EXPORT void obs_encoder_set_video(obs_encoder_t *encoder, video_t *video);
  1661. /** Sets the audio output context to be used with this encoder */
  1662. EXPORT void obs_encoder_set_audio(obs_encoder_t *encoder, audio_t *audio);
  1663. /**
  1664. * Returns the video output context used with this encoder, or NULL if not
  1665. * a video context
  1666. */
  1667. EXPORT video_t *obs_encoder_video(const obs_encoder_t *encoder);
  1668. /**
  1669. * Returns the audio output context used with this encoder, or NULL if not
  1670. * a audio context
  1671. */
  1672. EXPORT audio_t *obs_encoder_audio(const obs_encoder_t *encoder);
  1673. /** Returns true if encoder is active, false otherwise */
  1674. EXPORT bool obs_encoder_active(const obs_encoder_t *encoder);
  1675. EXPORT void *obs_encoder_get_type_data(obs_encoder_t *encoder);
  1676. EXPORT const char *obs_encoder_get_id(const obs_encoder_t *encoder);
  1677. EXPORT uint32_t obs_get_encoder_caps(const char *encoder_id);
  1678. EXPORT uint32_t obs_encoder_get_caps(const obs_encoder_t *encoder);
  1679. #ifndef SWIG
  1680. /** Duplicates an encoder packet */
  1681. OBS_DEPRECATED
  1682. EXPORT void obs_duplicate_encoder_packet(struct encoder_packet *dst,
  1683. const struct encoder_packet *src);
  1684. OBS_DEPRECATED
  1685. EXPORT void obs_free_encoder_packet(struct encoder_packet *packet);
  1686. #endif
  1687. EXPORT void obs_encoder_packet_ref(struct encoder_packet *dst,
  1688. struct encoder_packet *src);
  1689. EXPORT void obs_encoder_packet_release(struct encoder_packet *packet);
  1690. EXPORT void *obs_encoder_create_rerouted(obs_encoder_t *encoder,
  1691. const char *reroute_id);
  1692. /** Returns whether encoder is paused */
  1693. EXPORT bool obs_encoder_paused(const obs_encoder_t *output);
  1694. EXPORT const char *obs_encoder_get_last_error(obs_encoder_t *encoder);
  1695. EXPORT void obs_encoder_set_last_error(obs_encoder_t *encoder,
  1696. const char *message);
  1697. /* ------------------------------------------------------------------------- */
  1698. /* Stream Services */
  1699. EXPORT const char *obs_service_get_display_name(const char *id);
  1700. EXPORT obs_service_t *obs_service_create(const char *id, const char *name,
  1701. obs_data_t *settings,
  1702. obs_data_t *hotkey_data);
  1703. EXPORT obs_service_t *obs_service_create_private(const char *id,
  1704. const char *name,
  1705. obs_data_t *settings);
  1706. /**
  1707. * Adds/releases a reference to a service. When the last reference is
  1708. * released, the service is destroyed.
  1709. */
  1710. EXPORT void obs_service_addref(obs_service_t *service);
  1711. EXPORT void obs_service_release(obs_service_t *service);
  1712. EXPORT void obs_weak_service_addref(obs_weak_service_t *weak);
  1713. EXPORT void obs_weak_service_release(obs_weak_service_t *weak);
  1714. EXPORT obs_service_t *obs_service_get_ref(obs_service_t *service);
  1715. EXPORT obs_weak_service_t *obs_service_get_weak_service(obs_service_t *service);
  1716. EXPORT obs_service_t *obs_weak_service_get_service(obs_weak_service_t *weak);
  1717. EXPORT bool obs_weak_service_references_service(obs_weak_service_t *weak,
  1718. obs_service_t *service);
  1719. EXPORT const char *obs_service_get_name(const obs_service_t *service);
  1720. /** Gets the default settings for a service */
  1721. EXPORT obs_data_t *obs_service_defaults(const char *id);
  1722. /** Returns the property list, if any. Free with obs_properties_destroy */
  1723. EXPORT obs_properties_t *obs_get_service_properties(const char *id);
  1724. /**
  1725. * Returns the property list of an existing service context, if any. Free with
  1726. * obs_properties_destroy
  1727. */
  1728. EXPORT obs_properties_t *obs_service_properties(const obs_service_t *service);
  1729. /** Gets the service type */
  1730. EXPORT const char *obs_service_get_type(const obs_service_t *service);
  1731. /** Updates the settings of the service context */
  1732. EXPORT void obs_service_update(obs_service_t *service, obs_data_t *settings);
  1733. /** Returns the current settings for this service */
  1734. EXPORT obs_data_t *obs_service_get_settings(const obs_service_t *service);
  1735. /** Returns the URL for this service context */
  1736. EXPORT const char *obs_service_get_url(const obs_service_t *service);
  1737. /** Returns the stream key (if any) for this service context */
  1738. EXPORT const char *obs_service_get_key(const obs_service_t *service);
  1739. /** Returns the username (if any) for this service context */
  1740. EXPORT const char *obs_service_get_username(const obs_service_t *service);
  1741. /** Returns the password (if any) for this service context */
  1742. EXPORT const char *obs_service_get_password(const obs_service_t *service);
  1743. /**
  1744. * Applies service-specific video encoder settings.
  1745. *
  1746. * @param video_encoder_settings Video encoder settings. Optional.
  1747. * @param audio_encoder_settings Audio encoder settings. Optional.
  1748. */
  1749. EXPORT void
  1750. obs_service_apply_encoder_settings(obs_service_t *service,
  1751. obs_data_t *video_encoder_settings,
  1752. obs_data_t *audio_encoder_settings);
  1753. EXPORT void *obs_service_get_type_data(obs_service_t *service);
  1754. EXPORT const char *obs_service_get_id(const obs_service_t *service);
  1755. /* NOTE: This function is temporary and should be removed/replaced at a later
  1756. * date. */
  1757. EXPORT const char *obs_service_get_output_type(const obs_service_t *service);
  1758. /* ------------------------------------------------------------------------- */
  1759. /* Source frame allocation functions */
  1760. EXPORT void obs_source_frame_init(struct obs_source_frame *frame,
  1761. enum video_format format, uint32_t width,
  1762. uint32_t height);
  1763. static inline void obs_source_frame_free(struct obs_source_frame *frame)
  1764. {
  1765. if (frame) {
  1766. bfree(frame->data[0]);
  1767. memset(frame, 0, sizeof(*frame));
  1768. }
  1769. }
  1770. static inline struct obs_source_frame *
  1771. obs_source_frame_create(enum video_format format, uint32_t width,
  1772. uint32_t height)
  1773. {
  1774. struct obs_source_frame *frame;
  1775. frame = (struct obs_source_frame *)bzalloc(sizeof(*frame));
  1776. obs_source_frame_init(frame, format, width, height);
  1777. return frame;
  1778. }
  1779. static inline void obs_source_frame_destroy(struct obs_source_frame *frame)
  1780. {
  1781. if (frame) {
  1782. bfree(frame->data[0]);
  1783. bfree(frame);
  1784. }
  1785. }
  1786. EXPORT void obs_source_frame_copy(struct obs_source_frame *dst,
  1787. const struct obs_source_frame *src);
  1788. /* ------------------------------------------------------------------------- */
  1789. /* Get source icon type */
  1790. EXPORT enum obs_icon_type obs_source_get_icon_type(const char *id);
  1791. #ifdef __cplusplus
  1792. }
  1793. #endif