2012-09-18 16:07:33 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "AudioBufferSourceNode.h"
|
|
|
|
#include "mozilla/dom/AudioBufferSourceNodeBinding.h"
|
2013-02-04 15:07:25 -08:00
|
|
|
#include "nsMathUtils.h"
|
|
|
|
#include "AudioNodeEngine.h"
|
|
|
|
#include "AudioNodeStream.h"
|
2012-09-18 16:07:33 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2012-09-24 20:31:58 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED_1(AudioBufferSourceNode, AudioSourceNode, mBuffer)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(AudioBufferSourceNode)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(AudioSourceNode)
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(AudioBufferSourceNode, AudioSourceNode)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(AudioBufferSourceNode, AudioSourceNode)
|
2012-09-18 16:07:33 -07:00
|
|
|
|
2013-02-04 15:07:25 -08:00
|
|
|
class AudioBufferSourceNodeEngine : public AudioNodeEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AudioBufferSourceNodeEngine() :
|
2013-03-10 10:59:41 -07:00
|
|
|
mStart(0), mStop(TRACK_TICKS_MAX),
|
|
|
|
mOffset(0), mDuration(0),
|
|
|
|
mLoop(false), mLoopStart(0), mLoopEnd(0)
|
|
|
|
{}
|
2013-02-04 15:07:25 -08:00
|
|
|
|
|
|
|
// START, OFFSET and DURATION are always set by start() (along with setting
|
|
|
|
// mBuffer to something non-null).
|
|
|
|
// STOP is set by stop().
|
|
|
|
enum Parameters {
|
|
|
|
START,
|
|
|
|
STOP,
|
|
|
|
OFFSET,
|
2013-03-10 10:59:41 -07:00
|
|
|
DURATION,
|
|
|
|
LOOP,
|
|
|
|
LOOPSTART,
|
|
|
|
LOOPEND
|
2013-02-04 15:07:25 -08:00
|
|
|
};
|
|
|
|
virtual void SetStreamTimeParameter(uint32_t aIndex, TrackTicks aParam)
|
|
|
|
{
|
|
|
|
switch (aIndex) {
|
|
|
|
case START: mStart = aParam; break;
|
|
|
|
case STOP: mStop = aParam; break;
|
|
|
|
default:
|
|
|
|
NS_ERROR("Bad AudioBufferSourceNodeEngine StreamTimeParameter");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual void SetInt32Parameter(uint32_t aIndex, int32_t aParam)
|
|
|
|
{
|
|
|
|
switch (aIndex) {
|
|
|
|
case OFFSET: mOffset = aParam; break;
|
|
|
|
case DURATION: mDuration = aParam; break;
|
2013-03-10 10:59:41 -07:00
|
|
|
case LOOP: mLoop = !!aParam; break;
|
|
|
|
case LOOPSTART: mLoopStart = aParam; break;
|
|
|
|
case LOOPEND: mLoopEnd = aParam; break;
|
2013-02-04 15:07:25 -08:00
|
|
|
default:
|
|
|
|
NS_ERROR("Bad AudioBufferSourceNodeEngine Int32Parameter");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual void SetBuffer(already_AddRefed<ThreadSharedFloatArrayBufferList> aBuffer)
|
|
|
|
{
|
|
|
|
mBuffer = aBuffer;
|
|
|
|
}
|
|
|
|
|
2013-03-10 18:02:22 -07:00
|
|
|
// Borrow a full buffer of size WEBAUDIO_BLOCK_SIZE from the source buffer
|
|
|
|
// at offset aSourceOffset. This avoids copying memory.
|
2013-03-10 15:38:57 -07:00
|
|
|
void BorrowFromInputBuffer(AudioChunk* aOutput,
|
|
|
|
uint32_t aChannels,
|
2013-03-10 18:02:22 -07:00
|
|
|
uintptr_t aSourceOffset)
|
2013-03-10 15:38:57 -07:00
|
|
|
{
|
|
|
|
aOutput->mDuration = WEBAUDIO_BLOCK_SIZE;
|
|
|
|
aOutput->mBuffer = mBuffer;
|
|
|
|
aOutput->mChannelData.SetLength(aChannels);
|
|
|
|
for (uint32_t i = 0; i < aChannels; ++i) {
|
2013-03-10 18:02:22 -07:00
|
|
|
aOutput->mChannelData[i] = mBuffer->GetData(i) + aSourceOffset;
|
2013-03-10 15:38:57 -07:00
|
|
|
}
|
|
|
|
aOutput->mVolume = 1.0f;
|
|
|
|
aOutput->mBufferFormat = AUDIO_FORMAT_FLOAT32;
|
|
|
|
}
|
|
|
|
|
2013-03-10 18:02:22 -07:00
|
|
|
// Copy aNumberOfFrames frames from the source buffer at offset aSourceOffset
|
|
|
|
// and put it at offset aBufferOffset in the destination buffer.
|
|
|
|
void CopyFromInputBuffer(AudioChunk* aOutput,
|
|
|
|
uint32_t aChannels,
|
|
|
|
uintptr_t aSourceOffset,
|
|
|
|
uintptr_t aBufferOffset,
|
|
|
|
uint32_t aNumberOfFrames) {
|
|
|
|
for (uint32_t i = 0; i < aChannels; ++i) {
|
|
|
|
float* baseChannelData = static_cast<float*>(const_cast<void*>(aOutput->mChannelData[i]));
|
|
|
|
memcpy(baseChannelData + aBufferOffset,
|
|
|
|
mBuffer->GetData(i) + aSourceOffset,
|
|
|
|
aNumberOfFrames * sizeof(float));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill aOutput with as many zero frames as we can, and advance
|
|
|
|
* aOffsetWithinBlock and aCurrentPosition based on how many frames we write.
|
|
|
|
* This will never advance aOffsetWithinBlock past WEBAUDIO_BLOCK_SIZE or
|
|
|
|
* aCurrentPosition past aMaxPos. This function knows when it needs to
|
|
|
|
* allocate the output buffer, and also optimizes the case where it can avoid
|
|
|
|
* memory allocations.
|
|
|
|
*/
|
|
|
|
void FillWithZeroes(AudioChunk* aOutput,
|
|
|
|
uint32_t aChannels,
|
|
|
|
uint32_t* aOffsetWithinBlock,
|
|
|
|
TrackTicks* aCurrentPosition,
|
|
|
|
TrackTicks aMaxPos)
|
|
|
|
{
|
|
|
|
uint32_t numFrames = std::min(WEBAUDIO_BLOCK_SIZE - *aOffsetWithinBlock,
|
|
|
|
uint32_t(aMaxPos - *aCurrentPosition));
|
|
|
|
if (numFrames == WEBAUDIO_BLOCK_SIZE) {
|
|
|
|
aOutput->SetNull(numFrames);
|
|
|
|
} else {
|
|
|
|
if (aOutput->IsNull()) {
|
|
|
|
AllocateAudioBlock(aChannels, aOutput);
|
|
|
|
}
|
|
|
|
WriteZeroesToAudioBlock(aOutput, *aOffsetWithinBlock, numFrames);
|
|
|
|
}
|
|
|
|
*aOffsetWithinBlock += numFrames;
|
|
|
|
*aCurrentPosition += numFrames;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy as many frames as possible from the source buffer to aOutput, and
|
|
|
|
* advance aOffsetWithinBlock and aCurrentPosition based on how many frames
|
|
|
|
* we copy. This will never advance aOffsetWithinBlock past
|
|
|
|
* WEBAUDIO_BLOCK_SIZE, or aCurrentPosition past mStop. It takes data from
|
|
|
|
* the buffer at aBufferOffset, and never takes more data than aBufferMax.
|
|
|
|
* This function knows when it needs to allocate the output buffer, and also
|
|
|
|
* optimizes the case where it can avoid memory allocations.
|
|
|
|
*/
|
|
|
|
void CopyFromBuffer(AudioChunk* aOutput,
|
|
|
|
uint32_t aChannels,
|
|
|
|
uint32_t* aOffsetWithinBlock,
|
|
|
|
TrackTicks* aCurrentPosition,
|
|
|
|
uint32_t aBufferOffset,
|
|
|
|
uint32_t aBufferMax)
|
|
|
|
{
|
|
|
|
uint32_t numFrames = std::min(std::min(WEBAUDIO_BLOCK_SIZE - *aOffsetWithinBlock,
|
|
|
|
aBufferMax - aBufferOffset),
|
|
|
|
uint32_t(mStop - *aCurrentPosition));
|
|
|
|
if (numFrames == WEBAUDIO_BLOCK_SIZE) {
|
|
|
|
BorrowFromInputBuffer(aOutput, aChannels, aBufferOffset);
|
|
|
|
} else {
|
|
|
|
if (aOutput->IsNull()) {
|
|
|
|
AllocateAudioBlock(aChannels, aOutput);
|
|
|
|
}
|
|
|
|
CopyFromInputBuffer(aOutput, aChannels, aBufferOffset, *aOffsetWithinBlock, numFrames);
|
|
|
|
}
|
|
|
|
*aOffsetWithinBlock += numFrames;
|
|
|
|
*aCurrentPosition += numFrames;
|
|
|
|
}
|
|
|
|
|
2013-02-04 15:07:25 -08:00
|
|
|
virtual void ProduceAudioBlock(AudioNodeStream* aStream,
|
|
|
|
const AudioChunk& aInput,
|
|
|
|
AudioChunk* aOutput,
|
|
|
|
bool* aFinished)
|
|
|
|
{
|
|
|
|
if (!mBuffer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint32_t channels = mBuffer->GetChannels();
|
|
|
|
if (!channels) {
|
|
|
|
aOutput->SetNull(WEBAUDIO_BLOCK_SIZE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-10 18:02:22 -07:00
|
|
|
uint32_t written = 0;
|
|
|
|
TrackTicks currentPosition = aStream->GetCurrentPosition();
|
|
|
|
while (written < WEBAUDIO_BLOCK_SIZE) {
|
|
|
|
if (mStop != TRACK_TICKS_MAX &&
|
|
|
|
currentPosition >= mStop) {
|
|
|
|
FillWithZeroes(aOutput, channels, &written, ¤tPosition, TRACK_TICKS_MAX);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (currentPosition < mStart) {
|
|
|
|
FillWithZeroes(aOutput, channels, &written, ¤tPosition, mStart);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
TrackTicks t = currentPosition - mStart;
|
|
|
|
if (mLoop) {
|
|
|
|
if (mOffset + t < mLoopEnd) {
|
|
|
|
CopyFromBuffer(aOutput, channels, &written, ¤tPosition, mOffset + t, mLoopEnd);
|
|
|
|
} else {
|
|
|
|
uint32_t offsetInLoop = (mOffset + t - mLoopEnd) % (mLoopEnd - mLoopStart);
|
|
|
|
CopyFromBuffer(aOutput, channels, &written, ¤tPosition, mLoopStart + offsetInLoop, mLoopEnd);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (mOffset + t < mDuration) {
|
|
|
|
CopyFromBuffer(aOutput, channels, &written, ¤tPosition, mOffset + t, mDuration);
|
|
|
|
} else {
|
|
|
|
FillWithZeroes(aOutput, channels, &written, ¤tPosition, TRACK_TICKS_MAX);
|
|
|
|
}
|
|
|
|
}
|
2013-02-04 15:07:25 -08:00
|
|
|
}
|
|
|
|
|
2013-03-10 18:02:22 -07:00
|
|
|
// We've finished if we've gone past mStop, or if we're past mDuration when
|
|
|
|
// looping is disabled.
|
|
|
|
if (currentPosition >= mStop ||
|
|
|
|
(!mLoop && currentPosition - mStart + mOffset > mDuration)) {
|
|
|
|
*aFinished = true;
|
2013-02-04 15:07:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TrackTicks mStart;
|
|
|
|
TrackTicks mStop;
|
|
|
|
nsRefPtr<ThreadSharedFloatArrayBufferList> mBuffer;
|
|
|
|
int32_t mOffset;
|
|
|
|
int32_t mDuration;
|
2013-03-10 10:59:41 -07:00
|
|
|
bool mLoop;
|
|
|
|
int32_t mLoopStart;
|
|
|
|
int32_t mLoopEnd;
|
2013-02-04 15:07:25 -08:00
|
|
|
};
|
|
|
|
|
2012-09-18 16:07:33 -07:00
|
|
|
AudioBufferSourceNode::AudioBufferSourceNode(AudioContext* aContext)
|
|
|
|
: AudioSourceNode(aContext)
|
2013-03-10 09:56:14 -07:00
|
|
|
, mLoopStart(0.0)
|
|
|
|
, mLoopEnd(0.0)
|
|
|
|
, mLoop(false)
|
2013-02-04 15:07:25 -08:00
|
|
|
, mStartCalled(false)
|
|
|
|
{
|
|
|
|
SetProduceOwnOutput(true);
|
2013-03-17 17:37:47 -07:00
|
|
|
mStream = aContext->Graph()->CreateAudioNodeStream(new AudioBufferSourceNodeEngine(),
|
|
|
|
MediaStreamGraph::INTERNAL_STREAM);
|
2013-02-04 15:07:25 -08:00
|
|
|
mStream->AddMainThreadListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioBufferSourceNode::~AudioBufferSourceNode()
|
2012-09-18 16:07:33 -07:00
|
|
|
{
|
2013-02-04 15:07:25 -08:00
|
|
|
DestroyMediaStream();
|
2012-09-18 16:07:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
2013-01-23 16:50:18 -08:00
|
|
|
AudioBufferSourceNode::WrapObject(JSContext* aCx, JSObject* aScope)
|
2012-09-18 16:07:33 -07:00
|
|
|
{
|
2013-01-23 16:50:18 -08:00
|
|
|
return AudioBufferSourceNodeBinding::Wrap(aCx, aScope, this);
|
2012-09-18 16:07:33 -07:00
|
|
|
}
|
|
|
|
|
2012-09-24 20:31:58 -07:00
|
|
|
void
|
2013-02-04 15:07:25 -08:00
|
|
|
AudioBufferSourceNode::Start(JSContext* aCx, double aWhen, double aOffset,
|
|
|
|
const Optional<double>& aDuration, ErrorResult& aRv)
|
2012-09-24 20:31:58 -07:00
|
|
|
{
|
2013-02-04 15:07:25 -08:00
|
|
|
if (mStartCalled) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mStartCalled = true;
|
|
|
|
|
|
|
|
AudioNodeStream* ns = static_cast<AudioNodeStream*>(mStream.get());
|
|
|
|
if (!mBuffer || !ns) {
|
|
|
|
// Nothing to play, or we're already dead for some reason
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t rate = Context()->GetRate();
|
|
|
|
uint32_t lengthSamples;
|
|
|
|
nsRefPtr<ThreadSharedFloatArrayBufferList> data =
|
|
|
|
mBuffer->GetThreadSharedChannelsForRate(aCx, rate, &lengthSamples);
|
|
|
|
double length = double(lengthSamples)/rate;
|
|
|
|
double offset = std::max(0.0, aOffset);
|
|
|
|
double endOffset = aDuration.WasPassed() ?
|
|
|
|
std::min(aOffset + aDuration.Value(), length) : length;
|
|
|
|
if (offset >= endOffset) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-10 11:11:12 -07:00
|
|
|
// Don't compute and set the loop parameters unnecessarily
|
|
|
|
if (mLoop) {
|
|
|
|
double actualLoopStart, actualLoopEnd;
|
|
|
|
if (((mLoopStart != 0.0) || (mLoopEnd != 0.0)) &&
|
|
|
|
mLoopStart >= 0.0 && mLoopEnd > 0.0 &&
|
|
|
|
mLoopStart < mLoopEnd) {
|
|
|
|
actualLoopStart = (mLoopStart > length) ? 0.0 : mLoopStart;
|
|
|
|
actualLoopEnd = std::min(mLoopEnd, length);
|
|
|
|
} else {
|
|
|
|
actualLoopStart = 0.0;
|
|
|
|
actualLoopEnd = length;
|
|
|
|
}
|
|
|
|
int32_t loopStartTicks = NS_lround(actualLoopStart * rate);
|
|
|
|
int32_t loopEndTicks = NS_lround(actualLoopEnd * rate);
|
|
|
|
ns->SetInt32Parameter(AudioBufferSourceNodeEngine::LOOP, 1);
|
|
|
|
ns->SetInt32Parameter(AudioBufferSourceNodeEngine::LOOPSTART, loopStartTicks);
|
|
|
|
ns->SetInt32Parameter(AudioBufferSourceNodeEngine::LOOPEND, loopEndTicks);
|
|
|
|
}
|
|
|
|
|
2013-02-04 15:07:25 -08:00
|
|
|
ns->SetBuffer(data.forget());
|
|
|
|
// Don't set parameter unnecessarily
|
|
|
|
if (aWhen > 0.0) {
|
|
|
|
ns->SetStreamTimeParameter(AudioBufferSourceNodeEngine::START,
|
|
|
|
Context()->DestinationStream(),
|
|
|
|
aWhen);
|
|
|
|
}
|
|
|
|
int32_t offsetTicks = NS_lround(offset*rate);
|
|
|
|
// Don't set parameter unnecessarily
|
|
|
|
if (offsetTicks > 0) {
|
|
|
|
ns->SetInt32Parameter(AudioBufferSourceNodeEngine::OFFSET, offsetTicks);
|
|
|
|
}
|
|
|
|
ns->SetInt32Parameter(AudioBufferSourceNodeEngine::DURATION,
|
|
|
|
NS_lround(endOffset*rate) - offsetTicks);
|
2012-09-24 20:31:58 -07:00
|
|
|
}
|
|
|
|
|
2013-02-04 15:07:25 -08:00
|
|
|
void
|
|
|
|
AudioBufferSourceNode::Stop(double aWhen, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
if (!mStartCalled) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioNodeStream* ns = static_cast<AudioNodeStream*>(mStream.get());
|
|
|
|
if (!ns) {
|
|
|
|
// We've already stopped and had our stream shut down
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ns->SetStreamTimeParameter(AudioBufferSourceNodeEngine::STOP,
|
|
|
|
Context()->DestinationStream(),
|
|
|
|
std::max(0.0, aWhen));
|
2012-09-18 16:07:33 -07:00
|
|
|
}
|
2013-02-04 15:07:25 -08:00
|
|
|
|
|
|
|
void
|
|
|
|
AudioBufferSourceNode::NotifyMainThreadStateChanged()
|
|
|
|
{
|
|
|
|
if (mStream->IsFinished()) {
|
|
|
|
SetProduceOwnOutput(false);
|
|
|
|
}
|
2012-09-18 16:07:33 -07:00
|
|
|
}
|
|
|
|
|
2013-02-04 15:07:25 -08:00
|
|
|
}
|
|
|
|
}
|