mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-02-02 02:51:09 +00:00
docs: move ring buffer docs to work around doxygen limitation
closes #113
This commit is contained in:
parent
25baedb4c3
commit
32ae2a739b
|
@ -1175,11 +1175,12 @@ SOUNDIO_EXPORT int soundio_instream_get_latency(struct SoundIoInStream *instream
|
|||
double *out_latency);
|
||||
|
||||
|
||||
struct SoundIoRingBuffer;
|
||||
|
||||
/// A ring buffer is a single-reader single-writer lock-free fixed-size queue.
|
||||
/// libsoundio ring buffers use memory mapping techniques to enable a
|
||||
/// contiguous buffer when reading or writing across the boundary of the ring
|
||||
/// buffer's capacity.
|
||||
struct SoundIoRingBuffer;
|
||||
/// `requested_capacity` in bytes.
|
||||
/// Returns `NULL` if and only if memory could not be allocated.
|
||||
/// Use ::soundio_ring_buffer_capacity to get the actual capacity, which might
|
||||
|
|
Loading…
Reference in a new issue