summaryrefslogtreecommitdiffstats
path: root/media/libnbaio/README.txt
blob: 8d74ab2c8f956a112929d46d111badbbd15125e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
libnbaio (for "Non-Blocking Audio I/O") was originally intended to
be a purely non-blocking API.  It has evolved to now include
a few blocking implementations of the interface.

Note: as used here, "short transfer count" means the return value for
read() or write() that indicates the actual number of successfully
transferred frames is less than the requested number of frames.

Pipe
----
supports 1 writer and N readers

no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads

writes:
  non-blocking
  never return a short transfer count
  overwrite data if not consumed quickly enough

reads:
  non-blocking
  return a short transfer count if not enough data
  will lose data if reader doesn't keep up

MonoPipe
--------
supports 1 writer and 1 reader

no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads

write are optionally blocking:
  if configured to block, then will wait until space available before returning
  if configured to not block, then will return a short transfer count
    and will never overwrite data

reads:
  non-blocking
  return a short transfer count if not enough data
  never lose data