Searched defs:capacityInFrames (Results 1 - 4 of 4) sorted by last modified time

/frameworks/av/services/oboeservice/
H A DSharedRingBuffer.cpp46 fifo_frames_t capacityInFrames) {
47 mCapacityInFrames = capacityInFrames;
50 mDataMemorySizeInBytes = bytesPerFrame * capacityInFrames;
84 mFifoBuffer = new FifoBuffer(bytesPerFrame, capacityInFrames,
45 allocate(fifo_frames_t bytesPerFrame, fifo_frames_t capacityInFrames) argument
/frameworks/av/media/libaaudio/src/binding/
H A DAAudioServiceDefinitions.h70 int32_t capacityInFrames; // zero if unused member in struct:aaudio::RingBufferDescriptor_s
77 // Set capacityInFrames to zero if Queue is unused.
H A DRingBufferParcelable.cpp74 void RingBufferParcelable::setCapacityInFrames(int32_t capacityInFrames) { argument
75 mCapacityInFrames = capacityInFrames;
149 descriptor->capacityInFrames = mCapacityInFrames;
/frameworks/av/media/libaaudio/src/fifo/
H A DFifoBuffer.cpp32 FifoBuffer::FifoBuffer(int32_t bytesPerFrame, fifo_frames_t capacityInFrames) argument
33 : mFrameCapacity(capacityInFrames)
41 mFifo = new FifoController(capacityInFrames, capacityInFrames);
43 int32_t bytesPerBuffer = bytesPerFrame * capacityInFrames;
46 ALOGD("FifoBuffer: capacityInFrames = %d, bytesPerFrame = %d",
47 capacityInFrames, bytesPerFrame);
51 fifo_frames_t capacityInFrames,
56 : mFrameCapacity(capacityInFrames)
63 mFifo = new FifoControllerIndirect(capacityInFrames,
50 FifoBuffer( int32_t bytesPerFrame, fifo_frames_t capacityInFrames, fifo_counter_t * readIndexAddress, fifo_counter_t * writeIndexAddress, void * dataStorageAddress ) argument
[all...]

Completed in 1731 milliseconds