blob: 030e57df1684d3207e6e55c8d06c04abadb4958e [file] [log] [blame]
/*
* Copyright 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdint.h>
#include <time.h>
#include <memory.h>
#include "common/OboeDebug.h"
#include "fifo/FifoControllerBase.h"
#include "fifo/FifoController.h"
#include "fifo/FifoControllerIndirect.h"
#include "fifo/FifoBuffer.h"
#include "common/AudioClock.h"
namespace oboe {
FifoBuffer::FifoBuffer(uint32_t bytesPerFrame, uint32_t capacityInFrames)
: mFrameCapacity(capacityInFrames)
, mBytesPerFrame(bytesPerFrame)
, mStorage(NULL)
, mReadAtNanoseconds(0)
, mFramesReadCount(0)
, mFramesUnderrunCount(0)
, mUnderrunCount(0)
{
mFifo = new FifoController(capacityInFrames, capacityInFrames);
// allocate buffer
int32_t bytesPerBuffer = bytesPerFrame * capacityInFrames;
mStorage = new uint8_t[bytesPerBuffer];
mStorageOwned = true;
LOGD("FifoProcessor: numFrames = %d, bytesPerFrame = %d", capacityInFrames, bytesPerFrame);
}
FifoBuffer::FifoBuffer( uint32_t bytesPerFrame,
uint32_t capacityInFrames,
int64_t * readIndexAddress,
int64_t * writeIndexAddress,
uint8_t * dataStorageAddress
)
: mFrameCapacity(capacityInFrames)
, mBytesPerFrame(bytesPerFrame)
, mStorage(dataStorageAddress)
, mReadAtNanoseconds(0)
, mFramesReadCount(0)
, mFramesUnderrunCount(0)
, mUnderrunCount(0)
{
mFifo = new FifoControllerIndirect(capacityInFrames,
capacityInFrames,
readIndexAddress,
writeIndexAddress);
mStorage = dataStorageAddress;
mStorageOwned = false;
LOGD("FifoProcessor: capacityInFrames = %d, bytesPerFrame = %d", capacityInFrames, bytesPerFrame);
}
FifoBuffer::~FifoBuffer() {
if (mStorageOwned) {
delete[] mStorage;
}
delete mFifo;
}
int32_t FifoBuffer::convertFramesToBytes(int32_t frames) {
return frames * mBytesPerFrame;
}
int32_t FifoBuffer::read(void *buffer, int32_t numFrames) {
size_t numBytes;
int32_t framesAvailable = mFifo->getFullFramesAvailable();
int32_t framesToRead = numFrames;
// Is there enough data in the FIFO
if (framesToRead > framesAvailable) {
framesToRead = framesAvailable;
}
if (framesToRead == 0) {
return 0;
}
uint32_t readIndex = mFifo->getReadIndex();
uint8_t *destination = (uint8_t *) buffer;
uint8_t *source = &mStorage[convertFramesToBytes(readIndex)];
if ((readIndex + framesToRead) > mFrameCapacity) {
// read in two parts, first part here
uint32_t frames1 = mFrameCapacity - readIndex;
uint32_t numBytes = convertFramesToBytes(frames1);
memcpy(destination, source, numBytes);
destination += numBytes;
// read second part
source = &mStorage[0];
int frames2 = framesToRead - frames1;
numBytes = convertFramesToBytes(frames2);
memcpy(destination, source, numBytes);
} else {
// just read in one shot
numBytes = convertFramesToBytes(framesToRead);
memcpy(destination, source, numBytes);
}
mFifo->advanceReadIndex(framesToRead);
return framesToRead;
}
int32_t FifoBuffer::write(const void *buffer, int32_t framesToWrite) {
int32_t framesAvailable = mFifo->getEmptyFramesAvailable();
// LOGD("FifoBuffer::write() framesToWrite = %d, framesAvailable = %d",
// framesToWrite, framesAvailable);
if (framesToWrite > framesAvailable) {
framesToWrite = framesAvailable;
}
if (framesToWrite <= 0) {
return 0;
}
size_t numBytes;
uint32_t writeIndex = mFifo->getWriteIndex();
int byteIndex = convertFramesToBytes(writeIndex);
const uint8_t *source = (const uint8_t *) buffer;
uint8_t *destination = &mStorage[byteIndex];
if ((writeIndex + framesToWrite) > mFrameCapacity) {
// write in two parts, first part here
int frames1 = mFrameCapacity - writeIndex;
numBytes = convertFramesToBytes(frames1);
memcpy(destination, source, numBytes);
// LOGD("FifoBuffer::write(%p to %p, numBytes = %d", source, destination, numBytes);
// read second part
source += convertFramesToBytes(frames1);
destination = &mStorage[0];
int framesLeft = framesToWrite - frames1;
numBytes = convertFramesToBytes(framesLeft);
// LOGD("FifoBuffer::write(%p to %p, numBytes = %d", source, destination, numBytes);
memcpy(destination, source, numBytes);
} else {
// just write in one shot
numBytes = convertFramesToBytes(framesToWrite);
// LOGD("FifoBuffer::write(%p to %p, numBytes = %d", source, destination, numBytes);
memcpy(destination, source, numBytes);
}
mFifo->advanceWriteIndex(framesToWrite);
return framesToWrite;
}
int32_t FifoBuffer::readNow(void *buffer, int32_t numFrames) {
mLastReadSize = numFrames;
int32_t framesLeft = numFrames;
int32_t framesRead = read(buffer, numFrames);
framesLeft -= framesRead;
mFramesReadCount += framesRead;
mFramesUnderrunCount += framesLeft;
// Zero out any samples we could not set.
if (framesLeft > 0) {
mUnderrunCount++;
int32_t bytesToZero = convertFramesToBytes(framesLeft);
memset(buffer, 0, bytesToZero);
}
mReadAtNanoseconds = AudioClock::getNanoseconds();
return framesRead;
}
int64_t FifoBuffer::getNextReadTime(int frameRate) {
if (mReadAtNanoseconds == 0) {
return 0;
}
int64_t nanosPerBuffer = (kNanosPerSecond * mLastReadSize) / frameRate;
return mReadAtNanoseconds + nanosPerBuffer;
}
uint32_t FifoBuffer::getThresholdFrames() const {
return mFifo->getThreshold();
}
uint32_t FifoBuffer::getBufferCapacityInFrames() const {
return mFifo->getFrameCapacity();
}
void FifoBuffer::setThresholdFrames(uint32_t threshold) {
mFifo->setThreshold(threshold);
}
} // namespace oboe