You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

270 lines
8.5KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVDEVICE_AVDEVICE_H
  19. #define AVDEVICE_AVDEVICE_H
  20. #include "version.h"
  21. /**
  22. * @file
  23. * @ingroup lavd
  24. * Main libavdevice API header
  25. */
  26. /**
  27. * @defgroup lavd Special devices muxing/demuxing library
  28. * @{
  29. * Libavdevice is a complementary library to @ref libavf "libavformat". It
  30. * provides various "special" platform-specific muxers and demuxers, e.g. for
  31. * grabbing devices, audio capture and playback etc. As a consequence, the
  32. * (de)muxers in libavdevice are of the AVFMT_NOFILE type (they use their own
  33. * I/O functions). The filename passed to avformat_open_input() often does not
  34. * refer to an actually existing file, but has some special device-specific
  35. * meaning - e.g. for x11grab it is the display name.
  36. *
  37. * To use libavdevice, simply call avdevice_register_all() to register all
  38. * compiled muxers and demuxers. They all use standard libavformat API.
  39. * @}
  40. */
  41. #include "libavformat/avformat.h"
  42. /**
  43. * Return the LIBAVDEVICE_VERSION_INT constant.
  44. */
  45. unsigned avdevice_version(void);
  46. /**
  47. * Return the libavdevice build-time configuration.
  48. */
  49. const char *avdevice_configuration(void);
  50. /**
  51. * Return the libavdevice license.
  52. */
  53. const char *avdevice_license(void);
  54. /**
  55. * Initialize libavdevice and register all the input and output devices.
  56. * @warning This function is not thread safe.
  57. */
  58. void avdevice_register_all(void);
  59. /**
  60. * Audio input devices iterator.
  61. *
  62. * If d is NULL, returns the first registered input audio/video device,
  63. * if d is non-NULL, returns the next registered input audio/video device after d
  64. * or NULL if d is the last one.
  65. */
  66. AVInputFormat *av_input_audio_device_next(AVInputFormat *d);
  67. /**
  68. * Video input devices iterator.
  69. *
  70. * If d is NULL, returns the first registered input audio/video device,
  71. * if d is non-NULL, returns the next registered input audio/video device after d
  72. * or NULL if d is the last one.
  73. */
  74. AVInputFormat *av_input_video_device_next(AVInputFormat *d);
  75. /**
  76. * Audio output devices iterator.
  77. *
  78. * If d is NULL, returns the first registered output audio/video device,
  79. * if d is non-NULL, returns the next registered output audio/video device after d
  80. * or NULL if d is the last one.
  81. */
  82. AVOutputFormat *av_output_audio_device_next(AVOutputFormat *d);
  83. /**
  84. * Video output devices iterator.
  85. *
  86. * If d is NULL, returns the first registered output audio/video device,
  87. * if d is non-NULL, returns the next registered output audio/video device after d
  88. * or NULL if d is the last one.
  89. */
  90. AVOutputFormat *av_output_video_device_next(AVOutputFormat *d);
  91. typedef struct AVDeviceRect {
  92. int x; /**< x coordinate of top left corner */
  93. int y; /**< y coordinate of top left corner */
  94. int width; /**< width */
  95. int height; /**< height */
  96. } AVDeviceRect;
  97. /**
  98. * Message types used by avdevice_app_to_dev_control_message().
  99. */
  100. enum AVAppToDevMessageType {
  101. /**
  102. * Dummy message.
  103. */
  104. AV_APP_TO_DEV_NONE = MKBETAG('N','O','N','E'),
  105. /**
  106. * Window size change message.
  107. *
  108. * Message is sent to the device every time the application changes the size
  109. * of the window device renders to.
  110. * Message should also be sent right after window is created.
  111. *
  112. * data: AVDeviceRect: new window size.
  113. */
  114. AV_APP_TO_DEV_WINDOW_SIZE = MKBETAG('G','E','O','M'),
  115. /**
  116. * Repaint request message.
  117. *
  118. * Message is sent to the device when window have to be rapainted.
  119. *
  120. * data: AVDeviceRect: area required to be repainted.
  121. * NULL: whole area is required to be repainted.
  122. */
  123. AV_APP_TO_DEV_WINDOW_REPAINT = MKBETAG('R','E','P','A')
  124. };
  125. /**
  126. * Message types used by avdevice_dev_to_app_control_message().
  127. */
  128. enum AVDevToAppMessageType {
  129. /**
  130. * Dummy message.
  131. */
  132. AV_DEV_TO_APP_NONE = MKBETAG('N','O','N','E'),
  133. /**
  134. * Create window buffer message.
  135. *
  136. * Device requests to create a window buffer. Exact meaning is device-
  137. * and application-dependent. Message is sent before rendering first
  138. * frame and all one-shot initializations should be done here.
  139. * Application is allowed to ignore preferred window buffer size.
  140. *
  141. * @note: Application is obligated to inform about window buffer size
  142. * with AV_APP_TO_DEV_WINDOW_SIZE message.
  143. *
  144. * data: AVDeviceRect: preferred size of the window buffer.
  145. * NULL: no preferred size of the window buffer.
  146. */
  147. AV_DEV_TO_APP_CREATE_WINDOW_BUFFER = MKBETAG('B','C','R','E'),
  148. /**
  149. * Prepare window buffer message.
  150. *
  151. * Device requests to prepare a window buffer for rendering.
  152. * Exact meaning is device- and application-dependent.
  153. * Message is sent before rendering of each frame.
  154. *
  155. * data: NULL.
  156. */
  157. AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER = MKBETAG('B','P','R','E'),
  158. /**
  159. * Display window buffer message.
  160. *
  161. * Device requests to display a window buffer.
  162. * Message is sent when new frame is ready to be displyed.
  163. * Usually buffers need to be swapped in handler of this message.
  164. *
  165. * data: NULL.
  166. */
  167. AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER = MKBETAG('B','D','I','S'),
  168. /**
  169. * Destroy window buffer message.
  170. *
  171. * Device requests to destroy a window buffer.
  172. * Message is sent when device is about to be destroyed and window
  173. * buffer is not required anymore.
  174. *
  175. * data: NULL.
  176. */
  177. AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER = MKBETAG('B','D','E','S')
  178. };
  179. /**
  180. * Send control message from application to device.
  181. *
  182. * @param s device context.
  183. * @param type message type.
  184. * @param data message data. Exact type depends on message type.
  185. * @param data_size size of message data.
  186. * @return >= 0 on success, negative on error.
  187. * AVERROR(ENOSYS) when device doesn't implement handler of the message.
  188. */
  189. int avdevice_app_to_dev_control_message(struct AVFormatContext *s,
  190. enum AVAppToDevMessageType type,
  191. void *data, size_t data_size);
  192. /**
  193. * Send control message from device to application.
  194. *
  195. * @param s device context.
  196. * @param type message type.
  197. * @param data message data. Can be NULL.
  198. * @param data_size size of message data.
  199. * @return >= 0 on success, negative on error.
  200. * AVERROR(ENOSYS) when application doesn't implement handler of the message.
  201. */
  202. int avdevice_dev_to_app_control_message(struct AVFormatContext *s,
  203. enum AVDevToAppMessageType type,
  204. void *data, size_t data_size);
  205. /**
  206. * Structure describes basic parameters of the device.
  207. */
  208. typedef struct AVDeviceInfo {
  209. char *device_name; /**< device name, format depends on device */
  210. char *device_description; /**< human friendly name */
  211. } AVDeviceInfo;
  212. /**
  213. * List of devices.
  214. */
  215. typedef struct AVDeviceInfoList {
  216. AVDeviceInfo **devices; /**< list of autodetected devices */
  217. int nb_devices; /**< number of autodetected devices */
  218. int default_device; /**< index of default device or -1 if no default */
  219. } AVDeviceInfoList;
  220. /**
  221. * List devices.
  222. *
  223. * Returns available device names and their parameters.
  224. *
  225. * @note: Some devices may accept system-dependent device names that cannot be
  226. * autodetected. The list returned by this function cannot be assumed to
  227. * be always completed.
  228. *
  229. * @param s device context.
  230. * @param[out] device_list list of autodetected devices.
  231. * @return count of autodetected devices, negative on error.
  232. */
  233. int avdevice_list_devices(struct AVFormatContext *s, AVDeviceInfoList **device_list);
  234. /**
  235. * Convinient function to free result of avdevice_list_devices().
  236. *
  237. * @param devices device list to be freed.
  238. */
  239. void avdevice_free_list_devices(AVDeviceInfoList **device_list);
  240. #endif /* AVDEVICE_AVDEVICE_H */