obs-source.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. typedef void (*obs_source_enum_proc_t)(obs_source_t parent, obs_source_t child,
  76. void *param);
  77. /**
  78. * Source definition structure
  79. */
  80. struct obs_source_info {
  81. /* ----------------------------------------------------------------- */
  82. /* Required implementation*/
  83. /** Unique string identifier for the source */
  84. const char *id;
  85. /**
  86. * Type of source.
  87. *
  88. * OBS_SOURCE_TYPE_INPUT for input sources,
  89. * OBS_SOURCE_TYPE_FILTER for filter sources, and
  90. * OBS_SOURCE_TYPE_TRANSITION for transition sources.
  91. */
  92. enum obs_source_type type;
  93. /** Source output flags */
  94. uint32_t output_flags;
  95. /**
  96. * Get the translated name of the source type
  97. *
  98. * @return The translated name of the source type
  99. */
  100. const char *(*getname)(void);
  101. /**
  102. * Creates the source data for the source
  103. *
  104. * @param settings Settings to initialize the source with
  105. * @param source Source that this data is assoicated with
  106. * @return The data associated with this source
  107. */
  108. void *(*create)(obs_data_t settings, obs_source_t source);
  109. /**
  110. * Destroys the private data for the source
  111. *
  112. * Async sources must not call obs_source_output_video after returning
  113. * from destroy
  114. */
  115. void (*destroy)(void *data);
  116. /** Returns the width of the source. Required if this is an input
  117. * source and has non-async video */
  118. uint32_t (*getwidth)(void *data);
  119. /** Returns the height of the source. Required if this is an input
  120. * source and has non-async video */
  121. uint32_t (*getheight)(void *data);
  122. /* ----------------------------------------------------------------- */
  123. /* Optional implementation */
  124. /**
  125. * Gets the default settings for this source
  126. *
  127. * @param[out] settings Data to assign default settings to
  128. */
  129. void (*defaults)(obs_data_t settings);
  130. /**
  131. * Gets the property information of this source
  132. *
  133. * @return The properties data
  134. */
  135. obs_properties_t (*properties)(void);
  136. /**
  137. * Updates the settings for this source
  138. *
  139. * @param data Source data
  140. * @param settings New settings for this source
  141. */
  142. void (*update)(void *data, obs_data_t settings);
  143. /** Called when the source has been activated in the main view */
  144. void (*activate)(void *data);
  145. /**
  146. * Called when the source has been deactivated from the main view
  147. * (no longer being played/displayed)
  148. */
  149. void (*deactivate)(void *data);
  150. /** Called when the source is visible */
  151. void (*show)(void *data);
  152. /** Called when the source is no longer visible */
  153. void (*hide)(void *data);
  154. /**
  155. * Called each video frame with the time elapsed
  156. *
  157. * @param data Source data
  158. * @param seconds Seconds elapsed since the last frame
  159. */
  160. void (*video_tick)(void *data, float seconds);
  161. /**
  162. * Called when rendering the source with the graphics subsystem.
  163. *
  164. * If this is an input/transition source, this is called to draw the
  165. * source texture with the graphics subsystem using the specified
  166. * effect.
  167. *
  168. * If this is a filter source, it wraps source draw calls (for
  169. * example applying a custom effect with custom parameters to a
  170. * source). In this case, it's highly recommended to use the
  171. * obs_source_process_filter function to automatically handle
  172. * effect-based filter processing. However, you can implement custom
  173. * draw handling as desired as well.
  174. *
  175. * If the source output flags do not include SOURCE_CUSTOM_DRAW, all
  176. * a source needs to do is set the "image" parameter of the effect to
  177. * the desired texture, and then draw. If the output flags include
  178. * SOURCE_COLOR_MATRIX, you may optionally set the the "color_matrix"
  179. * parameter of the effect to a custom 4x4 conversion matrix (by
  180. * default it will be set to an YUV->RGB conversion matrix)
  181. *
  182. * @param data Source data
  183. * @param effect Effect to be used with this source. If the source
  184. * output flags include SOURCE_CUSTOM_DRAW, this will
  185. * be NULL, and the source is expected to process with
  186. * an effect manually.
  187. */
  188. void (*video_render)(void *data, effect_t effect);
  189. /**
  190. * Called to filter raw async video data.
  191. *
  192. * @note This function is only used with filter sources.
  193. *
  194. * @param data Source data
  195. * @param frame Video frame to filter
  196. * @return New video frame data. This can defer video data to
  197. * be drawn later if time is needed for processing
  198. */
  199. struct source_frame *(*filter_video)(void *data,
  200. const struct source_frame *frame);
  201. /**
  202. * Called to filter raw audio data.
  203. *
  204. * @note This function is only used with filter sources.
  205. *
  206. * @param data Source data
  207. * @param audio Audio data to filter.
  208. * @return Modified or new audio data. You can directly modify
  209. * the data passed and return it, or you can defer audio
  210. * data for later if time is needed for processing.
  211. */
  212. struct filtered_audio *(*filter_audio)(void *data,
  213. struct filtered_audio *audio);
  214. /**
  215. * Called to enumerate all sources being used within this source.
  216. * If the source has children it must implement this callback.
  217. *
  218. * @param data Source data
  219. * @param enum_callback Enumeration callback
  220. * @param param User data to pass to callback
  221. */
  222. void (*enum_sources)(void *data,
  223. obs_source_enum_proc_t enum_callback,
  224. void *param);
  225. /**
  226. * Called when saving a source. This is a separate function because
  227. * sometimes a source needs to know when it is being saved so it
  228. * doesn't always have to update the current settings until a certain
  229. * point.
  230. *
  231. * @param data Source data
  232. * @param settings Settings
  233. */
  234. void (*save)(void *data, obs_data_t settings);
  235. /**
  236. * Called when loading a source from saved data. This should be called
  237. * after all the loading sources have actually been created because
  238. * sometimes there are sources that depend on each other.
  239. *
  240. * @param data Source data
  241. * @param settings Settings
  242. */
  243. void (*load)(void *data, obs_data_t settings);
  244. };
  245. EXPORT void obs_register_source_s(const struct obs_source_info *info,
  246. size_t size);
  247. /**
  248. * Regsiters a source definition to the current obs context. This should be
  249. * used in obs_module_load.
  250. *
  251. * @param info Pointer to the source definition structure
  252. */
  253. #define obs_register_source(info) \
  254. obs_register_source_s(info, sizeof(struct obs_source_info))
  255. #ifdef __cplusplus
  256. }
  257. #endif