2012-10-31 23:09:32 +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/. */
|
|
|
|
|
|
|
|
#ifndef GainNode_h_
|
|
|
|
#define GainNode_h_
|
|
|
|
|
|
|
|
#include "AudioNode.h"
|
|
|
|
#include "AudioParam.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class AudioContext;
|
|
|
|
|
2015-04-28 09:42:00 +03:00
|
|
|
class GainNode final : public AudioNode
|
2012-10-31 23:09:32 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit GainNode(AudioContext* aContext);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(GainNode, AudioNode)
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-10-31 23:09:32 +04:00
|
|
|
|
|
|
|
AudioParam* Gain() const
|
|
|
|
{
|
|
|
|
return mGain;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual const char* NodeType() const override
|
2014-04-13 22:08:10 +04:00
|
|
|
{
|
|
|
|
return "GainNode";
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual size_t SizeOfExcludingThis(MallocSizeOf aMallocSizeOf) const override;
|
|
|
|
virtual size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const override;
|
2014-04-13 22:08:10 +04:00
|
|
|
|
2014-07-09 01:23:17 +04:00
|
|
|
protected:
|
|
|
|
virtual ~GainNode();
|
|
|
|
|
2012-10-31 23:09:32 +04:00
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<AudioParam> mGain;
|
2012-10-31 23:09:32 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2012-10-31 23:09:32 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|