reference-libobs-media-io.rst 14 KB

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