Searched refs:fifo (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/services/oboeservice/
H A DAAudioServiceEndpointCapture.cpp94 FifoBuffer *fifo = streamShared->getAudioDataFifoBuffer_l(); local
95 if (fifo != nullptr) {
99 clientFramesWritten = fifo->getWriteCounter();
105 if (fifo->getFifoControllerBase()->getEmptyFramesAvailable() <
109 fifo->write(mDistributionBuffer, getFramesPerBurst());
111 clientFramesWritten = fifo->getWriteCounter();
H A DAAudioMixer.h23 #include <fifo/FifoBuffer.h>
37 * @param fifo to read from
41 int32_t mix(int streamIndex, android::FifoBuffer *fifo, bool allowUnderflow);
H A DAAudioServiceEndpointPlay.cpp105 FifoBuffer *fifo = streamShared->getAudioDataFifoBuffer_l(); local
106 if (fifo != nullptr) {
110 clientFramesRead = fifo->getReadCounter();
115 int32_t framesMixed = mMixer.mix(index, fifo, allowUnderflow);
129 clientFramesRead = fifo->getReadCounter();
H A DAAudioMixer.cpp52 int32_t AAudioMixer::mix(int streamIndex, FifoBuffer *fifo, bool allowUnderflow) { argument
61 fifo_frames_t fullFrames = fifo->getFullDataAvailable(&wrappingBuffer);
102 fifo->getFifoControllerBase()->advanceReadIndex(framesDesired);
H A DAAudioServiceStreamShared.cpp62 auto fifo = mAudioDataQueue->getFifoBuffer(); local
63 int32_t readCounter = fifo->getReadCounter();
64 int32_t writeCounter = fifo->getWriteCounter();
/frameworks/av/include/media/nbaio/
H A DPipe.h20 #include <audio_utils/fifo.h>
H A DMonoPipe.h21 #include <audio_utils/fifo.h>
/frameworks/av/media/libnbaio/include/media/nbaio/
H A DPipe.h20 #include <audio_utils/fifo.h>
/frameworks/av/media/libnbaio/include_mono/media/nbaio/
H A DMonoPipe.h21 #include <audio_utils/fifo.h>
/frameworks/wilhelm/tests/examples/
H A DslesTestFeedback.cpp30 #include <audio_utils/fifo.h>
64 static audio_utils_fifo *fifo; variable
370 fifo = new audio_utils_fifo(FIFO_FRAMES, frameSize, fifoBuffer);
371 fifoReader = new audio_utils_fifo_reader(*fifo, true /*throttlesWriter*/);
372 fifoWriter = new audio_utils_fifo_writer(*fifo);
595 delete fifo;
596 fifo = NULL;
/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.cpp31 #include <audio_utils/fifo.h>
50 static audio_utils_fifo *fifo; variable
524 fifo = new audio_utils_fifo(FIFO_FRAMES, sfframesize, fifoBuffer);
525 fifoReader = new audio_utils_fifo_reader(*fifo, true /*throttlesWriter*/);
526 fifoWriter = new audio_utils_fifo_writer(*fifo);
604 delete fifo;
605 fifo = NULL;
/frameworks/av/include/media/nblog/
H A DNBLog.h27 #include <audio_utils/fifo.h>
450 // get snapshot of readers fifo buffer, effectively consuming the buffer
/frameworks/av/media/libnblog/include/media/nblog/
H A DNBLog.h27 #include <audio_utils/fifo.h>
450 // get snapshot of readers fifo buffer, effectively consuming the buffer

Completed in 146 milliseconds