obs-source.h 14 KB

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