1
0

obs-source.h 9.2 KB

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