2013-07-25 07:01:49 +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 MediaElementAudioSourceNode_h_
|
|
|
|
#define MediaElementAudioSourceNode_h_
|
|
|
|
|
|
|
|
#include "MediaStreamAudioSourceNode.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-12-15 21:24:43 +03:00
|
|
|
class AudioContext;
|
|
|
|
struct MediaElementAudioSourceOptions;
|
|
|
|
|
2015-04-28 09:42:00 +03:00
|
|
|
class MediaElementAudioSourceNode final : public MediaStreamAudioSourceNode {
|
2013-07-25 07:01:49 +04:00
|
|
|
public:
|
2019-07-11 23:09:58 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(MediaElementAudioSourceNode,
|
|
|
|
MediaStreamAudioSourceNode)
|
2015-12-10 19:25:54 +03:00
|
|
|
static already_AddRefed<MediaElementAudioSourceNode> Create(
|
2016-12-15 21:24:43 +03:00
|
|
|
AudioContext& aAudioContext,
|
|
|
|
const MediaElementAudioSourceOptions& aOptions, ErrorResult& aRv);
|
2018-11-19 16:25:37 +03:00
|
|
|
|
2016-12-15 21:24:43 +03:00
|
|
|
static already_AddRefed<MediaElementAudioSourceNode> Constructor(
|
|
|
|
const GlobalObject& aGlobal, AudioContext& aAudioContext,
|
|
|
|
const MediaElementAudioSourceOptions& aOptions, ErrorResult& aRv) {
|
|
|
|
return Create(aAudioContext, aOptions, aRv);
|
|
|
|
}
|
2013-07-25 07:01:49 +04:00
|
|
|
|
2016-01-18 06:22:51 +03:00
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2014-04-13 22:08:10 +04:00
|
|
|
|
2016-01-18 06:22:51 +03:00
|
|
|
const char* NodeType() const override {
|
2014-04-13 22:08:10 +04:00
|
|
|
return "MediaElementAudioSourceNode";
|
|
|
|
}
|
|
|
|
|
2016-04-26 18:46:31 +03:00
|
|
|
const char* CrossOriginErrorString() const override {
|
|
|
|
return "MediaElementAudioSourceNodeCrossOrigin";
|
|
|
|
}
|
|
|
|
|
2016-01-18 06:22:51 +03:00
|
|
|
size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const override {
|
2014-04-13 22:08:10 +04:00
|
|
|
return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
2018-11-19 16:25:37 +03:00
|
|
|
|
2019-07-11 23:09:58 +03:00
|
|
|
HTMLMediaElement* MediaElement();
|
|
|
|
|
2015-12-10 19:25:54 +03:00
|
|
|
private:
|
2019-07-11 23:09:58 +03:00
|
|
|
explicit MediaElementAudioSourceNode(AudioContext* aContext,
|
|
|
|
HTMLMediaElement* aElement);
|
|
|
|
~MediaElementAudioSourceNode() = default;
|
2019-01-11 23:43:01 +03:00
|
|
|
|
|
|
|
void Destroy() override;
|
|
|
|
|
|
|
|
// If AudioContext was not allowed to start, we would try to start it when
|
|
|
|
// source starts.
|
|
|
|
void ListenForAllowedToPlay(const MediaElementAudioSourceOptions& aOptions);
|
|
|
|
|
|
|
|
MozPromiseRequestHolder<GenericNonExclusivePromise> mAllowedToPlayRequest;
|
2019-07-11 23:09:58 +03:00
|
|
|
|
|
|
|
RefPtr<HTMLMediaElement> mElement;
|
2013-07-25 07:01:49 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-07-25 07:01:49 +04:00
|
|
|
|
|
|
|
#endif
|