1
0

obs-source.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. enum obs_source_type {
  20. OBS_SOURCE_TYPE_INPUT,
  21. OBS_SOURCE_TYPE_FILTER,
  22. OBS_SOURCE_TYPE_TRANSITION,
  23. };
  24. /**
  25. * @name Source output flags
  26. *
  27. * These flags determine what type of data the source outputs and expects.
  28. * @{
  29. */
  30. /**
  31. * Source has video.
  32. *
  33. * Unless SOURCE_ASYNC_VIDEO is specified, the source must include the
  34. * video_render callback in the source definition structure.
  35. */
  36. #define OBS_SOURCE_VIDEO (1<<0)
  37. /**
  38. * Source has audio.
  39. *
  40. * Use the obs_source_output_audio function to pass raw audio data, which will
  41. * be automatically converted and uploaded. If used with SOURCE_ASYNC_VIDEO,
  42. * audio will automatically be synced up to the video output.
  43. */
  44. #define OBS_SOURCE_AUDIO (1<<1)
  45. /** Async video flag (use OBS_SOURCE_ASYNC_VIDEO) */
  46. #define OBS_SOURCE_ASYNC (1<<2)
  47. /**
  48. * Source passes raw video data via RAM.
  49. *
  50. * Use the obs_source_output_video function to pass raw video data, which will
  51. * be automatically uploaded at the specified timestamp.
  52. *
  53. * If this flag is specified, it is not necessary to include the video_render
  54. * callback. However, if you wish to use that function as well, you must call
  55. * obs_source_getframe to get the current frame data, and
  56. * obs_source_releaseframe to release the data when complete.
  57. */
  58. #define OBS_SOURCE_ASYNC_VIDEO (OBS_SOURCE_ASYNC | OBS_SOURCE_VIDEO)
  59. /**
  60. * Source uses custom drawing, rather than a default effect.
  61. *
  62. * If this flag is specified, the video_render callback will pass a NULL
  63. * effect, and effect-based filters will not use direct rendering.
  64. */
  65. #define OBS_SOURCE_CUSTOM_DRAW (1<<3)
  66. /**
  67. * Source uses a color matrix (usually YUV sources).
  68. *
  69. * When this is used, the video_render callback will automatically assign a
  70. * 4x4 YUV->RGB matrix to the "color_matrix" parameter of the effect, or it can
  71. * be changed to a custom value.
  72. */
  73. #define OBS_SOURCE_COLOR_MATRIX (1<<4)
  74. /**
  75. * Source supports interaction.
  76. *
  77. * When this is used, the source will receive interaction events
  78. * if they provide the necessary callbacks in the source definition structure.
  79. */
  80. #define OBS_SOURCE_INTERACTION (1<<5)
  81. /** @} */
  82. typedef void (*obs_source_enum_proc_t)(obs_source_t *parent,
  83. obs_source_t *child, void *param);
  84. /**
  85. * Source definition structure
  86. */
  87. struct obs_source_info {
  88. /* ----------------------------------------------------------------- */
  89. /* Required implementation*/
  90. /** Unique string identifier for the source */
  91. const char *id;
  92. /**
  93. * Type of source.
  94. *
  95. * OBS_SOURCE_TYPE_INPUT for input sources,
  96. * OBS_SOURCE_TYPE_FILTER for filter sources, and
  97. * OBS_SOURCE_TYPE_TRANSITION for transition sources.
  98. */
  99. enum obs_source_type type;
  100. /** Source output flags */
  101. uint32_t output_flags;
  102. /**
  103. * Get the translated name of the source type
  104. *
  105. * @return The translated name of the source type
  106. */
  107. const char *(*get_name)(void);
  108. /**
  109. * Creates the source data for the source
  110. *
  111. * @param settings Settings to initialize the source with
  112. * @param source Source that this data is assoicated with
  113. * @return The data associated with this source
  114. */
  115. void *(*create)(obs_data_t *settings, obs_source_t *source);
  116. /**
  117. * Destroys the private data for the source
  118. *
  119. * Async sources must not call obs_source_output_video after returning
  120. * from destroy
  121. */
  122. void (*destroy)(void *data);
  123. /** Returns the width of the source. Required if this is an input
  124. * source and has non-async video */
  125. uint32_t (*get_width)(void *data);
  126. /** Returns the height of the source. Required if this is an input
  127. * source and has non-async video */
  128. uint32_t (*get_height)(void *data);
  129. /* ----------------------------------------------------------------- */
  130. /* Optional implementation */
  131. /**
  132. * Gets the default settings for this source
  133. *
  134. * @param[out] settings Data to assign default settings to
  135. */
  136. void (*get_defaults)(obs_data_t *settings);
  137. /**
  138. * Gets the property information of this source
  139. *
  140. * @return The properties data
  141. */
  142. obs_properties_t *(*get_properties)(void);
  143. /**
  144. * Updates the settings for this source
  145. *
  146. * @param data Source data
  147. * @param settings New settings for this source
  148. */
  149. void (*update)(void *data, obs_data_t *settings);
  150. /** Called when the source has been activated in the main view */
  151. void (*activate)(void *data);
  152. /**
  153. * Called when the source has been deactivated from the main view
  154. * (no longer being played/displayed)
  155. */
  156. void (*deactivate)(void *data);
  157. /** Called when the source is visible */
  158. void (*show)(void *data);
  159. /** Called when the source is no longer visible */
  160. void (*hide)(void *data);
  161. /**
  162. * Called each video frame with the time elapsed
  163. *
  164. * @param data Source data
  165. * @param seconds Seconds elapsed since the last frame
  166. */
  167. void (*video_tick)(void *data, float seconds);
  168. /**
  169. * Called when rendering the source with the graphics subsystem.
  170. *
  171. * If this is an input/transition source, this is called to draw the
  172. * source texture with the graphics subsystem using the specified
  173. * effect.
  174. *
  175. * If this is a filter source, it wraps source draw calls (for
  176. * example applying a custom effect with custom parameters to a
  177. * source). In this case, it's highly recommended to use the
  178. * obs_source_process_filter function to automatically handle
  179. * effect-based filter processing. However, you can implement custom
  180. * draw handling as desired as well.
  181. *
  182. * If the source output flags do not include SOURCE_CUSTOM_DRAW, all
  183. * a source needs to do is set the "image" parameter of the effect to
  184. * the desired texture, and then draw. If the output flags include
  185. * SOURCE_COLOR_MATRIX, you may optionally set the the "color_matrix"
  186. * parameter of the effect to a custom 4x4 conversion matrix (by
  187. * default it will be set to an YUV->RGB conversion matrix)
  188. *
  189. * @param data Source data
  190. * @param effect Effect to be used with this source. If the source
  191. * output flags include SOURCE_CUSTOM_DRAW, this will
  192. * be NULL, and the source is expected to process with
  193. * an effect manually.
  194. */
  195. void (*video_render)(void *data, gs_effect_t *effect);
  196. /**
  197. * Called to filter raw async video data.
  198. *
  199. * @note This function is only used with filter sources.
  200. *
  201. * @param data Source data
  202. * @param frame Video frame to filter
  203. * @return New video frame data. This can defer video data to
  204. * be drawn later if time is needed for processing
  205. */
  206. struct obs_source_frame *(*filter_video)(void *data,
  207. const struct obs_source_frame *frame);
  208. /**
  209. * Called to filter raw audio data.
  210. *
  211. * @note This function is only used with filter sources.
  212. *
  213. * @param data Source data
  214. * @param audio Audio data to filter.
  215. * @return Modified or new audio data. You can directly modify
  216. * the data passed and return it, or you can defer audio
  217. * data for later if time is needed for processing.
  218. */
  219. struct obs_audio_data *(*filter_audio)(void *data,
  220. struct obs_audio_data *audio);
  221. /**
  222. * Called to enumerate all sources being used within this source.
  223. * If the source has children it must implement this callback.
  224. *
  225. * @param data Source data
  226. * @param enum_callback Enumeration callback
  227. * @param param User data to pass to callback
  228. */
  229. void (*enum_sources)(void *data,
  230. obs_source_enum_proc_t enum_callback,
  231. void *param);
  232. /**
  233. * Called when saving a source. This is a separate function because
  234. * sometimes a source needs to know when it is being saved so it
  235. * doesn't always have to update the current settings until a certain
  236. * point.
  237. *
  238. * @param data Source data
  239. * @param settings Settings
  240. */
  241. void (*save)(void *data, obs_data_t *settings);
  242. /**
  243. * Called when loading a source from saved data. This should be called
  244. * after all the loading sources have actually been created because
  245. * sometimes there are sources that depend on each other.
  246. *
  247. * @param data Source data
  248. * @param settings Settings
  249. */
  250. void (*load)(void *data, obs_data_t *settings);
  251. /**
  252. * Called when interacting with a source and a mouse-down or mouse-up
  253. * occurs.
  254. *
  255. * @param data Source data
  256. * @param event Mouse event properties
  257. * @param type Mouse button pushed
  258. * @param mouse_up Mouse event type (true if mouse-up)
  259. * @param click_count Mouse click count (1 for single click, etc.)
  260. */
  261. void (*mouse_click)(void *data,
  262. const struct obs_mouse_event *event,
  263. int32_t type, bool mouse_up, uint32_t click_count);
  264. /**
  265. * Called when interacting with a source and a mouse-move occurs.
  266. *
  267. * @param data Source data
  268. * @param event Mouse event properties
  269. * @param mouse_leave Mouse leave state (true if mouse left source)
  270. */
  271. void (*mouse_move)(void *data,
  272. const struct obs_mouse_event *event, bool mouse_leave);
  273. /**
  274. * Called when interacting with a source and a mouse-wheel occurs.
  275. *
  276. * @param data Source data
  277. * @param event Mouse event properties
  278. * @param x_delta Movement delta in the horizontal direction
  279. * @param y_delta Movement delta in the vertical direction
  280. */
  281. void (*mouse_wheel)(void *data,
  282. const struct obs_mouse_event *event, int x_delta,
  283. int y_delta);
  284. /**
  285. * Called when interacting with a source and gain focus/lost focus event
  286. * occurs.
  287. *
  288. * @param data Source data
  289. * @param focus Focus state (true if focus gained)
  290. */
  291. void (*focus)(void *data, bool focus);
  292. /**
  293. * Called when interacting with a source and a key-up or key-down
  294. * occurs.
  295. *
  296. * @param data Source data
  297. * @param event Key event properties
  298. * @param focus Key event type (true if mouse-up)
  299. */
  300. void (*key_click)(void *data, const struct obs_key_event *event,
  301. bool key_up);
  302. };
  303. EXPORT void obs_register_source_s(const struct obs_source_info *info,
  304. size_t size);
  305. /**
  306. * Regsiters a source definition to the current obs context. This should be
  307. * used in obs_module_load.
  308. *
  309. * @param info Pointer to the source definition structure
  310. */
  311. #define obs_register_source(info) \
  312. obs_register_source_s(info, sizeof(struct obs_source_info))
  313. #ifdef __cplusplus
  314. }
  315. #endif