2012-10-17 01:19:06 +00: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/. */
|
|
|
|
|
2012-10-30 21:39:38 +00:00
|
|
|
#ifndef AudioParam_h_
|
|
|
|
#define AudioParam_h_
|
2012-10-17 01:19:06 +00:00
|
|
|
|
|
|
|
#include "AudioEventTimeline.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "EnableWebAudioCheck.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2013-02-05 06:28:38 +00:00
|
|
|
#include "AudioContext.h"
|
2012-10-17 01:19:06 +00:00
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
|
|
#include "mozilla/Util.h"
|
2013-01-28 22:42:27 +00:00
|
|
|
#include "mozilla/ErrorResult.h"
|
2012-10-17 01:19:06 +00:00
|
|
|
|
2012-11-15 02:38:26 +00:00
|
|
|
struct JSContext;
|
2012-10-17 01:19:06 +00:00
|
|
|
class nsIDOMWindow;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
2013-01-25 21:46:44 +00:00
|
|
|
typedef AudioEventTimeline<ErrorResult> AudioParamTimeline;
|
2012-10-17 01:19:06 +00:00
|
|
|
|
|
|
|
class AudioParam MOZ_FINAL : public nsWrapperCache,
|
|
|
|
public EnableWebAudioCheck,
|
|
|
|
public AudioParamTimeline
|
|
|
|
{
|
|
|
|
public:
|
2013-02-05 06:28:38 +00:00
|
|
|
AudioParam(AudioContext* aContext,
|
2012-10-17 01:19:06 +00:00
|
|
|
float aDefaultValue,
|
|
|
|
float aMinValue,
|
|
|
|
float aMaxValue);
|
|
|
|
virtual ~AudioParam();
|
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(AudioParam)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(AudioParam)
|
|
|
|
|
|
|
|
AudioContext* GetParentObject() const
|
|
|
|
{
|
2013-02-05 06:28:38 +00:00
|
|
|
return mContext;
|
2012-10-17 01:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JSObject* aScope,
|
|
|
|
bool* aTriedToWrap);
|
|
|
|
|
|
|
|
// We override SetValueCurveAtTime to convert the Float32Array to the wrapper
|
|
|
|
// object.
|
2012-11-19 20:52:29 +00:00
|
|
|
void SetValueCurveAtTime(JSContext* cx, const Float32Array& aValues, double aStartTime, double aDuration, ErrorResult& aRv)
|
2012-10-17 01:19:06 +00:00
|
|
|
{
|
2013-01-25 21:46:44 +00:00
|
|
|
AudioParamTimeline::SetValueCurveAtTime(aValues.Data(), aValues.Length(),
|
2012-10-17 01:19:06 +00:00
|
|
|
aStartTime, aDuration, aRv);
|
|
|
|
}
|
|
|
|
|
2013-01-25 19:26:31 +00:00
|
|
|
float MinValue() const
|
|
|
|
{
|
|
|
|
return mMinValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
float MaxValue() const
|
|
|
|
{
|
|
|
|
return mMaxValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
float DefaultValue() const
|
|
|
|
{
|
|
|
|
return mDefaultValue;
|
|
|
|
}
|
|
|
|
|
2012-10-17 01:19:06 +00:00
|
|
|
private:
|
2013-02-05 06:28:38 +00:00
|
|
|
nsRefPtr<AudioContext> mContext;
|
2013-01-25 19:26:31 +00:00
|
|
|
const float mDefaultValue;
|
|
|
|
const float mMinValue;
|
|
|
|
const float mMaxValue;
|
2012-10-17 01:19:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-30 21:39:38 +00:00
|
|
|
#endif
|
|
|
|
|