SDL_audio.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 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_audio.h
  20. *
  21. * Access to the raw audio mixing buffer for the SDL library.
  22. */
  23. #ifndef _SDL_audio_h
  24. #define _SDL_audio_h
  25. #include "SDL_stdinc.h"
  26. #include "SDL_error.h"
  27. #include "SDL_endian.h"
  28. #include "SDL_mutex.h"
  29. #include "SDL_thread.h"
  30. #include "SDL_rwops.h"
  31. #include "begin_code.h"
  32. /* Set up for C function definitions, even when using C++ */
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. /**
  37. * \brief Audio format flags.
  38. *
  39. * These are what the 16 bits in SDL_AudioFormat currently mean...
  40. * (Unspecified bits are always zero).
  41. *
  42. * \verbatim
  43. ++-----------------------sample is signed if set
  44. ||
  45. || ++-----------sample is bigendian if set
  46. || ||
  47. || || ++---sample is float if set
  48. || || ||
  49. || || || +---sample bit size---+
  50. || || || | |
  51. 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00
  52. \endverbatim
  53. *
  54. * There are macros in SDL 2.0 and later to query these bits.
  55. */
  56. typedef Uint16 SDL_AudioFormat;
  57. /**
  58. * \name Audio flags
  59. */
  60. /* @{ */
  61. #define SDL_AUDIO_MASK_BITSIZE (0xFF)
  62. #define SDL_AUDIO_MASK_DATATYPE (1<<8)
  63. #define SDL_AUDIO_MASK_ENDIAN (1<<12)
  64. #define SDL_AUDIO_MASK_SIGNED (1<<15)
  65. #define SDL_AUDIO_BITSIZE(x) (x & SDL_AUDIO_MASK_BITSIZE)
  66. #define SDL_AUDIO_ISFLOAT(x) (x & SDL_AUDIO_MASK_DATATYPE)
  67. #define SDL_AUDIO_ISBIGENDIAN(x) (x & SDL_AUDIO_MASK_ENDIAN)
  68. #define SDL_AUDIO_ISSIGNED(x) (x & SDL_AUDIO_MASK_SIGNED)
  69. #define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x))
  70. #define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x))
  71. #define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x))
  72. /**
  73. * \name Audio format flags
  74. *
  75. * Defaults to LSB byte order.
  76. */
  77. /* @{ */
  78. #define AUDIO_U8 0x0008 /**< Unsigned 8-bit samples */
  79. #define AUDIO_S8 0x8008 /**< Signed 8-bit samples */
  80. #define AUDIO_U16LSB 0x0010 /**< Unsigned 16-bit samples */
  81. #define AUDIO_S16LSB 0x8010 /**< Signed 16-bit samples */
  82. #define AUDIO_U16MSB 0x1010 /**< As above, but big-endian byte order */
  83. #define AUDIO_S16MSB 0x9010 /**< As above, but big-endian byte order */
  84. #define AUDIO_U16 AUDIO_U16LSB
  85. #define AUDIO_S16 AUDIO_S16LSB
  86. /* @} */
  87. /**
  88. * \name int32 support
  89. */
  90. /* @{ */
  91. #define AUDIO_S32LSB 0x8020 /**< 32-bit integer samples */
  92. #define AUDIO_S32MSB 0x9020 /**< As above, but big-endian byte order */
  93. #define AUDIO_S32 AUDIO_S32LSB
  94. /* @} */
  95. /**
  96. * \name float32 support
  97. */
  98. /* @{ */
  99. #define AUDIO_F32LSB 0x8120 /**< 32-bit floating point samples */
  100. #define AUDIO_F32MSB 0x9120 /**< As above, but big-endian byte order */
  101. #define AUDIO_F32 AUDIO_F32LSB
  102. /* @} */
  103. /**
  104. * \name Native audio byte ordering
  105. */
  106. /* @{ */
  107. #if SDL_BYTEORDER == SDL_LIL_ENDIAN
  108. #define AUDIO_U16SYS AUDIO_U16LSB
  109. #define AUDIO_S16SYS AUDIO_S16LSB
  110. #define AUDIO_S32SYS AUDIO_S32LSB
  111. #define AUDIO_F32SYS AUDIO_F32LSB
  112. #else
  113. #define AUDIO_U16SYS AUDIO_U16MSB
  114. #define AUDIO_S16SYS AUDIO_S16MSB
  115. #define AUDIO_S32SYS AUDIO_S32MSB
  116. #define AUDIO_F32SYS AUDIO_F32MSB
  117. #endif
  118. /* @} */
  119. /**
  120. * \name Allow change flags
  121. *
  122. * Which audio format changes are allowed when opening a device.
  123. */
  124. /* @{ */
  125. #define SDL_AUDIO_ALLOW_FREQUENCY_CHANGE 0x00000001
  126. #define SDL_AUDIO_ALLOW_FORMAT_CHANGE 0x00000002
  127. #define SDL_AUDIO_ALLOW_CHANNELS_CHANGE 0x00000004
  128. #define SDL_AUDIO_ALLOW_ANY_CHANGE (SDL_AUDIO_ALLOW_FREQUENCY_CHANGE|SDL_AUDIO_ALLOW_FORMAT_CHANGE|SDL_AUDIO_ALLOW_CHANNELS_CHANGE)
  129. /* @} */
  130. /* @} *//* Audio flags */
  131. /**
  132. * This function is called when the audio device needs more data.
  133. *
  134. * \param userdata An application-specific parameter saved in
  135. * the SDL_AudioSpec structure
  136. * \param stream A pointer to the audio data buffer.
  137. * \param len The length of that buffer in bytes.
  138. *
  139. * Once the callback returns, the buffer will no longer be valid.
  140. * Stereo samples are stored in a LRLRLR ordering.
  141. */
  142. typedef void (SDLCALL * SDL_AudioCallback) (void *userdata, Uint8 * stream,
  143. int len);
  144. /**
  145. * The calculated values in this structure are calculated by SDL_OpenAudio().
  146. */
  147. typedef struct SDL_AudioSpec
  148. {
  149. int freq; /**< DSP frequency -- samples per second */
  150. SDL_AudioFormat format; /**< Audio data format */
  151. Uint8 channels; /**< Number of channels: 1 mono, 2 stereo */
  152. Uint8 silence; /**< Audio buffer silence value (calculated) */
  153. Uint16 samples; /**< Audio buffer size in samples (power of 2) */
  154. Uint16 padding; /**< Necessary for some compile environments */
  155. Uint32 size; /**< Audio buffer size in bytes (calculated) */
  156. SDL_AudioCallback callback;
  157. void *userdata;
  158. } SDL_AudioSpec;
  159. struct SDL_AudioCVT;
  160. typedef void (SDLCALL * SDL_AudioFilter) (struct SDL_AudioCVT * cvt,
  161. SDL_AudioFormat format);
  162. /**
  163. * A structure to hold a set of audio conversion filters and buffers.
  164. */
  165. #ifdef __GNUC__
  166. /* This structure is 84 bytes on 32-bit architectures, make sure GCC doesn't
  167. pad it out to 88 bytes to guarantee ABI compatibility between compilers.
  168. vvv
  169. The next time we rev the ABI, make sure to size the ints and add padding.
  170. */
  171. #define SDL_AUDIOCVT_PACKED __attribute__((packed))
  172. #else
  173. #define SDL_AUDIOCVT_PACKED
  174. #endif
  175. /* */
  176. typedef struct SDL_AudioCVT
  177. {
  178. int needed; /**< Set to 1 if conversion possible */
  179. SDL_AudioFormat src_format; /**< Source audio format */
  180. SDL_AudioFormat dst_format; /**< Target audio format */
  181. double rate_incr; /**< Rate conversion increment */
  182. Uint8 *buf; /**< Buffer to hold entire audio data */
  183. int len; /**< Length of original audio buffer */
  184. int len_cvt; /**< Length of converted audio buffer */
  185. int len_mult; /**< buffer must be len*len_mult big */
  186. double len_ratio; /**< Given len, final size is len*len_ratio */
  187. SDL_AudioFilter filters[10]; /**< Filter list */
  188. int filter_index; /**< Current audio conversion function */
  189. } SDL_AUDIOCVT_PACKED SDL_AudioCVT;
  190. /* Function prototypes */
  191. /**
  192. * \name Driver discovery functions
  193. *
  194. * These functions return the list of built in audio drivers, in the
  195. * order that they are normally initialized by default.
  196. */
  197. /* @{ */
  198. extern DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void);
  199. extern DECLSPEC const char *SDLCALL SDL_GetAudioDriver(int index);
  200. /* @} */
  201. /**
  202. * \name Initialization and cleanup
  203. *
  204. * \internal These functions are used internally, and should not be used unless
  205. * you have a specific need to specify the audio driver you want to
  206. * use. You should normally use SDL_Init() or SDL_InitSubSystem().
  207. */
  208. /* @{ */
  209. extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name);
  210. extern DECLSPEC void SDLCALL SDL_AudioQuit(void);
  211. /* @} */
  212. /**
  213. * This function returns the name of the current audio driver, or NULL
  214. * if no driver has been initialized.
  215. */
  216. extern DECLSPEC const char *SDLCALL SDL_GetCurrentAudioDriver(void);
  217. /**
  218. * This function opens the audio device with the desired parameters, and
  219. * returns 0 if successful, placing the actual hardware parameters in the
  220. * structure pointed to by \c obtained. If \c obtained is NULL, the audio
  221. * data passed to the callback function will be guaranteed to be in the
  222. * requested format, and will be automatically converted to the hardware
  223. * audio format if necessary. This function returns -1 if it failed
  224. * to open the audio device, or couldn't set up the audio thread.
  225. *
  226. * When filling in the desired audio spec structure,
  227. * - \c desired->freq should be the desired audio frequency in samples-per-
  228. * second.
  229. * - \c desired->format should be the desired audio format.
  230. * - \c desired->samples is the desired size of the audio buffer, in
  231. * samples. This number should be a power of two, and may be adjusted by
  232. * the audio driver to a value more suitable for the hardware. Good values
  233. * seem to range between 512 and 8096 inclusive, depending on the
  234. * application and CPU speed. Smaller values yield faster response time,
  235. * but can lead to underflow if the application is doing heavy processing
  236. * and cannot fill the audio buffer in time. A stereo sample consists of
  237. * both right and left channels in LR ordering.
  238. * Note that the number of samples is directly related to time by the
  239. * following formula: \code ms = (samples*1000)/freq \endcode
  240. * - \c desired->size is the size in bytes of the audio buffer, and is
  241. * calculated by SDL_OpenAudio().
  242. * - \c desired->silence is the value used to set the buffer to silence,
  243. * and is calculated by SDL_OpenAudio().
  244. * - \c desired->callback should be set to a function that will be called
  245. * when the audio device is ready for more data. It is passed a pointer
  246. * to the audio buffer, and the length in bytes of the audio buffer.
  247. * This function usually runs in a separate thread, and so you should
  248. * protect data structures that it accesses by calling SDL_LockAudio()
  249. * and SDL_UnlockAudio() in your code.
  250. * - \c desired->userdata is passed as the first parameter to your callback
  251. * function.
  252. *
  253. * The audio device starts out playing silence when it's opened, and should
  254. * be enabled for playing by calling \c SDL_PauseAudio(0) when you are ready
  255. * for your audio callback function to be called. Since the audio driver
  256. * may modify the requested size of the audio buffer, you should allocate
  257. * any local mixing buffers after you open the audio device.
  258. */
  259. extern DECLSPEC int SDLCALL SDL_OpenAudio(SDL_AudioSpec * desired,
  260. SDL_AudioSpec * obtained);
  261. /**
  262. * SDL Audio Device IDs.
  263. *
  264. * A successful call to SDL_OpenAudio() is always device id 1, and legacy
  265. * SDL audio APIs assume you want this device ID. SDL_OpenAudioDevice() calls
  266. * always returns devices >= 2 on success. The legacy calls are good both
  267. * for backwards compatibility and when you don't care about multiple,
  268. * specific, or capture devices.
  269. */
  270. typedef Uint32 SDL_AudioDeviceID;
  271. /**
  272. * Get the number of available devices exposed by the current driver.
  273. * Only valid after a successfully initializing the audio subsystem.
  274. * Returns -1 if an explicit list of devices can't be determined; this is
  275. * not an error. For example, if SDL is set up to talk to a remote audio
  276. * server, it can't list every one available on the Internet, but it will
  277. * still allow a specific host to be specified to SDL_OpenAudioDevice().
  278. *
  279. * In many common cases, when this function returns a value <= 0, it can still
  280. * successfully open the default device (NULL for first argument of
  281. * SDL_OpenAudioDevice()).
  282. */
  283. extern DECLSPEC int SDLCALL SDL_GetNumAudioDevices(int iscapture);
  284. /**
  285. * Get the human-readable name of a specific audio device.
  286. * Must be a value between 0 and (number of audio devices-1).
  287. * Only valid after a successfully initializing the audio subsystem.
  288. * The values returned by this function reflect the latest call to
  289. * SDL_GetNumAudioDevices(); recall that function to redetect available
  290. * hardware.
  291. *
  292. * The string returned by this function is UTF-8 encoded, read-only, and
  293. * managed internally. You are not to free it. If you need to keep the
  294. * string for any length of time, you should make your own copy of it, as it
  295. * will be invalid next time any of several other SDL functions is called.
  296. */
  297. extern DECLSPEC const char *SDLCALL SDL_GetAudioDeviceName(int index,
  298. int iscapture);
  299. /**
  300. * Open a specific audio device. Passing in a device name of NULL requests
  301. * the most reasonable default (and is equivalent to calling SDL_OpenAudio()).
  302. *
  303. * The device name is a UTF-8 string reported by SDL_GetAudioDeviceName(), but
  304. * some drivers allow arbitrary and driver-specific strings, such as a
  305. * hostname/IP address for a remote audio server, or a filename in the
  306. * diskaudio driver.
  307. *
  308. * \return 0 on error, a valid device ID that is >= 2 on success.
  309. *
  310. * SDL_OpenAudio(), unlike this function, always acts on device ID 1.
  311. */
  312. extern DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(const char
  313. *device,
  314. int iscapture,
  315. const
  316. SDL_AudioSpec *
  317. desired,
  318. SDL_AudioSpec *
  319. obtained,
  320. int
  321. allowed_changes);
  322. /**
  323. * \name Audio state
  324. *
  325. * Get the current audio state.
  326. */
  327. /* @{ */
  328. typedef enum
  329. {
  330. SDL_AUDIO_STOPPED = 0,
  331. SDL_AUDIO_PLAYING,
  332. SDL_AUDIO_PAUSED
  333. } SDL_AudioStatus;
  334. extern DECLSPEC SDL_AudioStatus SDLCALL SDL_GetAudioStatus(void);
  335. extern DECLSPEC SDL_AudioStatus SDLCALL
  336. SDL_GetAudioDeviceStatus(SDL_AudioDeviceID dev);
  337. /* @} *//* Audio State */
  338. /**
  339. * \name Pause audio functions
  340. *
  341. * These functions pause and unpause the audio callback processing.
  342. * They should be called with a parameter of 0 after opening the audio
  343. * device to start playing sound. This is so you can safely initialize
  344. * data for your callback function after opening the audio device.
  345. * Silence will be written to the audio device during the pause.
  346. */
  347. /* @{ */
  348. extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on);
  349. extern DECLSPEC void SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID dev,
  350. int pause_on);
  351. /* @} *//* Pause audio functions */
  352. /**
  353. * This function loads a WAVE from the data source, automatically freeing
  354. * that source if \c freesrc is non-zero. For example, to load a WAVE file,
  355. * you could do:
  356. * \code
  357. * SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...);
  358. * \endcode
  359. *
  360. * If this function succeeds, it returns the given SDL_AudioSpec,
  361. * filled with the audio data format of the wave data, and sets
  362. * \c *audio_buf to a malloc()'d buffer containing the audio data,
  363. * and sets \c *audio_len to the length of that audio buffer, in bytes.
  364. * You need to free the audio buffer with SDL_FreeWAV() when you are
  365. * done with it.
  366. *
  367. * This function returns NULL and sets the SDL error message if the
  368. * wave file cannot be opened, uses an unknown data format, or is
  369. * corrupt. Currently raw and MS-ADPCM WAVE files are supported.
  370. */
  371. extern DECLSPEC SDL_AudioSpec *SDLCALL SDL_LoadWAV_RW(SDL_RWops * src,
  372. int freesrc,
  373. SDL_AudioSpec * spec,
  374. Uint8 ** audio_buf,
  375. Uint32 * audio_len);
  376. /**
  377. * Loads a WAV from a file.
  378. * Compatibility convenience function.
  379. */
  380. #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \
  381. SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
  382. /**
  383. * This function frees data previously allocated with SDL_LoadWAV_RW()
  384. */
  385. extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 * audio_buf);
  386. /**
  387. * This function takes a source format and rate and a destination format
  388. * and rate, and initializes the \c cvt structure with information needed
  389. * by SDL_ConvertAudio() to convert a buffer of audio data from one format
  390. * to the other.
  391. *
  392. * \return -1 if the format conversion is not supported, 0 if there's
  393. * no conversion needed, or 1 if the audio filter is set up.
  394. */
  395. extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT * cvt,
  396. SDL_AudioFormat src_format,
  397. Uint8 src_channels,
  398. int src_rate,
  399. SDL_AudioFormat dst_format,
  400. Uint8 dst_channels,
  401. int dst_rate);
  402. /**
  403. * Once you have initialized the \c cvt structure using SDL_BuildAudioCVT(),
  404. * created an audio buffer \c cvt->buf, and filled it with \c cvt->len bytes of
  405. * audio data in the source format, this function will convert it in-place
  406. * to the desired format.
  407. *
  408. * The data conversion may expand the size of the audio data, so the buffer
  409. * \c cvt->buf should be allocated after the \c cvt structure is initialized by
  410. * SDL_BuildAudioCVT(), and should be \c cvt->len*cvt->len_mult bytes long.
  411. */
  412. extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT * cvt);
  413. #define SDL_MIX_MAXVOLUME 128
  414. /**
  415. * This takes two audio buffers of the playing audio format and mixes
  416. * them, performing addition, volume adjustment, and overflow clipping.
  417. * The volume ranges from 0 - 128, and should be set to ::SDL_MIX_MAXVOLUME
  418. * for full audio volume. Note this does not change hardware volume.
  419. * This is provided for convenience -- you can mix your own audio data.
  420. */
  421. extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 * dst, const Uint8 * src,
  422. Uint32 len, int volume);
  423. /**
  424. * This works like SDL_MixAudio(), but you specify the audio format instead of
  425. * using the format of audio device 1. Thus it can be used when no audio
  426. * device is open at all.
  427. */
  428. extern DECLSPEC void SDLCALL SDL_MixAudioFormat(Uint8 * dst,
  429. const Uint8 * src,
  430. SDL_AudioFormat format,
  431. Uint32 len, int volume);
  432. /**
  433. * \name Audio lock functions
  434. *
  435. * The lock manipulated by these functions protects the callback function.
  436. * During a SDL_LockAudio()/SDL_UnlockAudio() pair, you can be guaranteed that
  437. * the callback function is not running. Do not call these from the callback
  438. * function or you will cause deadlock.
  439. */
  440. /* @{ */
  441. extern DECLSPEC void SDLCALL SDL_LockAudio(void);
  442. extern DECLSPEC void SDLCALL SDL_LockAudioDevice(SDL_AudioDeviceID dev);
  443. extern DECLSPEC void SDLCALL SDL_UnlockAudio(void);
  444. extern DECLSPEC void SDLCALL SDL_UnlockAudioDevice(SDL_AudioDeviceID dev);
  445. /* @} *//* Audio lock functions */
  446. /**
  447. * This function shuts down audio processing and closes the audio device.
  448. */
  449. extern DECLSPEC void SDLCALL SDL_CloseAudio(void);
  450. extern DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID dev);
  451. /* Ends C function definitions when using C++ */
  452. #ifdef __cplusplus
  453. }
  454. #endif
  455. #include "close_code.h"
  456. #endif /* _SDL_audio_h */
  457. /* vi: set ts=4 sw=4 expandtab: */