obs-source.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. /******************************************************************************
  2. Copyright (C) 2023 by Lain 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 "obs.h"
  16. /**
  17. * @file
  18. * @brief header for modules implementing sources.
  19. *
  20. * Sources are modules that either feed data to libobs or modify it.
  21. */
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. enum obs_source_type {
  26. OBS_SOURCE_TYPE_INPUT,
  27. OBS_SOURCE_TYPE_FILTER,
  28. OBS_SOURCE_TYPE_TRANSITION,
  29. OBS_SOURCE_TYPE_SCENE,
  30. };
  31. enum obs_balance_type {
  32. OBS_BALANCE_TYPE_SINE_LAW,
  33. OBS_BALANCE_TYPE_SQUARE_LAW,
  34. OBS_BALANCE_TYPE_LINEAR,
  35. };
  36. enum obs_icon_type {
  37. OBS_ICON_TYPE_UNKNOWN,
  38. OBS_ICON_TYPE_IMAGE,
  39. OBS_ICON_TYPE_COLOR,
  40. OBS_ICON_TYPE_SLIDESHOW,
  41. OBS_ICON_TYPE_AUDIO_INPUT,
  42. OBS_ICON_TYPE_AUDIO_OUTPUT,
  43. OBS_ICON_TYPE_DESKTOP_CAPTURE,
  44. OBS_ICON_TYPE_WINDOW_CAPTURE,
  45. OBS_ICON_TYPE_GAME_CAPTURE,
  46. OBS_ICON_TYPE_CAMERA,
  47. OBS_ICON_TYPE_TEXT,
  48. OBS_ICON_TYPE_MEDIA,
  49. OBS_ICON_TYPE_BROWSER,
  50. OBS_ICON_TYPE_CUSTOM,
  51. OBS_ICON_TYPE_PROCESS_AUDIO_OUTPUT,
  52. };
  53. enum obs_media_state {
  54. OBS_MEDIA_STATE_NONE,
  55. OBS_MEDIA_STATE_PLAYING,
  56. OBS_MEDIA_STATE_OPENING,
  57. OBS_MEDIA_STATE_BUFFERING,
  58. OBS_MEDIA_STATE_PAUSED,
  59. OBS_MEDIA_STATE_STOPPED,
  60. OBS_MEDIA_STATE_ENDED,
  61. OBS_MEDIA_STATE_ERROR,
  62. };
  63. /**
  64. * @name Source output flags
  65. *
  66. * These flags determine what type of data the source outputs and expects.
  67. * @{
  68. */
  69. /**
  70. * Source has video.
  71. *
  72. * Unless SOURCE_ASYNC_VIDEO is specified, the source must include the
  73. * video_render callback in the source definition structure.
  74. */
  75. #define OBS_SOURCE_VIDEO (1 << 0)
  76. /**
  77. * Source has audio.
  78. *
  79. * Use the obs_source_output_audio function to pass raw audio data, which will
  80. * be automatically converted and uploaded. If used with SOURCE_ASYNC_VIDEO,
  81. * audio will automatically be synced up to the video output.
  82. */
  83. #define OBS_SOURCE_AUDIO (1 << 1)
  84. /** Async video flag (use OBS_SOURCE_ASYNC_VIDEO) */
  85. #define OBS_SOURCE_ASYNC (1 << 2)
  86. /**
  87. * Source passes raw video data via RAM.
  88. *
  89. * Use the obs_source_output_video function to pass raw video data, which will
  90. * be automatically uploaded at the specified timestamp.
  91. *
  92. * If this flag is specified, it is not necessary to include the video_render
  93. * callback. However, if you wish to use that function as well, you must call
  94. * obs_source_getframe to get the current frame data, and
  95. * obs_source_releaseframe to release the data when complete.
  96. */
  97. #define OBS_SOURCE_ASYNC_VIDEO (OBS_SOURCE_ASYNC | OBS_SOURCE_VIDEO)
  98. /**
  99. * Source uses custom drawing, rather than a default effect.
  100. *
  101. * If this flag is specified, the video_render callback will pass a NULL
  102. * effect, and effect-based filters will not use direct rendering.
  103. */
  104. #define OBS_SOURCE_CUSTOM_DRAW (1 << 3)
  105. /**
  106. * Source supports interaction.
  107. *
  108. * When this is used, the source will receive interaction events
  109. * if they provide the necessary callbacks in the source definition structure.
  110. */
  111. #define OBS_SOURCE_INTERACTION (1 << 5)
  112. /**
  113. * Source composites sub-sources
  114. *
  115. * When used specifies that the source composites one or more sub-sources.
  116. * Sources that render sub-sources must implement the audio_render callback
  117. * in order to perform custom mixing of sub-sources.
  118. *
  119. * This capability flag is always set for transitions.
  120. */
  121. #define OBS_SOURCE_COMPOSITE (1 << 6)
  122. /**
  123. * Source should not be fully duplicated
  124. *
  125. * When this is used, specifies that the source should not be fully duplicated,
  126. * and should prefer to duplicate via holding references rather than full
  127. * duplication.
  128. */
  129. #define OBS_SOURCE_DO_NOT_DUPLICATE (1 << 7)
  130. /**
  131. * Source is deprecated and should not be used
  132. */
  133. #define OBS_SOURCE_DEPRECATED (1 << 8)
  134. /**
  135. * Source cannot have its audio monitored
  136. *
  137. * Specifies that this source may cause a feedback loop if audio is monitored
  138. * with a device selected as desktop audio.
  139. *
  140. * This is used primarily with desktop audio capture sources.
  141. */
  142. #define OBS_SOURCE_DO_NOT_SELF_MONITOR (1 << 9)
  143. /**
  144. * Source type is currently disabled and should not be shown to the user
  145. */
  146. #define OBS_SOURCE_CAP_DISABLED (1 << 10)
  147. /**
  148. * Source type is obsolete (has been updated with new defaults/properties/etc)
  149. */
  150. #define OBS_SOURCE_CAP_OBSOLETE OBS_SOURCE_CAP_DISABLED
  151. /**
  152. * Source should enable monitoring by default. Monitoring should be set by the
  153. * frontend if this flag is set.
  154. */
  155. #define OBS_SOURCE_MONITOR_BY_DEFAULT (1 << 11)
  156. /** Used internally for audio submixing */
  157. #define OBS_SOURCE_SUBMIX (1 << 12)
  158. /**
  159. * Source type can be controlled by media controls
  160. */
  161. #define OBS_SOURCE_CONTROLLABLE_MEDIA (1 << 13)
  162. /**
  163. * Source type provides cea708 data
  164. */
  165. #define OBS_SOURCE_CEA_708 (1 << 14)
  166. /**
  167. * Source understands SRGB rendering
  168. */
  169. #define OBS_SOURCE_SRGB (1 << 15)
  170. /**
  171. * Source type prefers not to have its properties shown on creation
  172. * (prefers to rely on defaults first)
  173. */
  174. #define OBS_SOURCE_CAP_DONT_SHOW_PROPERTIES (1 << 16)
  175. /** @} */
  176. typedef void (*obs_source_enum_proc_t)(obs_source_t *parent, obs_source_t *child, void *param);
  177. struct obs_source_audio_mix {
  178. struct audio_output_data output[MAX_AUDIO_MIXES];
  179. };
  180. /**
  181. * Source definition structure
  182. */
  183. struct obs_source_info {
  184. /* ----------------------------------------------------------------- */
  185. /* Required implementation*/
  186. /** Unique string identifier for the source */
  187. const char *id;
  188. /**
  189. * Type of source.
  190. *
  191. * OBS_SOURCE_TYPE_INPUT for input sources,
  192. * OBS_SOURCE_TYPE_FILTER for filter sources, and
  193. * OBS_SOURCE_TYPE_TRANSITION for transition sources.
  194. */
  195. enum obs_source_type type;
  196. /** Source output flags */
  197. uint32_t output_flags;
  198. /**
  199. * Get the translated name of the source type
  200. *
  201. * @param type_data The type_data variable of this structure
  202. * @return The translated name of the source type
  203. */
  204. const char *(*get_name)(void *type_data);
  205. /**
  206. * Creates the source data for the source
  207. *
  208. * @param settings Settings to initialize the source with
  209. * @param source Source that this data is associated with
  210. * @return The data associated with this source
  211. */
  212. void *(*create)(obs_data_t *settings, obs_source_t *source);
  213. /**
  214. * Destroys the private data for the source
  215. *
  216. * Async sources must not call obs_source_output_video after returning
  217. * from destroy
  218. */
  219. void (*destroy)(void *data);
  220. /** Returns the width of the source. Required if this is an input
  221. * source and has non-async video */
  222. uint32_t (*get_width)(void *data);
  223. /** Returns the height of the source. Required if this is an input
  224. * source and has non-async video */
  225. uint32_t (*get_height)(void *data);
  226. /* ----------------------------------------------------------------- */
  227. /* Optional implementation */
  228. /**
  229. * Gets the default settings for this source
  230. *
  231. * @param[out] settings Data to assign default settings to
  232. * @deprecated Use get_defaults2 if type_data is needed
  233. */
  234. void (*get_defaults)(obs_data_t *settings);
  235. /**
  236. * Gets the property information of this source
  237. *
  238. * @return The properties data
  239. * @deprecated Use get_properties2 if type_data is needed
  240. */
  241. obs_properties_t *(*get_properties)(void *data);
  242. /**
  243. * Updates the settings for this source
  244. *
  245. * @param data Source data
  246. * @param settings New settings for this source
  247. */
  248. void (*update)(void *data, obs_data_t *settings);
  249. /** Called when the source has been activated in the main view */
  250. void (*activate)(void *data);
  251. /**
  252. * Called when the source has been deactivated from the main view
  253. * (no longer being played/displayed)
  254. */
  255. void (*deactivate)(void *data);
  256. /** Called when the source is visible */
  257. void (*show)(void *data);
  258. /** Called when the source is no longer visible */
  259. void (*hide)(void *data);
  260. /**
  261. * Called each video frame with the time elapsed
  262. *
  263. * @param data Source data
  264. * @param seconds Seconds elapsed since the last frame
  265. */
  266. void (*video_tick)(void *data, float seconds);
  267. /**
  268. * Called when rendering the source with the graphics subsystem.
  269. *
  270. * If this is an input/transition source, this is called to draw the
  271. * source texture with the graphics subsystem using the specified
  272. * effect.
  273. *
  274. * If this is a filter source, it wraps source draw calls (for
  275. * example applying a custom effect with custom parameters to a
  276. * source). In this case, it's highly recommended to use the
  277. * obs_source_process_filter function to automatically handle
  278. * effect-based filter processing. However, you can implement custom
  279. * draw handling as desired as well.
  280. *
  281. * If the source output flags do not include SOURCE_CUSTOM_DRAW, all
  282. * a source needs to do is set the "image" parameter of the effect to
  283. * the desired texture, and then draw. If the output flags include
  284. * SOURCE_COLOR_MATRIX, you may optionally set the "color_matrix"
  285. * parameter of the effect to a custom 4x4 conversion matrix (by
  286. * default it will be set to an YUV->RGB conversion matrix)
  287. *
  288. * @param data Source data
  289. * @param effect Effect to be used with this source. If the source
  290. * output flags include SOURCE_CUSTOM_DRAW, this will
  291. * be NULL, and the source is expected to process with
  292. * an effect manually.
  293. */
  294. void (*video_render)(void *data, gs_effect_t *effect);
  295. /**
  296. * Called to filter raw async video data.
  297. *
  298. * @note This function is only used with filter sources.
  299. *
  300. * @param data Filter data
  301. * @param frame Video frame to filter
  302. * @return New video frame data. This can defer video data to
  303. * be drawn later if time is needed for processing
  304. */
  305. struct obs_source_frame *(*filter_video)(void *data, struct obs_source_frame *frame);
  306. /**
  307. * Called to filter raw audio data.
  308. *
  309. * @note This function is only used with filter sources.
  310. *
  311. * @param data Filter data
  312. * @param audio Audio data to filter.
  313. * @return Modified or new audio data. You can directly modify
  314. * the data passed and return it, or you can defer audio
  315. * data for later if time is needed for processing. If
  316. * you are returning new data, that data must exist
  317. * until the next call to the filter_audio callback or
  318. * until the filter is removed/destroyed.
  319. */
  320. struct obs_audio_data *(*filter_audio)(void *data, struct obs_audio_data *audio);
  321. /**
  322. * Called to enumerate all active sources being used within this
  323. * source. If the source has children that render audio/video it must
  324. * implement this callback.
  325. *
  326. * @param data Filter data
  327. * @param enum_callback Enumeration callback
  328. * @param param User data to pass to callback
  329. */
  330. void (*enum_active_sources)(void *data, obs_source_enum_proc_t enum_callback, void *param);
  331. /**
  332. * Called when saving a source. This is a separate function because
  333. * sometimes a source needs to know when it is being saved so it
  334. * doesn't always have to update the current settings until a certain
  335. * point.
  336. *
  337. * @param data Source data
  338. * @param settings Settings
  339. */
  340. void (*save)(void *data, obs_data_t *settings);
  341. /**
  342. * Called when loading a source from saved data. This should be called
  343. * after all the loading sources have actually been created because
  344. * sometimes there are sources that depend on each other.
  345. *
  346. * @param data Source data
  347. * @param settings Settings
  348. */
  349. void (*load)(void *data, obs_data_t *settings);
  350. /**
  351. * Called when interacting with a source and a mouse-down or mouse-up
  352. * occurs.
  353. *
  354. * @param data Source data
  355. * @param event Mouse event properties
  356. * @param type Mouse button pushed
  357. * @param mouse_up Mouse event type (true if mouse-up)
  358. * @param click_count Mouse click count (1 for single click, etc.)
  359. */
  360. void (*mouse_click)(void *data, const struct obs_mouse_event *event, int32_t type, bool mouse_up,
  361. uint32_t click_count);
  362. /**
  363. * Called when interacting with a source and a mouse-move occurs.
  364. *
  365. * @param data Source data
  366. * @param event Mouse event properties
  367. * @param mouse_leave Mouse leave state (true if mouse left source)
  368. */
  369. void (*mouse_move)(void *data, const struct obs_mouse_event *event, bool mouse_leave);
  370. /**
  371. * Called when interacting with a source and a mouse-wheel occurs.
  372. *
  373. * @param data Source data
  374. * @param event Mouse event properties
  375. * @param x_delta Movement delta in the horizontal direction
  376. * @param y_delta Movement delta in the vertical direction
  377. */
  378. void (*mouse_wheel)(void *data, const struct obs_mouse_event *event, int x_delta, int y_delta);
  379. /**
  380. * Called when interacting with a source and gain focus/lost focus event
  381. * occurs.
  382. *
  383. * @param data Source data
  384. * @param focus Focus state (true if focus gained)
  385. */
  386. void (*focus)(void *data, bool focus);
  387. /**
  388. * Called when interacting with a source and a key-up or key-down
  389. * occurs.
  390. *
  391. * @param data Source data
  392. * @param event Key event properties
  393. * @param focus Key event type (true if mouse-up)
  394. */
  395. void (*key_click)(void *data, const struct obs_key_event *event, bool key_up);
  396. /**
  397. * Called when the filter is removed from a source
  398. *
  399. * @param data Filter data
  400. * @param source Source that the filter being removed from
  401. */
  402. void (*filter_remove)(void *data, obs_source_t *source);
  403. /**
  404. * Private data associated with this entry
  405. */
  406. void *type_data;
  407. /**
  408. * If defined, called to free private data on shutdown
  409. */
  410. void (*free_type_data)(void *type_data);
  411. bool (*audio_render)(void *data, uint64_t *ts_out, struct obs_source_audio_mix *audio_output, uint32_t mixers,
  412. size_t channels, size_t sample_rate);
  413. /**
  414. * Called to enumerate all active and inactive sources being used
  415. * within this source. If this callback isn't implemented,
  416. * enum_active_sources will be called instead.
  417. *
  418. * This is typically used if a source can have inactive child sources.
  419. *
  420. * @param data Filter data
  421. * @param enum_callback Enumeration callback
  422. * @param param User data to pass to callback
  423. */
  424. void (*enum_all_sources)(void *data, obs_source_enum_proc_t enum_callback, void *param);
  425. void (*transition_start)(void *data);
  426. void (*transition_stop)(void *data);
  427. /**
  428. * Gets the default settings for this source
  429. *
  430. * If get_defaults is also defined both will be called, and the first
  431. * call will be to get_defaults, then to get_defaults2.
  432. *
  433. * @param type_data The type_data variable of this structure
  434. * @param[out] settings Data to assign default settings to
  435. */
  436. void (*get_defaults2)(void *type_data, obs_data_t *settings);
  437. /**
  438. * Gets the property information of this source
  439. *
  440. * @param data Source data
  441. * @param type_data The type_data variable of this structure
  442. * @return The properties data
  443. */
  444. obs_properties_t *(*get_properties2)(void *data, void *type_data);
  445. bool (*audio_mix)(void *data, uint64_t *ts_out, struct audio_output_data *audio_output, size_t channels,
  446. size_t sample_rate);
  447. /** Icon type for the source */
  448. enum obs_icon_type icon_type;
  449. /** Media controls */
  450. void (*media_play_pause)(void *data, bool pause);
  451. void (*media_restart)(void *data);
  452. void (*media_stop)(void *data);
  453. void (*media_next)(void *data);
  454. void (*media_previous)(void *data);
  455. int64_t (*media_get_duration)(void *data);
  456. int64_t (*media_get_time)(void *data);
  457. void (*media_set_time)(void *data, int64_t miliseconds);
  458. enum obs_media_state (*media_get_state)(void *data);
  459. /* version-related stuff */
  460. uint32_t version; /* increment if needed to specify a new version */
  461. const char *unversioned_id; /* set internally, don't set manually */
  462. /** Missing files **/
  463. obs_missing_files_t *(*missing_files)(void *data);
  464. /** Get color space **/
  465. enum gs_color_space (*video_get_color_space)(void *data, size_t count,
  466. const enum gs_color_space *preferred_spaces);
  467. /**
  468. * Called when the filter is added to a source
  469. *
  470. * @param data Filter data
  471. * @param source Source that the filter is being added to
  472. */
  473. void (*filter_add)(void *data, obs_source_t *source);
  474. };
  475. EXPORT void obs_register_source_s(const struct obs_source_info *info, size_t size);
  476. /**
  477. * Registers a source definition to the current obs context. This should be
  478. * used in obs_module_load.
  479. *
  480. * @param info Pointer to the source definition structure
  481. */
  482. #define obs_register_source(info) obs_register_source_s(info, sizeof(struct obs_source_info))
  483. #ifdef __cplusplus
  484. }
  485. #endif