Home | History | Annotate | only in /frameworks/av/media/libaaudio/src/fifo
Up to higher level directory
NameDateSize
FifoBuffer.cpp22-Oct-20206.7K
FifoBuffer.h22-Oct-20203.9K
FifoController.h22-Oct-20201.8K
FifoControllerBase.cpp22-Oct-20202K
FifoControllerBase.h22-Oct-20203.5K
FifoControllerIndirect.h22-Oct-20202.3K
README.md22-Oct-2020516

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