Home | History | Annotate | only in /frameworks/av/media/libaaudio/src/fifo
Up to higher level directory
NameDateSize
FifoBuffer.cpp21-Aug-20187.4K
FifoBuffer.h21-Aug-20183.8K
FifoController.h21-Aug-20181.8K
FifoControllerBase.cpp21-Aug-20181.9K
FifoControllerBase.h21-Aug-20183.5K
FifoControllerIndirect.h21-Aug-20182.3K
README.md21-Aug-2018516

README.md

      1 Simple atomic FIFO for passing data between threads or processes.
      2 This does not require mutexes.
      3 
      4 One thread modifies the readCounter and the other thread modifies the writeCounter.
      5 
      6 TODO The internal low-level implementation might be merged in some form with audio_utils fifo
      7 and/or FMQ [after confirming that requirements are met].
      8 The higher-levels parts related to AAudio use of the FIFO such as API, fds, relative
      9 location of indices and data buffer, mapping, allocation of memmory will probably be kept as-is.
     10