2012-04-29 20:11:19 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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 "AudioSegment.h"
|
|
|
|
|
2012-10-25 03:09:40 -07:00
|
|
|
#include "nsAudioStream.h"
|
|
|
|
|
2012-04-29 20:11:19 -07:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
template <class SrcT, class DestT>
|
|
|
|
static void
|
2012-08-22 08:56:38 -07:00
|
|
|
InterleaveAndConvertBuffer(const SrcT* aSource, int32_t aSourceLength,
|
|
|
|
int32_t aLength,
|
2012-04-29 20:11:19 -07:00
|
|
|
float aVolume,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aChannels,
|
2012-04-29 20:11:19 -07:00
|
|
|
DestT* aOutput)
|
|
|
|
{
|
|
|
|
DestT* output = aOutput;
|
2012-08-22 08:56:38 -07:00
|
|
|
for (int32_t i = 0; i < aLength; ++i) {
|
|
|
|
for (int32_t channel = 0; channel < aChannels; ++channel) {
|
2012-10-25 03:09:40 -07:00
|
|
|
float v = AudioSampleToFloat(aSource[channel*aSourceLength + i])*aVolume;
|
|
|
|
*output = FloatToAudioSample<DestT>(v);
|
2012-04-29 20:11:19 -07:00
|
|
|
++output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-08-22 08:56:38 -07:00
|
|
|
InterleaveAndConvertBuffer(const int16_t* aSource, int32_t aSourceLength,
|
|
|
|
int32_t aLength,
|
2012-04-29 20:11:19 -07:00
|
|
|
float aVolume,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aChannels,
|
|
|
|
int16_t* aOutput)
|
2012-04-29 20:11:19 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int16_t* output = aOutput;
|
2012-04-29 20:11:19 -07:00
|
|
|
float v = NS_MAX(NS_MIN(aVolume, 1.0f), -1.0f);
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t volume = int32_t((1 << 16) * v);
|
|
|
|
for (int32_t i = 0; i < aLength; ++i) {
|
|
|
|
for (int32_t channel = 0; channel < aChannels; ++channel) {
|
2012-09-01 08:35:56 -07:00
|
|
|
int16_t s = aSource[channel*aSourceLength + i];
|
|
|
|
*output = int16_t((int32_t(s) * volume) >> 16);
|
2012-04-29 20:11:19 -07:00
|
|
|
++output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class SrcT>
|
|
|
|
static void
|
2012-08-22 08:56:38 -07:00
|
|
|
InterleaveAndConvertBuffer(const SrcT* aSource, int32_t aSourceLength,
|
|
|
|
int32_t aLength,
|
2012-04-29 20:11:19 -07:00
|
|
|
float aVolume,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aChannels,
|
2012-10-25 03:09:40 -07:00
|
|
|
void* aOutput, AudioSampleFormat aOutputFormat)
|
2012-04-29 20:11:19 -07:00
|
|
|
{
|
|
|
|
switch (aOutputFormat) {
|
2012-10-25 03:09:40 -07:00
|
|
|
case AUDIO_FORMAT_FLOAT32:
|
2012-04-29 20:11:19 -07:00
|
|
|
InterleaveAndConvertBuffer(aSource, aSourceLength, aLength, aVolume,
|
|
|
|
aChannels, static_cast<float*>(aOutput));
|
|
|
|
break;
|
2012-10-25 03:09:40 -07:00
|
|
|
case AUDIO_FORMAT_S16:
|
2012-04-29 20:11:19 -07:00
|
|
|
InterleaveAndConvertBuffer(aSource, aSourceLength, aLength, aVolume,
|
2012-08-22 08:56:38 -07:00
|
|
|
aChannels, static_cast<int16_t*>(aOutput));
|
2012-04-29 20:11:19 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-10-25 03:09:40 -07:00
|
|
|
InterleaveAndConvertBuffer(const void* aSource, AudioSampleFormat aSourceFormat,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aSourceLength,
|
|
|
|
int32_t aOffset, int32_t aLength,
|
2012-04-29 20:11:19 -07:00
|
|
|
float aVolume,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aChannels,
|
2012-10-25 03:09:40 -07:00
|
|
|
void* aOutput, AudioSampleFormat aOutputFormat)
|
2012-04-29 20:11:19 -07:00
|
|
|
{
|
|
|
|
switch (aSourceFormat) {
|
2012-10-25 03:09:40 -07:00
|
|
|
case AUDIO_FORMAT_FLOAT32:
|
2012-04-29 20:11:19 -07:00
|
|
|
InterleaveAndConvertBuffer(static_cast<const float*>(aSource) + aOffset, aSourceLength,
|
|
|
|
aLength,
|
|
|
|
aVolume,
|
|
|
|
aChannels,
|
|
|
|
aOutput, aOutputFormat);
|
|
|
|
break;
|
2012-10-25 03:09:40 -07:00
|
|
|
case AUDIO_FORMAT_S16:
|
2012-08-22 08:56:38 -07:00
|
|
|
InterleaveAndConvertBuffer(static_cast<const int16_t*>(aSource) + aOffset, aSourceLength,
|
2012-04-29 20:11:19 -07:00
|
|
|
aLength,
|
|
|
|
aVolume,
|
|
|
|
aChannels,
|
|
|
|
aOutput, aOutputFormat);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioSegment::ApplyVolume(float aVolume)
|
|
|
|
{
|
|
|
|
for (ChunkIterator ci(*this); !ci.IsEnded(); ci.Next()) {
|
|
|
|
ci->mVolume *= aVolume;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const int STATIC_AUDIO_BUFFER_BYTES = 50000;
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioSegment::WriteTo(nsAudioStream* aOutput)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mChannels == aOutput->GetChannels(), "Wrong number of channels");
|
2012-08-22 08:56:38 -07:00
|
|
|
nsAutoTArray<uint8_t,STATIC_AUDIO_BUFFER_BYTES> buf;
|
2012-10-25 03:09:40 -07:00
|
|
|
uint32_t frameSize = GetSampleSize(AUDIO_OUTPUT_FORMAT)*mChannels;
|
2012-04-29 20:11:19 -07:00
|
|
|
for (ChunkIterator ci(*this); !ci.IsEnded(); ci.Next()) {
|
|
|
|
AudioChunk& c = *ci;
|
2012-09-27 23:57:33 -07:00
|
|
|
if (frameSize*c.mDuration > UINT32_MAX) {
|
2012-04-29 20:11:19 -07:00
|
|
|
NS_ERROR("Buffer overflow");
|
|
|
|
return;
|
|
|
|
}
|
2012-08-22 08:56:38 -07:00
|
|
|
buf.SetLength(int32_t(frameSize*c.mDuration));
|
2012-04-29 20:11:19 -07:00
|
|
|
if (c.mBuffer) {
|
|
|
|
InterleaveAndConvertBuffer(c.mBuffer->Data(), c.mBufferFormat, c.mBufferLength,
|
2012-08-22 08:56:38 -07:00
|
|
|
c.mOffset, int32_t(c.mDuration),
|
2012-04-29 20:11:19 -07:00
|
|
|
c.mVolume,
|
|
|
|
aOutput->GetChannels(),
|
2012-10-25 03:09:40 -07:00
|
|
|
buf.Elements(), AUDIO_OUTPUT_FORMAT);
|
2012-04-29 20:11:19 -07:00
|
|
|
} else {
|
|
|
|
// Assumes that a bit pattern of zeroes == 0.0f
|
|
|
|
memset(buf.Elements(), 0, buf.Length());
|
|
|
|
}
|
2012-08-22 08:56:38 -07:00
|
|
|
aOutput->Write(buf.Elements(), int32_t(c.mDuration));
|
2012-04-29 20:11:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|