reference-libobs-media-io.rst 14 KB

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