obs-source.h 14 KB

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