SDL_camera.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_camera.h
  20. *
  21. * Video Capture for the SDL library.
  22. */
  23. #ifndef SDL_camera_h_
  24. #define SDL_camera_h_
  25. #include "SDL3/SDL_video.h"
  26. #include <SDL3/SDL_begin_code.h>
  27. /* Set up for C function definitions, even when using C++ */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /**
  32. * This is a unique ID for a camera device for the time it is connected to the system,
  33. * and is never reused for the lifetime of the application. If the device is
  34. * disconnected and reconnected, it will get a new ID.
  35. *
  36. * The ID value starts at 1 and increments from there. The value 0 is an invalid ID.
  37. *
  38. * \sa SDL_GetCameraDevices
  39. */
  40. typedef Uint32 SDL_CameraDeviceID;
  41. /**
  42. * The structure used to identify an opened SDL camera
  43. */
  44. struct SDL_Camera;
  45. typedef struct SDL_Camera SDL_Camera;
  46. /**
  47. * SDL_CameraSpec structure
  48. *
  49. * \sa SDL_GetCameraDeviceSupportedFormats
  50. * \sa SDL_GetCameraFormat
  51. *
  52. */
  53. typedef struct SDL_CameraSpec
  54. {
  55. Uint32 format; /**< Frame SDL_PixelFormatEnum format */
  56. int width; /**< Frame width */
  57. int height; /**< Frame height */
  58. int interval_numerator; /**< Frame rate numerator ((dom / num) == fps) */
  59. int interval_denominator; /**< Frame rate demoninator ((dom / num) == fps)*/
  60. } SDL_CameraSpec;
  61. /**
  62. * Use this function to get the number of built-in camera drivers.
  63. *
  64. * This function returns a hardcoded number. This never returns a negative
  65. * value; if there are no drivers compiled into this build of SDL, this
  66. * function returns zero. The presence of a driver in this list does not mean
  67. * it will function, it just means SDL is capable of interacting with that
  68. * interface. For example, a build of SDL might have v4l2 support, but if
  69. * there's no kernel support available, SDL's v4l2 driver would fail if used.
  70. *
  71. * By default, SDL tries all drivers, in its preferred order, until one is
  72. * found to be usable.
  73. *
  74. * \returns the number of built-in camera drivers.
  75. *
  76. * \threadsafety It is safe to call this function from any thread.
  77. *
  78. * \since This function is available since SDL 3.0.0.
  79. *
  80. * \sa SDL_GetCameraDriver
  81. */
  82. extern DECLSPEC int SDLCALL SDL_GetNumCameraDrivers(void);
  83. /**
  84. * Use this function to get the name of a built in camera driver.
  85. *
  86. * The list of camera drivers is given in the order that they are normally
  87. * initialized by default; the drivers that seem more reasonable to choose
  88. * first (as far as the SDL developers believe) are earlier in the list.
  89. *
  90. * The names of drivers are all simple, low-ASCII identifiers, like "v4l2",
  91. * "coremedia" or "android". These never have Unicode characters, and are not
  92. * meant to be proper names.
  93. *
  94. * \param index the index of the camera driver; the value ranges from 0 to
  95. * SDL_GetNumCameraDrivers() - 1
  96. * \returns the name of the camera driver at the requested index, or NULL if an
  97. * invalid index was specified.
  98. *
  99. * \threadsafety It is safe to call this function from any thread.
  100. *
  101. * \since This function is available since SDL 3.0.0.
  102. *
  103. * \sa SDL_GetNumCameraDrivers
  104. */
  105. extern DECLSPEC const char *SDLCALL SDL_GetCameraDriver(int index);
  106. /**
  107. * Get the name of the current camera driver.
  108. *
  109. * The returned string points to internal static memory and thus never becomes
  110. * invalid, even if you quit the camera subsystem and initialize a new driver
  111. * (although such a case would return a different static string from another
  112. * call to this function, of course). As such, you should not modify or free
  113. * the returned string.
  114. *
  115. * \returns the name of the current camera driver or NULL if no driver has been
  116. * initialized.
  117. *
  118. * \threadsafety It is safe to call this function from any thread.
  119. *
  120. * \since This function is available since SDL 3.0.0.
  121. */
  122. extern DECLSPEC const char *SDLCALL SDL_GetCurrentCameraDriver(void);
  123. /**
  124. * Get a list of currently connected camera devices.
  125. *
  126. * \param count a pointer filled in with the number of camera devices. Can be NULL.
  127. * \returns a 0 terminated array of camera instance IDs which should be
  128. * freed with SDL_free(), or NULL on error; call SDL_GetError() for
  129. * more details.
  130. *
  131. * \threadsafety It is safe to call this function from any thread.
  132. *
  133. * \since This function is available since SDL 3.0.0.
  134. *
  135. * \sa SDL_OpenCamera
  136. */
  137. extern DECLSPEC SDL_CameraDeviceID *SDLCALL SDL_GetCameraDevices(int *count);
  138. /**
  139. * Get the list of native formats/sizes a camera supports.
  140. *
  141. * This returns a list of all formats and frame sizes that a specific
  142. * camera can offer. This is useful if your app can accept a variety
  143. * of image formats and sizes and so want to find the optimal spec
  144. * that doesn't require conversion.
  145. *
  146. * This function isn't strictly required; if you call SDL_OpenCameraDevice
  147. * with a NULL spec, SDL will choose a native format for you, and if you
  148. * instead specify a desired format, it will transparently convert to the
  149. * requested format on your behalf.
  150. *
  151. * If `count` is not NULL, it will be filled with the number of elements
  152. * in the returned array. Additionally, the last element of the array
  153. * has all fields set to zero (this element is not included in `count`).
  154. *
  155. * The returned list is owned by the caller, and should be released with
  156. * SDL_free() when no longer needed.
  157. *
  158. * \param devid the camera device instance ID to query.
  159. * \param count a pointer filled in with the number of elements in the list. Can be NULL.
  160. * \returns a 0 terminated array of SDL_CameraSpecs, which should be
  161. * freed with SDL_free(), or NULL on error; call SDL_GetError() for
  162. * more details.
  163. *
  164. * \threadsafety It is safe to call this function from any thread.
  165. *
  166. * \since This function is available since SDL 3.0.0.
  167. *
  168. * \sa SDL_GetCameraDevices
  169. * \sa SDL_OpenCameraDevice
  170. */
  171. extern DECLSPEC SDL_CameraSpec *SDLCALL SDL_GetCameraDeviceSupportedFormats(SDL_CameraDeviceID devid, int *count);
  172. /**
  173. * Get human-readable device name for a camera.
  174. *
  175. * The returned string is owned by the caller; please release it with
  176. * SDL_free() when done with it.
  177. *
  178. * \param instance_id the camera device instance ID
  179. * \returns Human-readable device name, or NULL on error; call SDL_GetError() for more information.
  180. *
  181. * \threadsafety It is safe to call this function from any thread.
  182. *
  183. * \since This function is available since SDL 3.0.0.
  184. *
  185. * \sa SDL_GetCameraDevices
  186. */
  187. extern DECLSPEC char * SDLCALL SDL_GetCameraDeviceName(SDL_CameraDeviceID instance_id);
  188. /**
  189. * Open a video capture device (a "camera").
  190. *
  191. * You can open the device with any reasonable spec, and if the hardware can't
  192. * directly support it, it will convert data seamlessly to the requested
  193. * format. This might incur overhead, including scaling of image data.
  194. *
  195. * If you would rather accept whatever format the device offers, you can
  196. * pass a NULL spec here and it will choose one for you (and you can use
  197. * SDL_Surface's conversion/scaling functions directly if necessary).
  198. *
  199. * You can call SDL_GetCameraFormat() to get the actual data format if
  200. * passing a NULL spec here. You can see the exact specs a device can
  201. * support without conversion with SDL_GetCameraSupportedSpecs().
  202. *
  203. * SDL will not attempt to emulate framerate; it will try to set the
  204. * hardware to the rate closest to the requested speed, but it won't
  205. * attempt to limit or duplicate frames artificially; call
  206. * SDL_GetCameraFormat() to see the actual framerate of the opened the device,
  207. * and check your timestamps if this is crucial to your app!
  208. *
  209. * \param instance_id the camera device instance ID
  210. * \param spec The desired format for data the device will provide. Can be NULL.
  211. * \returns device, or NULL on failure; call SDL_GetError() for more
  212. * information.
  213. *
  214. * \threadsafety It is safe to call this function from any thread.
  215. *
  216. * \since This function is available since SDL 3.0.0.
  217. *
  218. * \sa SDL_GetCameraDevices
  219. * \sa SDL_GetCameraFormat
  220. */
  221. extern DECLSPEC SDL_Camera *SDLCALL SDL_OpenCameraDevice(SDL_CameraDeviceID instance_id, const SDL_CameraSpec *spec);
  222. /**
  223. * Get the instance ID of an opened camera.
  224. *
  225. * \param device an SDL_Camera to query
  226. * \returns the instance ID of the specified camera on success or 0 on
  227. * failure; call SDL_GetError() for more information.
  228. *
  229. * \threadsafety It is safe to call this function from any thread.
  230. *
  231. * \since This function is available since SDL 3.0.0.
  232. *
  233. * \sa SDL_OpenCameraDevice
  234. */
  235. extern DECLSPEC SDL_CameraDeviceID SDLCALL SDL_GetCameraInstanceID(SDL_Camera *camera);
  236. /**
  237. * Get the properties associated with an opened camera.
  238. *
  239. * \param device the SDL_Camera obtained from SDL_OpenCameraDevice()
  240. * \returns a valid property ID on success or 0 on failure; call
  241. * SDL_GetError() for more information.
  242. *
  243. * \threadsafety It is safe to call this function from any thread.
  244. *
  245. * \since This function is available since SDL 3.0.0.
  246. *
  247. * \sa SDL_GetProperty
  248. * \sa SDL_SetProperty
  249. */
  250. extern DECLSPEC SDL_PropertiesID SDLCALL SDL_GetCameraProperties(SDL_Camera *camera);
  251. /**
  252. * Get the spec that a camera is using when generating images.
  253. *
  254. * Note that this might not be the native format of the hardware, as SDL
  255. * might be converting to this format behind the scenes.
  256. *
  257. * \param device opened camera device
  258. * \param spec The SDL_CameraSpec to be initialized by this function.
  259. * \returns 0 on success or a negative error code on failure; call
  260. * SDL_GetError() for more information.
  261. *
  262. * \threadsafety It is safe to call this function from any thread.
  263. *
  264. * \since This function is available since SDL 3.0.0.
  265. *
  266. * \sa SDL_OpenCameraDevice
  267. */
  268. extern DECLSPEC int SDLCALL SDL_GetCameraFormat(SDL_Camera *camera, SDL_CameraSpec *spec);
  269. /**
  270. * Acquire a frame.
  271. *
  272. * The frame is a memory pointer to the image data, whose size and format are
  273. * given by the spec requested when opening the device.
  274. *
  275. * This is a non blocking API. If there is a frame available, a non-NULL surface is
  276. * returned, and timestampNS will be filled with a non-zero value.
  277. *
  278. * Note that an error case can also return NULL, but a NULL by itself is normal
  279. * and just signifies that a new frame is not yet available. Note that even if a
  280. * camera device fails outright (a USB camera is unplugged while in use, etc), SDL
  281. * will send an event separately to notify the app, but continue to provide blank
  282. * frames at ongoing intervals until SDL_CloseCamera() is called, so real
  283. * failure here is almost always an out of memory condition.
  284. *
  285. * After use, the frame should be released with SDL_ReleaseCameraFrame(). If you
  286. * don't do this, the system may stop providing more video! If the hardware is
  287. * using DMA to write directly into memory, frames held too long may be overwritten
  288. * with new data.
  289. *
  290. * Do not call SDL_FreeSurface() on the returned surface! It must be given back
  291. * to the camera subsystem with SDL_ReleaseCameraFrame!
  292. *
  293. * \param device opened camera device
  294. * \param timestampNS a pointer filled in with the frame's timestamp, or 0 on error. Can be NULL.
  295. * \returns A new frame of video on success, NULL if none is currently available.
  296. *
  297. * \threadsafety It is safe to call this function from any thread.
  298. *
  299. * \since This function is available since SDL 3.0.0.
  300. *
  301. * \sa SDL_ReleaseCameraFrame
  302. */
  303. extern DECLSPEC SDL_Surface * SDLCALL SDL_AcquireCameraFrame(SDL_Camera *camera, Uint64 *timestampNS);
  304. /**
  305. * Release a frame of video acquired from a camera.
  306. *
  307. * Let the back-end re-use the internal buffer for camera.
  308. *
  309. * This function _must_ be called only on surface objects returned by
  310. * SDL_AcquireCameraFrame(). This function should be called as quickly as
  311. * possible after acquisition, as SDL keeps a small FIFO queue of surfaces
  312. * for video frames; if surfaces aren't released in a timely manner, SDL
  313. * may drop upcoming video frames from the camera.
  314. *
  315. * If the app needs to keep the surface for a significant time, they should
  316. * make a copy of it and release the original.
  317. *
  318. * The app should not use the surface again after calling this function;
  319. * assume the surface is freed and the pointer is invalid.
  320. *
  321. * \param device opened camera device
  322. * \param frame The video frame surface to release.
  323. * \returns 0 on success or a negative error code on failure; call
  324. * SDL_GetError() for more information.
  325. *
  326. * \threadsafety It is safe to call this function from any thread.
  327. *
  328. * \since This function is available since SDL 3.0.0.
  329. *
  330. * \sa SDL_AcquireCameraFrame
  331. */
  332. extern DECLSPEC int SDLCALL SDL_ReleaseCameraFrame(SDL_Camera *camera, SDL_Surface *frame);
  333. /**
  334. * Use this function to shut down camera processing and close the
  335. * camera device.
  336. *
  337. * \param device opened camera device
  338. *
  339. * \threadsafety It is safe to call this function from any thread, but
  340. * no thread may reference `device` once this function
  341. * is called.
  342. *
  343. * \since This function is available since SDL 3.0.0.
  344. *
  345. * \sa SDL_OpenCameraWithSpec
  346. * \sa SDL_OpenCamera
  347. */
  348. extern DECLSPEC void SDLCALL SDL_CloseCamera(SDL_Camera *camera);
  349. /* Ends C function definitions when using C++ */
  350. #ifdef __cplusplus
  351. }
  352. #endif
  353. #include <SDL3/SDL_close_code.h>
  354. #endif /* SDL_camera_h_ */