2012-09-22 02:42:14 +04: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 "AudioBuffer.h"
|
|
|
|
#include "mozilla/dom/AudioBufferBinding.h"
|
|
|
|
#include "jsfriendapi.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2013-02-05 03:07:25 +04:00
|
|
|
#include "AudioSegment.h"
|
2013-05-05 19:15:58 +04:00
|
|
|
#include "AudioChannelFormat.h"
|
|
|
|
#include "mozilla/PodOperations.h"
|
2013-09-28 04:11:26 +04:00
|
|
|
#include "mozilla/CheckedInt.h"
|
2016-04-01 14:36:41 +03:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-08-15 23:44:14 +04:00
|
|
|
#include "AudioNodeEngine.h"
|
2012-09-22 02:42:14 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-08-02 05:29:05 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(AudioBuffer)
|
|
|
|
|
2012-09-22 02:42:14 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(AudioBuffer)
|
2013-02-05 03:07:25 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mJSChannels)
|
2012-09-22 02:42:14 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
2013-01-26 01:21:22 +04:00
|
|
|
tmp->ClearJSChannels();
|
2012-09-22 02:42:14 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(AudioBuffer)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(AudioBuffer)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER
|
2013-02-05 03:07:25 +04:00
|
|
|
for (uint32_t i = 0; i < tmp->mJSChannels.Length(); ++i) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mJSChannels[i])
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2013-07-06 00:21:52 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(AudioBuffer, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(AudioBuffer, Release)
|
2012-09-22 02:42:14 +04:00
|
|
|
|
2016-04-01 14:36:41 +03:00
|
|
|
/**
|
|
|
|
* AudioBuffers can be shared between AudioContexts, so we need a separate
|
|
|
|
* mechanism to track their memory usage. This thread-safe class keeps track of
|
|
|
|
* all the AudioBuffers, and gets called back by the memory reporting system
|
|
|
|
* when a memory report is needed, reporting how much memory is used by the
|
|
|
|
* buffers backing AudioBuffer objects. */
|
|
|
|
class AudioBufferMemoryTracker : public nsIMemoryReporter
|
|
|
|
{
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSIMEMORYREPORTER
|
|
|
|
|
|
|
|
private:
|
|
|
|
AudioBufferMemoryTracker();
|
|
|
|
virtual ~AudioBufferMemoryTracker();
|
|
|
|
|
|
|
|
public:
|
|
|
|
/* Those methods can be called on any thread. */
|
|
|
|
static void RegisterAudioBuffer(const AudioBuffer* aAudioBuffer);
|
|
|
|
static void UnregisterAudioBuffer(const AudioBuffer* aAudioBuffer);
|
|
|
|
private:
|
|
|
|
static AudioBufferMemoryTracker* GetInstance();
|
|
|
|
/* Those methods must be called with the lock held. */
|
|
|
|
void RegisterAudioBufferInternal(const AudioBuffer* aAudioBuffer);
|
|
|
|
/* Returns the number of buffers still present in the hash table. */
|
|
|
|
uint32_t UnregisterAudioBufferInternal(const AudioBuffer* aAudioBuffer);
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
/* This protects all members of this class. */
|
|
|
|
static StaticMutex sMutex;
|
|
|
|
static StaticRefPtr<AudioBufferMemoryTracker> sSingleton;
|
|
|
|
nsTHashtable<nsPtrHashKey<const AudioBuffer>> mBuffers;
|
|
|
|
};
|
|
|
|
|
|
|
|
StaticRefPtr<AudioBufferMemoryTracker> AudioBufferMemoryTracker::sSingleton;
|
|
|
|
StaticMutex AudioBufferMemoryTracker::sMutex;
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(AudioBufferMemoryTracker, nsIMemoryReporter);
|
|
|
|
|
|
|
|
AudioBufferMemoryTracker* AudioBufferMemoryTracker::GetInstance()
|
|
|
|
{
|
|
|
|
sMutex.AssertCurrentThreadOwns();
|
|
|
|
if (!sSingleton) {
|
|
|
|
sSingleton = new AudioBufferMemoryTracker();
|
|
|
|
sSingleton->Init();
|
|
|
|
}
|
|
|
|
return sSingleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioBufferMemoryTracker::AudioBufferMemoryTracker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioBufferMemoryTracker::Init()
|
|
|
|
{
|
|
|
|
RegisterWeakMemoryReporter(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioBufferMemoryTracker::~AudioBufferMemoryTracker()
|
|
|
|
{
|
|
|
|
UnregisterWeakMemoryReporter(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioBufferMemoryTracker::RegisterAudioBuffer(const AudioBuffer* aAudioBuffer)
|
|
|
|
{
|
|
|
|
StaticMutexAutoLock lock(sMutex);
|
|
|
|
AudioBufferMemoryTracker* tracker = AudioBufferMemoryTracker::GetInstance();
|
|
|
|
tracker->RegisterAudioBufferInternal(aAudioBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioBufferMemoryTracker::UnregisterAudioBuffer(const AudioBuffer* aAudioBuffer)
|
|
|
|
{
|
|
|
|
StaticMutexAutoLock lock(sMutex);
|
|
|
|
AudioBufferMemoryTracker* tracker = AudioBufferMemoryTracker::GetInstance();
|
|
|
|
uint32_t count;
|
|
|
|
count = tracker->UnregisterAudioBufferInternal(aAudioBuffer);
|
|
|
|
if (count == 0) {
|
|
|
|
sSingleton = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioBufferMemoryTracker::RegisterAudioBufferInternal(const AudioBuffer* aAudioBuffer)
|
|
|
|
{
|
|
|
|
sMutex.AssertCurrentThreadOwns();
|
|
|
|
mBuffers.PutEntry(aAudioBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
AudioBufferMemoryTracker::UnregisterAudioBufferInternal(const AudioBuffer* aAudioBuffer)
|
|
|
|
{
|
|
|
|
sMutex.AssertCurrentThreadOwns();
|
|
|
|
mBuffers.RemoveEntry(aAudioBuffer);
|
|
|
|
return mBuffers.Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_DEFINE_MALLOC_SIZE_OF(AudioBufferMemoryTrackerMallocSizeOf)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2016-08-24 08:23:45 +03:00
|
|
|
AudioBufferMemoryTracker::CollectReports(nsIHandleReportCallback* aHandleReport,
|
|
|
|
nsISupports* aData, bool)
|
2016-04-01 14:36:41 +03:00
|
|
|
{
|
2016-08-24 08:23:45 +03:00
|
|
|
size_t amount = 0;
|
|
|
|
|
|
|
|
for (auto iter = mBuffers.Iter(); !iter.Done(); iter.Next()) {
|
|
|
|
amount += iter.Get()->GetKey()->SizeOfIncludingThis(AudioBufferMemoryTrackerMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_COLLECT_REPORT(
|
|
|
|
"explicit/webaudio/audiobuffer", KIND_HEAP, UNITS_BYTES, amount,
|
|
|
|
"Memory used by AudioBuffer objects (Web Audio).");
|
|
|
|
|
|
|
|
return NS_OK;
|
2016-04-01 14:36:41 +03:00
|
|
|
}
|
|
|
|
|
2017-01-11 00:30:28 +03:00
|
|
|
AudioBuffer::AudioBuffer(nsPIDOMWindowInner* aWindow,
|
|
|
|
uint32_t aNumberOfChannels,
|
|
|
|
uint32_t aLength,
|
|
|
|
float aSampleRate,
|
2015-08-28 09:30:49 +03:00
|
|
|
already_AddRefed<ThreadSharedFloatArrayBufferList>
|
|
|
|
aInitialContents)
|
2017-01-11 00:30:28 +03:00
|
|
|
: mOwnerWindow(do_GetWeakReference(aWindow)),
|
2015-08-28 09:30:49 +03:00
|
|
|
mSharedChannels(aInitialContents),
|
2012-09-22 02:42:14 +04:00
|
|
|
mLength(aLength),
|
|
|
|
mSampleRate(aSampleRate)
|
|
|
|
{
|
2015-08-28 09:30:49 +03:00
|
|
|
MOZ_ASSERT(!mSharedChannels ||
|
|
|
|
mSharedChannels->GetChannels() == aNumberOfChannels);
|
|
|
|
mJSChannels.SetLength(aNumberOfChannels);
|
2013-08-17 00:10:17 +04:00
|
|
|
mozilla::HoldJSObjects(this);
|
2016-04-01 14:36:41 +03:00
|
|
|
AudioBufferMemoryTracker::RegisterAudioBuffer(this);
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioBuffer::~AudioBuffer()
|
2013-01-26 01:21:22 +04:00
|
|
|
{
|
2016-04-01 14:36:41 +03:00
|
|
|
AudioBufferMemoryTracker::UnregisterAudioBuffer(this);
|
2013-01-26 01:21:22 +04:00
|
|
|
ClearJSChannels();
|
2016-08-21 03:32:52 +03:00
|
|
|
mozilla::DropJSObjects(this);
|
2013-01-26 01:21:22 +04:00
|
|
|
}
|
|
|
|
|
2016-12-15 21:24:42 +03:00
|
|
|
/* static */ already_AddRefed<AudioBuffer>
|
|
|
|
AudioBuffer::Constructor(const GlobalObject& aGlobal,
|
|
|
|
const AudioBufferOptions& aOptions,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
if (!aOptions.mNumberOfChannels) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-01-11 00:30:28 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> window =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
|
|
|
|
return Create(window, aOptions.mNumberOfChannels, aOptions.mLength,
|
|
|
|
aOptions.mSampleRate, aRv);
|
2016-12-15 21:24:42 +03:00
|
|
|
}
|
|
|
|
|
2013-01-26 01:21:22 +04:00
|
|
|
void
|
|
|
|
AudioBuffer::ClearJSChannels()
|
2012-09-22 02:42:14 +04:00
|
|
|
{
|
2013-02-05 03:07:25 +04:00
|
|
|
mJSChannels.Clear();
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
|
|
|
|
2014-05-16 01:23:27 +04:00
|
|
|
/* static */ already_AddRefed<AudioBuffer>
|
2017-01-11 00:30:28 +03:00
|
|
|
AudioBuffer::Create(nsPIDOMWindowInner* aWindow, uint32_t aNumberOfChannels,
|
2014-05-16 01:23:27 +04:00
|
|
|
uint32_t aLength, float aSampleRate,
|
2015-08-28 09:30:49 +03:00
|
|
|
already_AddRefed<ThreadSharedFloatArrayBufferList>
|
|
|
|
aInitialContents,
|
2016-03-12 00:43:31 +03:00
|
|
|
ErrorResult& aRv)
|
2012-09-22 02:42:14 +04:00
|
|
|
{
|
2014-05-16 01:23:27 +04:00
|
|
|
// Note that a buffer with zero channels is permitted here for the sake of
|
|
|
|
// AudioProcessingEvent, where channel counts must match parameters passed
|
|
|
|
// to createScriptProcessor(), one of which may be zero.
|
|
|
|
if (aSampleRate < WebAudioUtils::MinSampleRate ||
|
|
|
|
aSampleRate > WebAudioUtils::MaxSampleRate ||
|
2014-05-16 01:23:38 +04:00
|
|
|
aNumberOfChannels > WebAudioUtils::MaxChannelCount ||
|
2014-05-16 01:23:27 +04:00
|
|
|
!aLength || aLength > INT32_MAX) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
2014-05-16 01:23:27 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<AudioBuffer> buffer =
|
2017-01-11 00:30:28 +03:00
|
|
|
new AudioBuffer(aWindow, aNumberOfChannels, aLength, aSampleRate,
|
2015-08-28 09:30:49 +03:00
|
|
|
Move(aInitialContents));
|
|
|
|
|
2014-05-16 01:23:27 +04:00
|
|
|
return buffer.forget();
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
AudioBuffer::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2012-09-22 02:42:14 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return AudioBufferBinding::Wrap(aCx, this, aGivenProto);
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
|
|
|
|
2013-05-05 01:40:20 +04:00
|
|
|
bool
|
2013-02-05 03:07:25 +04:00
|
|
|
AudioBuffer::RestoreJSChannelData(JSContext* aJSContext)
|
|
|
|
{
|
2015-08-24 10:30:36 +03:00
|
|
|
for (uint32_t i = 0; i < mJSChannels.Length(); ++i) {
|
|
|
|
if (mJSChannels[i]) {
|
|
|
|
// Already have data in JS array.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following code first zeroes the array and then copies our data
|
|
|
|
// into it. We could avoid this with additional JS APIs to construct
|
|
|
|
// an array (or ArrayBuffer) containing initial data.
|
|
|
|
JS::Rooted<JSObject*> array(aJSContext,
|
|
|
|
JS_NewFloat32Array(aJSContext, mLength));
|
|
|
|
if (!array) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mSharedChannels) {
|
|
|
|
// "4. Attach ArrayBuffers containing copies of the data to the
|
|
|
|
// AudioBuffer, to be returned by the next call to getChannelData."
|
2013-02-05 03:07:25 +04:00
|
|
|
const float* data = mSharedChannels->GetData(i);
|
2014-10-07 21:44:07 +04:00
|
|
|
JS::AutoCheckCannotGC nogc;
|
2015-11-25 21:04:50 +03:00
|
|
|
bool isShared;
|
|
|
|
mozilla::PodCopy(JS_GetFloat32ArrayData(array, &isShared, nogc), data, mLength);
|
|
|
|
MOZ_ASSERT(!isShared); // Was created as unshared above
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
2015-08-24 10:30:36 +03:00
|
|
|
mJSChannels[i] = array;
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
2013-05-05 01:40:20 +04:00
|
|
|
|
2015-08-24 10:30:36 +03:00
|
|
|
mSharedChannels = nullptr;
|
|
|
|
|
2013-05-05 01:40:20 +04:00
|
|
|
return true;
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
|
|
|
|
2013-09-17 15:30:32 +04:00
|
|
|
void
|
|
|
|
AudioBuffer::CopyFromChannel(const Float32Array& aDestination, uint32_t aChannelNumber,
|
|
|
|
uint32_t aStartInChannel, ErrorResult& aRv)
|
|
|
|
{
|
Bug 999651, bug 995679, bug 1009952, bug 1011007, bug 991981. r=sfink, r=shu, r=jandem, r=jdm, r=luke, r=bbouvier, r=nmatsakis, r=bz, r=ehsan, r=jgilbert, r=smaug, r=sicking, r=terrence, r=bholley, r=bent, r=efaust, r=jorendorff
2014-05-28 01:32:41 +04:00
|
|
|
aDestination.ComputeLengthAndData();
|
|
|
|
|
2013-09-17 15:30:32 +04:00
|
|
|
uint32_t length = aDestination.Length();
|
2013-09-28 04:11:26 +04:00
|
|
|
CheckedInt<uint32_t> end = aStartInChannel;
|
|
|
|
end += length;
|
2013-09-17 15:30:32 +04:00
|
|
|
if (aChannelNumber >= NumberOfChannels() ||
|
2013-10-09 06:32:16 +04:00
|
|
|
!end.isValid() || end.value() > mLength) {
|
2013-09-17 15:30:32 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-24 10:30:36 +03:00
|
|
|
JS::AutoCheckCannotGC nogc;
|
|
|
|
JSObject* channelArray = mJSChannels[aChannelNumber];
|
|
|
|
const float* sourceData = nullptr;
|
|
|
|
if (channelArray) {
|
|
|
|
if (JS_GetTypedArrayLength(channelArray) != mLength) {
|
2016-01-26 05:10:22 +03:00
|
|
|
// The array's buffer was detached.
|
2015-08-24 10:30:36 +03:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-25 21:04:50 +03:00
|
|
|
bool isShared = false;
|
|
|
|
sourceData = JS_GetFloat32ArrayData(channelArray, &isShared, nogc);
|
|
|
|
// The sourceData arrays should all have originated in
|
|
|
|
// RestoreJSChannelData, where they are created unshared.
|
|
|
|
MOZ_ASSERT(!isShared);
|
2015-08-24 10:30:36 +03:00
|
|
|
} else if (mSharedChannels) {
|
|
|
|
sourceData = mSharedChannels->GetData(aChannelNumber);
|
2013-09-17 15:30:32 +04:00
|
|
|
}
|
|
|
|
|
2015-08-24 10:30:36 +03:00
|
|
|
if (sourceData) {
|
|
|
|
PodMove(aDestination.Data(), sourceData + aStartInChannel, length);
|
|
|
|
} else {
|
|
|
|
PodZero(aDestination.Data(), length);
|
|
|
|
}
|
2013-09-17 15:30:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioBuffer::CopyToChannel(JSContext* aJSContext, const Float32Array& aSource,
|
|
|
|
uint32_t aChannelNumber, uint32_t aStartInChannel,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
Bug 999651, bug 995679, bug 1009952, bug 1011007, bug 991981. r=sfink, r=shu, r=jandem, r=jdm, r=luke, r=bbouvier, r=nmatsakis, r=bz, r=ehsan, r=jgilbert, r=smaug, r=sicking, r=terrence, r=bholley, r=bent, r=efaust, r=jorendorff
2014-05-28 01:32:41 +04:00
|
|
|
aSource.ComputeLengthAndData();
|
|
|
|
|
2013-09-17 15:30:32 +04:00
|
|
|
uint32_t length = aSource.Length();
|
2013-09-28 04:11:26 +04:00
|
|
|
CheckedInt<uint32_t> end = aStartInChannel;
|
|
|
|
end += length;
|
2013-09-17 15:30:32 +04:00
|
|
|
if (aChannelNumber >= NumberOfChannels() ||
|
2013-10-09 06:32:16 +04:00
|
|
|
!end.isValid() || end.value() > mLength) {
|
2013-09-17 15:30:32 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!RestoreJSChannelData(aJSContext)) {
|
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-07 21:44:07 +04:00
|
|
|
JS::AutoCheckCannotGC nogc;
|
2015-08-24 10:30:36 +03:00
|
|
|
JSObject* channelArray = mJSChannels[aChannelNumber];
|
|
|
|
if (JS_GetTypedArrayLength(channelArray) != mLength) {
|
2016-01-26 05:10:22 +03:00
|
|
|
// The array's buffer was detached.
|
2015-08-24 10:30:36 +03:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-25 21:04:50 +03:00
|
|
|
bool isShared = false;
|
|
|
|
float* channelData = JS_GetFloat32ArrayData(channelArray, &isShared, nogc);
|
|
|
|
// The channelData arrays should all have originated in
|
|
|
|
// RestoreJSChannelData, where they are created unshared.
|
|
|
|
MOZ_ASSERT(!isShared);
|
|
|
|
PodMove(channelData + aStartInChannel, aSource.Data(), length);
|
2013-09-17 15:30:32 +04:00
|
|
|
}
|
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
void
|
2012-09-22 02:42:14 +04:00
|
|
|
AudioBuffer::GetChannelData(JSContext* aJSContext, uint32_t aChannel,
|
2014-06-12 00:26:52 +04:00
|
|
|
JS::MutableHandle<JSObject*> aRetval,
|
2013-02-05 03:07:25 +04:00
|
|
|
ErrorResult& aRv)
|
2012-09-22 02:42:14 +04:00
|
|
|
{
|
2013-02-05 03:07:25 +04:00
|
|
|
if (aChannel >= NumberOfChannels()) {
|
2012-09-22 02:42:14 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SYNTAX_ERR);
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2012-09-22 02:42:14 +04:00
|
|
|
}
|
2013-02-05 03:07:25 +04:00
|
|
|
|
2013-05-05 01:40:20 +04:00
|
|
|
if (!RestoreJSChannelData(aJSContext)) {
|
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-05-05 01:40:20 +04:00
|
|
|
}
|
2013-02-05 03:07:25 +04:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
aRetval.set(mJSChannels[aChannel]);
|
2013-02-02 02:13:23 +04:00
|
|
|
}
|
|
|
|
|
2015-08-24 23:51:55 +03:00
|
|
|
already_AddRefed<ThreadSharedFloatArrayBufferList>
|
|
|
|
AudioBuffer::StealJSArrayDataIntoSharedChannels(JSContext* aJSContext)
|
2013-02-05 03:07:25 +04:00
|
|
|
{
|
2016-01-26 05:10:22 +03:00
|
|
|
// "1. If any of the AudioBuffer's ArrayBuffer have been detached, abort
|
2015-08-24 23:51:55 +03:00
|
|
|
// these steps, and return a zero-length channel data buffers to the
|
|
|
|
// invoker."
|
|
|
|
for (uint32_t i = 0; i < mJSChannels.Length(); ++i) {
|
2015-08-24 10:30:36 +03:00
|
|
|
JSObject* channelArray = mJSChannels[i];
|
|
|
|
if (!channelArray || mLength != JS_GetTypedArrayLength(channelArray)) {
|
2016-01-26 05:10:22 +03:00
|
|
|
// Either empty buffer or one of the arrays' buffers was detached.
|
2015-08-24 23:51:55 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 05:10:22 +03:00
|
|
|
// "2. Detach all ArrayBuffers for arrays previously returned by
|
2015-08-24 23:51:55 +03:00
|
|
|
// getChannelData on this AudioBuffer."
|
|
|
|
// "3. Retain the underlying data buffers from those ArrayBuffers and return
|
|
|
|
// references to them to the invoker."
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ThreadSharedFloatArrayBufferList> result =
|
2015-08-24 23:51:55 +03:00
|
|
|
new ThreadSharedFloatArrayBufferList(mJSChannels.Length());
|
|
|
|
for (uint32_t i = 0; i < mJSChannels.Length(); ++i) {
|
|
|
|
JS::Rooted<JSObject*> arrayBufferView(aJSContext, mJSChannels[i]);
|
2015-11-25 21:04:50 +03:00
|
|
|
bool isSharedMemory;
|
2013-11-11 12:04:41 +04:00
|
|
|
JS::Rooted<JSObject*> arrayBuffer(aJSContext,
|
2015-11-25 21:04:50 +03:00
|
|
|
JS_GetArrayBufferViewBuffer(aJSContext,
|
|
|
|
arrayBufferView,
|
|
|
|
&isSharedMemory));
|
|
|
|
// The channel data arrays should all have originated in
|
|
|
|
// RestoreJSChannelData, where they are created unshared.
|
|
|
|
MOZ_ASSERT(!isSharedMemory);
|
2017-01-27 15:20:37 +03:00
|
|
|
auto stolenData =
|
|
|
|
arrayBuffer ? static_cast<float*>(
|
|
|
|
JS_StealArrayBufferContents(aJSContext, arrayBuffer))
|
|
|
|
: nullptr;
|
2014-03-17 21:46:04 +04:00
|
|
|
if (stolenData) {
|
2015-08-21 07:44:04 +03:00
|
|
|
result->SetData(i, stolenData, js_free, stolenData);
|
2013-02-05 03:07:25 +04:00
|
|
|
} else {
|
2015-08-24 23:51:55 +03:00
|
|
|
NS_ASSERTION(i == 0, "some channels lost when contents not acquired");
|
2013-06-29 16:30:35 +04:00
|
|
|
return nullptr;
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
|
|
|
}
|
2015-08-24 06:06:43 +03:00
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mJSChannels.Length(); ++i) {
|
|
|
|
mJSChannels[i] = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-02-05 03:07:25 +04:00
|
|
|
return result.forget();
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
2013-02-05 10:29:28 +04:00
|
|
|
|
2013-02-05 03:07:25 +04:00
|
|
|
ThreadSharedFloatArrayBufferList*
|
2013-04-22 16:12:45 +04:00
|
|
|
AudioBuffer::GetThreadSharedChannelsForRate(JSContext* aJSContext)
|
2013-02-05 03:07:25 +04:00
|
|
|
{
|
|
|
|
if (!mSharedChannels) {
|
2015-08-24 23:51:55 +03:00
|
|
|
mSharedChannels = StealJSArrayDataIntoSharedChannels(aJSContext);
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 04:54:32 +04:00
|
|
|
return mSharedChannels;
|
2013-02-05 03:07:25 +04:00
|
|
|
}
|
2013-03-08 03:14:46 +04:00
|
|
|
|
2014-01-04 22:15:41 +04:00
|
|
|
size_t
|
|
|
|
AudioBuffer::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
size_t amount = aMallocSizeOf(this);
|
2015-07-29 09:24:24 +03:00
|
|
|
amount += mJSChannels.ShallowSizeOfExcludingThis(aMallocSizeOf);
|
2014-01-04 22:15:41 +04:00
|
|
|
if (mSharedChannels) {
|
2014-05-01 21:37:54 +04:00
|
|
|
amount += mSharedChannels->SizeOfIncludingThis(aMallocSizeOf);
|
2014-01-04 22:15:41 +04:00
|
|
|
}
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|