obs-source.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. OBS_SOURCE_TYPE_SCENE = 0x80000000
  24. };
  25. /**
  26. * @name Source output flags
  27. *
  28. * These flags determine what type of data the source outputs and expects.
  29. * @{
  30. */
  31. /**
  32. * Source has video.
  33. *
  34. * Unless SOURCE_ASYNC_VIDEO is specified, the source must include the
  35. * video_render callback in the source definition structure.
  36. */
  37. #define OBS_SOURCE_VIDEO (1<<0)
  38. /**
  39. * Source has audio.
  40. *
  41. * Use the obs_source_output_audio function to pass raw audio data, which will
  42. * be automatically converted and uploaded. If used with SOURCE_ASYNC_VIDEO,
  43. * audio will automatically be synced up to the video output.
  44. */
  45. #define OBS_SOURCE_AUDIO (1<<1)
  46. /**
  47. * Source passes raw video data via RAM.
  48. *
  49. * Use the obs_source_output_video function to pass raw video data, which will
  50. * be automatically uploaded at the specified timestamp.
  51. *
  52. * If this flag is specified, it is not necessary to include the video_render
  53. * callback. However, if you wish to use that function as well, you must call
  54. * obs_source_getframe to get the current frame data, and
  55. * obs_source_releaseframe to release the data when complete.
  56. */
  57. #define OBS_SOURCE_ASYNC_VIDEO ((1<<2) | OBS_SOURCE_VIDEO)
  58. /**
  59. * Source uses custom drawing, rather than a default effect.
  60. *
  61. * If this flag is specified, the video_render callback will pass a NULL
  62. * effect, and effect-based filters will not use direct rendering.
  63. */
  64. #define OBS_SOURCE_CUSTOM_DRAW (1<<3)
  65. /**
  66. * Source uses a color matrix (usually YUV sources).
  67. *
  68. * When this is used, the video_render callback will automatically assign a
  69. * 4x4 YUV->RGB matrix to the "color_matrix" parameter of the effect, or it can
  70. * be changed to a custom value.
  71. */
  72. #define OBS_SOURCE_COLOR_MATRIX (1<<4)
  73. /** @} */
  74. typedef void (*obs_source_enum_proc_t)(obs_source_t parent, obs_source_t child,
  75. void *param);
  76. /**
  77. * Source definition structure
  78. */
  79. struct obs_source_info {
  80. /* ----------------------------------------------------------------- */
  81. /* Required implementation*/
  82. /** Unique string identifier for the source */
  83. const char *id;
  84. /**
  85. * Type of source.
  86. *
  87. * OBS_SOURCE_TYPE_INPUT for input sources,
  88. * OBS_SOURCE_TYPE_FILTER for filter sources, and
  89. * OBS_SOURCE_TYPE_TRANSITION for transition sources.
  90. */
  91. enum obs_source_type type;
  92. /** Source output flags */
  93. uint32_t output_flags;
  94. /**
  95. * Get the translated name of the source type
  96. *
  97. * @param locale The locale to translate with
  98. * @return The translated name of the source type
  99. */
  100. const char *(*getname)(const char *locale);
  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. /** Destroys the private data for the source */
  110. void (*destroy)(void *data);
  111. /* ----------------------------------------------------------------- */
  112. /* Optional implementation */
  113. /**
  114. * Gets the property information of this source
  115. *
  116. * @param locale The locale to translate with
  117. * @return The properties data
  118. */
  119. obs_properties_t (*get_properties)(const char *locale);
  120. /**
  121. * Updates the settings for this source
  122. *
  123. * @param data Source data
  124. * @param settings New settings for this source
  125. */
  126. void (*update)(void *data, obs_data_t settings);
  127. /** Called when the source has been activated in the main view */
  128. void (*activate)(void *data);
  129. /**
  130. * Called when the source has been deactivated from the main view
  131. * (no longer being played/displayed)
  132. */
  133. void (*deactivate)(void *data);
  134. /** Called when the source is visible */
  135. void (*show)(void *data);
  136. /** Called when the source is no longer visible */
  137. void (*hide)(void *data);
  138. /**
  139. * Called each video frame with the time elapsed
  140. *
  141. * @param data Source data
  142. * @param seconds Seconds elapsed since the last frame
  143. */
  144. void (*video_tick)(void *data, float seconds);
  145. /**
  146. * Called when rendering the source with the graphics subsystem.
  147. *
  148. * If this is an input/transition source, this is called to draw the
  149. * source texture with the graphics subsystem using the specified
  150. * effect.
  151. *
  152. * If this is a filter source, it wraps source draw calls (for
  153. * example applying a custom effect with custom parameters to a
  154. * source). In this case, it's highly recommended to use the
  155. * obs_source_process_filter function to automatically handle
  156. * effect-based filter processing. However, you can implement custom
  157. * draw handling as desired as well.
  158. *
  159. * If the source output flags do not include SOURCE_CUSTOM_DRAW, all
  160. * a source needs to do is set the "image" parameter of the effect to
  161. * the desired texture, and then draw. If the output flags include
  162. * SOURCE_COLOR_MATRIX, you may optionally set the the "color_matrix"
  163. * parameter of the effect to a custom 4x4 conversion matrix (by
  164. * default it will be set to an YUV->RGB conversion matrix)
  165. *
  166. * @param data Source data
  167. * @param effect Effect to be used with this source. If the source
  168. * output flags include SOURCE_CUSTOM_DRAW, this will
  169. * be NULL, and the source is expected to process with
  170. * an effect manually.
  171. */
  172. void (*video_render)(void *data, effect_t effect);
  173. /** @return The width of the source */
  174. uint32_t (*getwidth)(void *data);
  175. /** @return The height of the source */
  176. uint32_t (*getheight)(void *data);
  177. /**
  178. * Called to filter raw async video data.
  179. *
  180. * @note This function is only used with filter sources.
  181. *
  182. * @param data Source data
  183. * @param frame Video frame to filter
  184. * @return New video frame data. This can defer video data to
  185. * be drawn later if time is needed for processing
  186. */
  187. struct source_frame *(*filter_video)(void *data,
  188. const struct source_frame *frame);
  189. /**
  190. * Called to filter raw audio data.
  191. *
  192. * @note This function is only used with filter sources.
  193. *
  194. * @param data Source data
  195. * @param audio Audio data to filter.
  196. * @return Modified or new audio data. You can directly modify
  197. * the data passed and return it, or you can defer audio
  198. * data for later if time is needed for processing.
  199. */
  200. struct filtered_audio *(*filter_audio)(void *data,
  201. struct filtered_audio *audio);
  202. /**
  203. * Called to enumerate all sources being used within this source.
  204. * If the source has children it must implement this callback.
  205. *
  206. * @param data Source data
  207. * @param enum_callback Enumeration callback
  208. * @param param User data to pass to callback
  209. */
  210. void (*enum_sources)(void *data,
  211. obs_source_enum_proc_t enum_callback,
  212. void *param);
  213. };
  214. /**
  215. * Regsiters a source definition to the current obs context. This should be
  216. * used in obs_module_load.
  217. *
  218. * @param info Pointer to the source definition structure
  219. */
  220. EXPORT void obs_register_source(const struct obs_source_info *info);
  221. #ifdef __cplusplus
  222. }
  223. #endif