reference-libobs-media-io.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. Media I/O API Reference (libobs/media-io)
  2. =========================================
  3. .. code:: cpp
  4. #include <obs.h>
  5. Video Handler
  6. -------------
  7. .. type:: video_t
  8. Video output handler object
  9. ---------------------
  10. .. type:: enum video_format
  11. Video format. Can be one of the following values:
  12. - VIDEO_FORMAT_I420
  13. - VIDEO_FORMAT_NV12
  14. - VIDEO_FORMAT_YVYU
  15. - VIDEO_FORMAT_YUY2
  16. - VIDEO_FORMAT_UYVY
  17. - VIDEO_FORMAT_RGBA
  18. - VIDEO_FORMAT_BGRA
  19. - VIDEO_FORMAT_BGRX
  20. - VIDEO_FORMAT_Y800
  21. - VIDEO_FORMAT_I444
  22. ---------------------
  23. .. type:: enum video_colorspace
  24. YUV color space. Can be one of the following values:
  25. - VIDEO_CS_DEFAULT - Equivalent to VIDEO_CS_601
  26. - VIDEO_CS_601 - 601 color space
  27. - VIDEO_CS_709 - 709 color space
  28. ---------------------
  29. .. type:: enum video_range_type
  30. YUV color range.
  31. - VIDEO_RANGE_DEFAULT - Equivalent to VIDEO_RANGE_PARTIAL
  32. - VIDEO_RANGE_PARTIAL - Partial range
  33. - VIDEO_RANGE_FULL - Full range
  34. ---------------------
  35. .. type:: struct video_data
  36. Video frame structure.
  37. .. member:: uint8_t *video_data.data[MAX_AV_PLANES]
  38. .. member:: uint32_t video_data.linesize[MAX_AV_PLANES]
  39. .. member:: uint64_t video_data.timestamp
  40. ---------------------
  41. .. type:: struct video_output_info
  42. Video output handler information
  43. .. member:: const char *video_output_info.name
  44. .. member:: enum video_format video_output_info.format
  45. .. member:: uint32_t video_output_info.fps_num
  46. .. member:: uint32_t video_output_info.fps_den
  47. .. member:: uint32_t video_output_info.width
  48. .. member:: uint32_t video_output_info.height
  49. .. member:: size_t video_output_info.cache_size
  50. .. member:: enum video_colorspace video_output_info.colorspace
  51. .. member:: enum video_range_type video_output_info.range
  52. ---------------------
  53. .. function:: enum video_format video_format_from_fourcc(uint32_t fourcc)
  54. Converts a fourcc value to a video format.
  55. :param forcecc: Fourcc value
  56. :return: Video format
  57. ---------------------
  58. .. function:: bool video_format_get_parameters(enum video_colorspace color_space, enum video_range_type range, float matrix[16], float min_range[3], float max_range[3])
  59. Converts a color space/range to matrix/min/max values.
  60. :param color_space: Color space to convert
  61. :param range: Color range to convert
  62. :param matrix: Pointer to the matrix
  63. :param min_range: Pointer to get the minimum range value
  64. :param max_range: Pointer to get the maximum range value
  65. ---------------------
  66. .. function:: bool video_output_connect(video_t *video, const struct video_scale_info *conversion, void (*callback)(void *param, struct video_data *frame), void *param)
  67. Connects a raw video callback to the video output handler.
  68. :param video: Video output handler object
  69. :param callback: Callback to receive video data
  70. :param param: Private data to pass to the callback
  71. ---------------------
  72. .. function:: void video_output_disconnect(video_t *video, void (*callback)(void *param, struct video_data *frame), void *param)
  73. Disconnects a raw video callback from the video output handler.
  74. :param video: Video output handler object
  75. :param callback: Callback
  76. :param param: Private data
  77. ---------------------
  78. .. function:: const struct video_output_info *video_output_get_info(const video_t *video)
  79. Gets the full video information of the video output handler.
  80. :param video: Video output handler object
  81. :return: Video output info structure pointer
  82. ---------------------
  83. .. function:: uint64_t video_output_get_frame_time(const video_t *video)
  84. Gets the frame interval of the video output handler.
  85. :param video: Video output handler object
  86. :return: Video frame interval in nanoseconds
  87. ---------------------
  88. .. function:: enum video_format video_output_get_format(const video_t *video)
  89. Gets the video format of the video output handler.
  90. :param video: Video output handler object
  91. :return: Video format
  92. ---------------------
  93. .. function:: uint32_t video_output_get_width(const video_t *video)
  94. .. function:: uint32_t video_output_get_height(const video_t *video)
  95. Gets the width/height of the video output handler.
  96. :param video: Video output handler object
  97. :return: Width/height
  98. ---------------------
  99. .. function:: double video_output_get_frame_rate(const video_t *video)
  100. Gets the frame rate (as a floating point) of the video output
  101. handler.
  102. :param video: Video output handler object
  103. :return: Frame rate
  104. ---------------------
  105. .. function:: uint32_t video_output_get_skipped_frames(const video_t *video)
  106. Gets the skipped frame count of the video output handler.
  107. :param video: Video output handler object
  108. :return: Skipped frame count
  109. ---------------------
  110. .. function:: uint32_t video_output_get_total_frames(const video_t *video)
  111. Gets the total frames processed of the video output handler.
  112. :param video: Video output handler object
  113. :return: Total frames processed
  114. ---------------------
  115. Audio Handler
  116. -------------
  117. .. type:: audio_t
  118. ---------------------
  119. .. type:: enum audio_format
  120. Audio format. Can be one of the following values:
  121. - AUDIO_FORMAT_UNKNOWN
  122. - AUDIO_FORMAT_U8BIT
  123. - AUDIO_FORMAT_16BIT
  124. - AUDIO_FORMAT_32BIT
  125. - AUDIO_FORMAT_FLOAT
  126. - AUDIO_FORMAT_U8BIT_PLANAR
  127. - AUDIO_FORMAT_16BIT_PLANAR
  128. - AUDIO_FORMAT_32BIT_PLANAR
  129. - AUDIO_FORMAT_FLOAT_PLANAR
  130. ---------------------
  131. .. type:: enum speaker_layout
  132. Speaker layout. Can be one of the following values:
  133. - SPEAKERS_UNKNOWN
  134. - SPEAKERS_MONO
  135. - SPEAKERS_STEREO
  136. - SPEAKERS_2POINT1
  137. - SPEAKERS_QUAD
  138. - SPEAKERS_4POINT1
  139. - SPEAKERS_5POINT1
  140. - SPEAKERS_5POINT1_SURROUND
  141. - SPEAKERS_7POINT1
  142. - SPEAKERS_7POINT1_SURROUND
  143. - SPEAKERS_SURROUND
  144. ---------------------
  145. .. type:: struct audio_data
  146. Audio data structure.
  147. .. member:: uint8_t *audio_data.data[MAX_AV_PLANES]
  148. .. member:: uint32_t audio_data.frames
  149. .. member:: uint64_t audio_data.timestamp
  150. ---------------------
  151. .. type:: struct audio_output_data
  152. .. member:: float *audio_output_data.data[MAX_AUDIO_CHANNELS]
  153. ---------------------
  154. .. type:: struct audio_output_info
  155. .. member:: const char *audio_output_info.name
  156. .. member:: uint32_t audio_output_info.samples_per_sec
  157. .. member:: enum audio_format audio_output_info.format
  158. .. member:: enum speaker_layout audio_output_info.speakers
  159. .. member:: audio_input_callback_t audio_output_info.input_callback
  160. .. member:: void *audio_output_info.input_param
  161. ---------------------
  162. .. type:: struct audio_convert_info
  163. .. member:: uint32_t audio_convert_info.samples_per_sec
  164. .. member:: enum audio_format audio_convert_info.format
  165. .. member:: enum speaker_layout audio_convert_info.speakers
  166. ---------------------
  167. .. type:: typedef bool (*audio_input_callback_t)(void *param, uint64_t start_ts, uint64_t end_ts, uint64_t *new_ts, uint32_t active_mixers, struct audio_output_data *mixes)
  168. Audio input callback (typically used internally).
  169. ---------------------
  170. .. function:: uint32_t get_audio_channels(enum speaker_layout speakers)
  171. Converts a speaker layout to its audio channel count.
  172. :param speakers: Speaker layout enumeration
  173. :return: Channel count
  174. ---------------------
  175. .. function:: size_t get_audio_bytes_per_channel(enum audio_format format)
  176. Gets the audio bytes per channel for a specific audio format.
  177. :param format: Audio format
  178. :return: Bytes per channel
  179. ---------------------
  180. .. function:: bool is_audio_planar(enum audio_format format)
  181. Returns whether the audio format is a planar format.
  182. :param format: Audio format
  183. :return: *true* if audio is planar, *false* otherwise
  184. ---------------------
  185. .. function:: size_t get_audio_planes(enum audio_format format, enum speaker_layout speakers)
  186. Gets the number of audio planes for a specific audio format and
  187. speaker layout.
  188. :param format: Audio format
  189. :param speakers: Speaker layout
  190. :return: Number of audio planes
  191. ---------------------
  192. .. function:: size_t get_audio_size(enum audio_format format, enum speaker_layout speakers, uint32_t frames)
  193. Gets the audio block size for a specific frame out with the given
  194. format and speaker layout.
  195. :param format: Audio format
  196. :param speakers: Speaker layout
  197. :param frames: Audio frame count
  198. :return: Audio block size
  199. ---------------------
  200. .. function:: uint64_t audio_frames_to_ns(size_t sample_rate, uint64_t frames)
  201. Helper function to convert a specific number of audio frames to
  202. nanoseconds based upon its sample rate.
  203. :param sample_rate: Sample rate
  204. :param frames: Frame count
  205. :return: Nanoseconds
  206. ---------------------
  207. .. function:: uint64_t ns_to_audio_frames(size_t sample_rate, uint64_t ns)
  208. Helper function to convert a specific number of nanoseconds to audio
  209. frame count based upon its sample rate.
  210. :param sample_rate: Sample rate
  211. :param ns: Nanoseconds
  212. :return: Frame count
  213. ---------------------
  214. .. type:: typedef void (*audio_output_callback_t)(void *param, size_t mix_idx, struct audio_data *data)
  215. Audio output callback. Typically used internally.
  216. ---------------------
  217. .. function:: bool audio_output_connect(audio_t *audio, size_t mix_idx, const struct audio_convert_info *conversion, audio_output_callback_t callback, void *param)
  218. Connects a raw audio callback to the audio output handler.
  219. Optionally allows audio conversion if necessary.
  220. :param audio: Audio output handler object
  221. :param mix_idx: Mix index to get raw audio from
  222. :param conversion: Audio conversion information, or *NULL* for no
  223. conversion
  224. :param callback: Raw audio callback
  225. :param param: Private data to pass to the callback
  226. ---------------------
  227. .. function:: void audio_output_disconnect(audio_t *audio, size_t mix_idx, audio_output_callback_t callback, void *param)
  228. Disconnects a raw audio callback from the audio output handler.
  229. :param audio: Audio output handler object
  230. :param mix_idx: Mix index to get raw audio from
  231. :param callback: Raw audio callback
  232. :param param: Private data to pass to the callback
  233. ---------------------
  234. .. function:: size_t audio_output_get_block_size(const audio_t *audio)
  235. Gets the audio block size of an audio output handler.
  236. :param audio: Audio output handler object
  237. :return: Audio block size
  238. ---------------------
  239. .. function:: size_t audio_output_get_planes(const audio_t *audio)
  240. Gets the plane count of an audio output handler.
  241. :param audio: Audio output handler object
  242. :return: Audio plane count
  243. ---------------------
  244. .. function:: size_t audio_output_get_channels(const audio_t *audio)
  245. Gets the channel count of an audio output handler.
  246. :param audio: Audio output handler object
  247. :return: Audio channel count
  248. ---------------------
  249. .. function:: uint32_t audio_output_get_sample_rate(const audio_t *audio)
  250. Gets the sample rate of an audio output handler.
  251. :param audio: Audio output handler object
  252. :return: Audio sample rate
  253. ---------------------
  254. .. function:: const struct audio_output_info *audio_output_get_info(const audio_t *audio)
  255. Gets all audio information for an audio output handler.
  256. :param audio: Audio output handler object
  257. :return: Pointer to audio output information structure
  258. ---------------------
  259. Resampler
  260. ---------
  261. FFmpeg wrapper to resample audio.
  262. .. type:: typedef struct audio_resampler audio_resampler_t
  263. ---------------------
  264. .. type:: struct resample_info
  265. .. member:: uint32_t resample_info.samples_per_sec
  266. .. member:: enum audio_format resample_info.format
  267. .. member:: enum speaker_layout resample_info.speakers
  268. ---------------------
  269. .. function:: audio_resampler_t *audio_resampler_create(const struct resample_info *dst, const struct resample_info *src)
  270. Creates an audio resampler.
  271. :param dst: Destination audio information
  272. :param src: Source audio information
  273. :return: Audio resampler object
  274. ---------------------
  275. .. function:: void audio_resampler_destroy(audio_resampler_t *resampler)
  276. Destroys an audio resampler.
  277. :param resampler: Audio resampler object
  278. ---------------------
  279. .. function:: bool audio_resampler_resample(audio_resampler_t *resampler, uint8_t *output[], uint32_t *out_frames, uint64_t *ts_offset, const uint8_t *const input[], uint32_t in_frames)
  280. Resamples audio frames.
  281. :param resampler: Audio resampler object
  282. :param output: Pointer to receive converted audio frames
  283. :param out_frames: Pointer to receive converted audio frame count
  284. :param ts_offset: Pointer to receive timestamp offset (in
  285. nanoseconds)
  286. :param const input: Input frames to convert
  287. :param in_frames: Input frame count