Bug 1787561 Part 2: Expose HDR telemetry to HTMLMediaElement as a Chrome property...
[gecko.git] / dom / html / HTMLMediaElement.h
blob3d68b8a20ef227b7d0ee93430a94622692143564
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_dom_HTMLMediaElement_h
7 #define mozilla_dom_HTMLMediaElement_h
9 #include "nsGenericHTMLElement.h"
10 #include "AudioChannelService.h"
11 #include "MediaEventSource.h"
12 #include "SeekTarget.h"
13 #include "MediaDecoderOwner.h"
14 #include "MediaElementEventRunners.h"
15 #include "MediaPlaybackDelayPolicy.h"
16 #include "MediaPromiseDefs.h"
17 #include "TelemetryProbesReporter.h"
18 #include "nsCycleCollectionParticipant.h"
19 #include "Visibility.h"
20 #include "mozilla/CORSMode.h"
21 #include "DecoderTraits.h"
22 #include "mozilla/Attributes.h"
23 #include "mozilla/StateWatching.h"
24 #include "mozilla/WeakPtr.h"
25 #include "mozilla/dom/DecoderDoctorNotificationBinding.h"
26 #include "mozilla/dom/HTMLMediaElementBinding.h"
27 #include "mozilla/dom/MediaDebugInfoBinding.h"
28 #include "mozilla/dom/MediaKeys.h"
29 #include "mozilla/dom/TextTrackManager.h"
30 #include "nsGkAtoms.h"
31 #include "PrincipalChangeObserver.h"
32 #include "nsStubMutationObserver.h"
33 #include "MediaSegment.h" // for PrincipalHandle, GraphTime
35 #include <utility>
37 // X.h on Linux #defines CurrentTime as 0L, so we have to #undef it here.
38 #ifdef CurrentTime
39 # undef CurrentTime
40 #endif
42 // Define to output information on decoding and painting framerate
43 /* #define DEBUG_FRAME_RATE 1 */
45 using nsMediaNetworkState = uint16_t;
46 using nsMediaReadyState = uint16_t;
47 using SuspendTypes = uint32_t;
48 using AudibleChangedReasons = uint32_t;
50 class nsIStreamListener;
52 namespace mozilla {
53 class AbstractThread;
54 class ChannelMediaDecoder;
55 class DecoderDoctorDiagnostics;
56 class DOMMediaStream;
57 class ErrorResult;
58 class FirstFrameVideoOutput;
59 class MediaResource;
60 class MediaDecoder;
61 class MediaInputPort;
62 class MediaTrack;
63 class MediaTrackGraph;
64 class MediaStreamWindowCapturer;
65 struct SharedDummyTrack;
66 class VideoFrameContainer;
67 class VideoOutput;
68 namespace dom {
69 class MediaKeys;
70 class TextTrack;
71 class TimeRanges;
72 class WakeLock;
73 class MediaStreamTrack;
74 class MediaStreamTrackSource;
75 class MediaTrack;
76 class VideoStreamTrack;
77 } // namespace dom
78 } // namespace mozilla
80 class AudioDeviceInfo;
81 class nsIChannel;
82 class nsIHttpChannel;
83 class nsILoadGroup;
84 class nsIRunnable;
85 class nsISerialEventTarget;
86 class nsITimer;
87 class nsRange;
89 namespace mozilla::dom {
91 // Number of milliseconds between timeupdate events as defined by spec
92 #define TIMEUPDATE_MS 250
94 class MediaError;
95 class MediaSource;
96 class PlayPromise;
97 class Promise;
98 class TextTrackList;
99 class AudioTrackList;
100 class VideoTrackList;
102 enum class StreamCaptureType : uint8_t { CAPTURE_ALL_TRACKS, CAPTURE_AUDIO };
104 enum class StreamCaptureBehavior : uint8_t {
105 CONTINUE_WHEN_ENDED,
106 FINISH_WHEN_ENDED
109 class HTMLMediaElement : public nsGenericHTMLElement,
110 public MediaDecoderOwner,
111 public PrincipalChangeObserver<MediaStreamTrack>,
112 public SupportsWeakPtr,
113 public nsStubMutationObserver,
114 public TelemetryProbesReporterOwner {
115 public:
116 using TimeStamp = mozilla::TimeStamp;
117 using ImageContainer = mozilla::layers::ImageContainer;
118 using VideoFrameContainer = mozilla::VideoFrameContainer;
119 using MediaResource = mozilla::MediaResource;
120 using MediaDecoderOwner = mozilla::MediaDecoderOwner;
121 using MetadataTags = mozilla::MetadataTags;
123 // Helper struct to keep track of the MediaStreams returned by
124 // mozCaptureStream(). For each OutputMediaStream, dom::MediaTracks get
125 // captured into MediaStreamTracks which get added to
126 // OutputMediaStream::mStream.
127 struct OutputMediaStream {
128 OutputMediaStream(RefPtr<DOMMediaStream> aStream, bool aCapturingAudioOnly,
129 bool aFinishWhenEnded);
130 ~OutputMediaStream();
132 RefPtr<DOMMediaStream> mStream;
133 nsTArray<RefPtr<MediaStreamTrack>> mLiveTracks;
134 const bool mCapturingAudioOnly;
135 const bool mFinishWhenEnded;
136 // If mFinishWhenEnded is true, this is the URI of the first resource
137 // mStream got tracks for.
138 nsCOMPtr<nsIURI> mFinishWhenEndedLoadingSrc;
139 // If mFinishWhenEnded is true, this is the first MediaStream mStream got
140 // tracks for.
141 RefPtr<DOMMediaStream> mFinishWhenEndedAttrStream;
142 // If mFinishWhenEnded is true, this is the MediaSource being played.
143 RefPtr<MediaSource> mFinishWhenEndedMediaSource;
146 NS_DECL_NSIMUTATIONOBSERVER_CONTENTREMOVED
148 CORSMode GetCORSMode() { return mCORSMode; }
150 explicit HTMLMediaElement(
151 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
152 void Init();
154 // `eMandatory`: `timeupdate` occurs according to the spec requirement.
155 // Eg.
156 // https://html.spec.whatwg.org/multipage/media.html#seeking:event-media-timeupdate
157 // `ePeriodic` : `timeupdate` occurs regularly and should follow the rule
158 // of not dispatching that event within 250 ms. Eg.
159 // https://html.spec.whatwg.org/multipage/media.html#offsets-into-the-media-resource:event-media-timeupdate
160 enum class TimeupdateType : bool {
161 eMandatory = false,
162 ePeriodic = true,
165 // This is used for event runner creation. Currently only timeupdate needs
166 // that, but it can be used to extend for other events in the future if
167 // necessary.
168 enum class EventFlag : uint8_t {
169 eNone = 0,
170 eMandatory = 1,
174 * This is used when the browser is constructing a video element to play
175 * a channel that we've already started loading. The src attribute and
176 * <source> children are ignored.
177 * @param aChannel the channel to use
178 * @param aListener returns a stream listener that should receive
179 * notifications for the stream
181 nsresult LoadWithChannel(nsIChannel* aChannel, nsIStreamListener** aListener);
183 // nsISupports
184 NS_DECL_ISUPPORTS_INHERITED
185 NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLMediaElement,
186 nsGenericHTMLElement)
187 NS_IMPL_FROMNODE_HELPER(HTMLMediaElement,
188 IsAnyOfHTMLElements(nsGkAtoms::video,
189 nsGkAtoms::audio))
191 NS_DECL_ADDSIZEOFEXCLUDINGTHIS
193 // EventTarget
194 void GetEventTargetParent(EventChainPreVisitor& aVisitor) override;
196 void NodeInfoChanged(Document* aOldDoc) override;
198 virtual bool ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
199 const nsAString& aValue,
200 nsIPrincipal* aMaybeScriptedPrincipal,
201 nsAttrValue& aResult) override;
203 virtual nsresult BindToTree(BindContext&, nsINode& aParent) override;
204 virtual void UnbindFromTree(bool aNullParent = true) override;
205 virtual void DoneCreatingElement() override;
207 virtual bool IsHTMLFocusable(bool aWithMouse, bool* aIsFocusable,
208 int32_t* aTabIndex) override;
209 virtual int32_t TabIndexDefault() override;
211 // Called by the video decoder object, on the main thread,
212 // when it has read the metadata containing video dimensions,
213 // etc.
214 virtual void MetadataLoaded(const MediaInfo* aInfo,
215 UniquePtr<const MetadataTags> aTags) final;
217 // Called by the decoder object, on the main thread,
218 // when it has read the first frame of the video or audio.
219 void FirstFrameLoaded() final;
221 // Called by the video decoder object, on the main thread,
222 // when the resource has a network error during loading.
223 void NetworkError(const MediaResult& aError) final;
225 // Called by the video decoder object, on the main thread, when the
226 // resource has a decode error during metadata loading or decoding.
227 void DecodeError(const MediaResult& aError) final;
229 // Called by the decoder object, on the main thread, when the
230 // resource has a decode issue during metadata loading or decoding, but can
231 // continue decoding.
232 void DecodeWarning(const MediaResult& aError) final;
234 // Return true if error attribute is not null.
235 bool HasError() const final;
237 // Called by the video decoder object, on the main thread, when the
238 // resource load has been cancelled.
239 void LoadAborted() final;
241 // Called by the video decoder object, on the main thread,
242 // when the video playback has ended.
243 void PlaybackEnded() final;
245 // Called by the video decoder object, on the main thread,
246 // when the resource has started seeking.
247 void SeekStarted() final;
249 // Called by the video decoder object, on the main thread,
250 // when the resource has completed seeking.
251 void SeekCompleted() final;
253 // Called by the video decoder object, on the main thread,
254 // when the resource has aborted seeking.
255 void SeekAborted() final;
257 // Called by the media stream, on the main thread, when the download
258 // has been suspended by the cache or because the element itself
259 // asked the decoder to suspend the download.
260 void DownloadSuspended() final;
262 // Called by the media stream, on the main thread, when the download
263 // has been resumed by the cache or because the element itself
264 // asked the decoder to resumed the download.
265 void DownloadResumed();
267 // Called to indicate the download is progressing.
268 void DownloadProgressed() final;
270 // Called by the media decoder to indicate whether the media cache has
271 // suspended the channel.
272 void NotifySuspendedByCache(bool aSuspendedByCache) final;
274 // Return true if the media element is actually invisible to users.
275 bool IsActuallyInvisible() const override;
277 // Return true if the element is in the view port.
278 bool IsInViewPort() const;
280 // Called by the media decoder and the video frame to get the
281 // ImageContainer containing the video data.
282 VideoFrameContainer* GetVideoFrameContainer() final;
283 layers::ImageContainer* GetImageContainer();
286 * Call this to reevaluate whether we should start/stop due to our owner
287 * document being active, inactive, visible or hidden.
289 void NotifyOwnerDocumentActivityChanged();
291 // Called when the media element enters or leaves the fullscreen.
292 void NotifyFullScreenChanged();
294 bool IsInFullScreen() const;
296 // From PrincipalChangeObserver<MediaStreamTrack>.
297 void PrincipalChanged(MediaStreamTrack* aTrack) override;
299 void UpdateSrcStreamVideoPrincipal(const PrincipalHandle& aPrincipalHandle);
301 // Called after the MediaStream we're playing rendered a frame to aContainer
302 // with a different principalHandle than the previous frame.
303 void PrincipalHandleChangedForVideoFrameContainer(
304 VideoFrameContainer* aContainer,
305 const PrincipalHandle& aNewPrincipalHandle) override;
307 // Dispatch events
308 void DispatchAsyncEvent(const nsAString& aName) final;
309 void DispatchAsyncEvent(RefPtr<nsMediaEventRunner> aRunner);
311 // Triggers a recomputation of readyState.
312 void UpdateReadyState() override {
313 mWatchManager.ManualNotify(&HTMLMediaElement::UpdateReadyStateInternal);
316 // Dispatch events that were raised while in the bfcache
317 nsresult DispatchPendingMediaEvents();
319 // Return true if we can activate autoplay assuming enough data has arrived.
320 bool CanActivateAutoplay();
322 // Notify that state has changed that might cause an autoplay element to
323 // start playing.
324 // If the element is 'autoplay' and is ready to play back (not paused,
325 // autoplay pref enabled, etc), it should start playing back.
326 void CheckAutoplayDataReady();
328 // Check if the media element had crossorigin set when loading started
329 bool ShouldCheckAllowOrigin();
331 // Returns true if the currently loaded resource is CORS same-origin with
332 // respect to the document.
333 bool IsCORSSameOrigin();
335 // Is the media element potentially playing as defined by the HTML 5
336 // specification.
337 // http://www.whatwg.org/specs/web-apps/current-work/#potentially-playing
338 bool IsPotentiallyPlaying() const;
340 // Has playback ended as defined by the HTML 5 specification.
341 // http://www.whatwg.org/specs/web-apps/current-work/#ended
342 bool IsPlaybackEnded() const;
344 // principal of the currently playing resource. Anything accessing the
345 // contents of this element must have a principal that subsumes this
346 // principal. Returns null if nothing is playing.
347 already_AddRefed<nsIPrincipal> GetCurrentPrincipal();
349 // Return true if the loading of this resource required cross-origin
350 // redirects.
351 bool HadCrossOriginRedirects();
353 // Principal of the currently playing video resource. Anything accessing the
354 // image container of this element must have a principal that subsumes this
355 // principal. If there are no live video tracks but content has been rendered
356 // to the image container, we return the last video principal we had. Should
357 // the image container be empty with no live video tracks, we return nullptr.
358 already_AddRefed<nsIPrincipal> GetCurrentVideoPrincipal();
360 // called to notify that the principal of the decoder's media resource has
361 // changed.
362 void NotifyDecoderPrincipalChanged() final;
364 void GetEMEInfo(dom::EMEDebugInfo& aInfo);
366 // Update the visual size of the media. Called from the decoder on the
367 // main thread when/if the size changes.
368 virtual void UpdateMediaSize(const nsIntSize& aSize);
369 // Like UpdateMediaSize, but only updates the size if no size has yet
370 // been set.
371 void UpdateInitialMediaSize(const nsIntSize& aSize);
373 void Invalidate(bool aImageSizeChanged, Maybe<nsIntSize>& aNewIntrinsicSize,
374 bool aForceInvalidate) override;
376 // Returns the CanPlayStatus indicating if we can handle the
377 // full MIME type including the optional codecs parameter.
378 static CanPlayStatus GetCanPlay(const nsAString& aType,
379 DecoderDoctorDiagnostics* aDiagnostics);
382 * Called when a child source element is added to this media element. This
383 * may queue a task to run the select resource algorithm if appropriate.
385 void NotifyAddedSource();
388 * Called when there's been an error fetching the resource. This decides
389 * whether it's appropriate to fire an error event.
391 void NotifyLoadError(const nsACString& aErrorDetails = nsCString());
394 * Called by one of our associated MediaTrackLists (audio/video) when a
395 * MediaTrack is added.
397 void NotifyMediaTrackAdded(dom::MediaTrack* aTrack);
400 * Called by one of our associated MediaTrackLists (audio/video) when a
401 * MediaTrack is removed.
403 void NotifyMediaTrackRemoved(dom::MediaTrack* aTrack);
406 * Called by one of our associated MediaTrackLists (audio/video) when an
407 * AudioTrack is enabled or a VideoTrack is selected.
409 void NotifyMediaTrackEnabled(dom::MediaTrack* aTrack);
412 * Called by one of our associated MediaTrackLists (audio/video) when an
413 * AudioTrack is disabled or a VideoTrack is unselected.
415 void NotifyMediaTrackDisabled(dom::MediaTrack* aTrack);
418 * Returns the current load ID. Asynchronous events store the ID that was
419 * current when they were enqueued, and if it has changed when they come to
420 * fire, they consider themselves cancelled, and don't fire.
422 uint32_t GetCurrentLoadID() const { return mCurrentLoadID; }
425 * Returns the load group for this media element's owner document.
426 * XXX XBL2 issue.
428 already_AddRefed<nsILoadGroup> GetDocumentLoadGroup();
431 * Returns true if the media has played or completed a seek.
432 * Used by video frame to determine whether to paint the poster.
434 bool GetPlayedOrSeeked() const { return mHasPlayedOrSeeked; }
436 nsresult CopyInnerTo(Element* aDest);
439 * Sets the Accept header on the HTTP channel to the required
440 * video or audio MIME types.
442 virtual nsresult SetAcceptHeader(nsIHttpChannel* aChannel) = 0;
445 * Sets the required request headers on the HTTP channel for
446 * video or audio requests.
448 void SetRequestHeaders(nsIHttpChannel* aChannel);
451 * Asynchronously awaits a stable state, whereupon aRunnable runs on the main
452 * thread. This adds an event which run aRunnable to the appshell's list of
453 * sections synchronous the next time control returns to the event loop.
455 void RunInStableState(nsIRunnable* aRunnable);
458 * Fires a timeupdate event. If aPeriodic is true, the event will only
459 * be fired if we've not fired a timeupdate event (for any reason) in the
460 * last 250ms, as required by the spec when the current time is periodically
461 * increasing during playback.
463 void FireTimeUpdate(TimeupdateType aType);
465 void MaybeQueueTimeupdateEvent() final {
466 FireTimeUpdate(TimeupdateType::ePeriodic);
469 const TimeStamp& LastTimeupdateDispatchTime() const;
470 void UpdateLastTimeupdateDispatchTime();
472 // WebIDL
474 MediaError* GetError() const;
476 void GetSrc(nsAString& aSrc) { GetURIAttr(nsGkAtoms::src, nullptr, aSrc); }
477 void SetSrc(const nsAString& aSrc, ErrorResult& aError) {
478 SetHTMLAttr(nsGkAtoms::src, aSrc, aError);
480 void SetSrc(const nsAString& aSrc, nsIPrincipal* aTriggeringPrincipal,
481 ErrorResult& aError) {
482 SetHTMLAttr(nsGkAtoms::src, aSrc, aTriggeringPrincipal, aError);
485 void GetCurrentSrc(nsAString& aCurrentSrc);
487 void GetCrossOrigin(nsAString& aResult) {
488 // Null for both missing and invalid defaults is ok, since we
489 // always parse to an enum value, so we don't need an invalid
490 // default, and we _want_ the missing default to be null.
491 GetEnumAttr(nsGkAtoms::crossorigin, nullptr, aResult);
493 void SetCrossOrigin(const nsAString& aCrossOrigin, ErrorResult& aError) {
494 SetOrRemoveNullableStringAttr(nsGkAtoms::crossorigin, aCrossOrigin, aError);
497 uint16_t NetworkState() const { return mNetworkState; }
499 void NotifyXPCOMShutdown() final;
501 // Called by media decoder when the audible state changed or when input is
502 // a media stream.
503 void SetAudibleState(bool aAudible) final;
505 // Notify agent when the MediaElement changes its audible state.
506 void NotifyAudioPlaybackChanged(AudibleChangedReasons aReason);
508 void GetPreload(nsAString& aValue) {
509 if (mSrcAttrStream) {
510 nsGkAtoms::none->ToString(aValue);
511 return;
513 GetEnumAttr(nsGkAtoms::preload, nullptr, aValue);
515 void SetPreload(const nsAString& aValue, ErrorResult& aRv) {
516 if (mSrcAttrStream) {
517 return;
519 SetHTMLAttr(nsGkAtoms::preload, aValue, aRv);
522 already_AddRefed<TimeRanges> Buffered() const;
524 void Load();
526 void CanPlayType(const nsAString& aType, nsAString& aResult);
528 uint16_t ReadyState() const { return mReadyState; }
530 bool Seeking() const;
532 double CurrentTime() const;
534 void SetCurrentTime(double aCurrentTime, ErrorResult& aRv);
535 void SetCurrentTime(double aCurrentTime) {
536 SetCurrentTime(aCurrentTime, IgnoreErrors());
539 void FastSeek(double aTime, ErrorResult& aRv);
541 already_AddRefed<Promise> SeekToNextFrame(ErrorResult& aRv);
543 double Duration() const;
545 bool HasAudio() const { return mMediaInfo.HasAudio(); }
547 virtual bool IsVideo() const { return false; }
549 bool HasVideo() const { return mMediaInfo.HasVideo(); }
551 bool IsEncrypted() const override { return mIsEncrypted; }
553 bool Paused() const { return mPaused; }
555 double DefaultPlaybackRate() const {
556 if (mSrcAttrStream) {
557 return 1.0;
559 return mDefaultPlaybackRate;
562 void SetDefaultPlaybackRate(double aDefaultPlaybackRate, ErrorResult& aRv);
564 double PlaybackRate() const {
565 if (mSrcAttrStream) {
566 return 1.0;
568 return mPlaybackRate;
571 void SetPlaybackRate(double aPlaybackRate, ErrorResult& aRv);
573 already_AddRefed<TimeRanges> Played();
575 already_AddRefed<TimeRanges> Seekable() const;
577 bool Ended();
579 bool Autoplay() const { return GetBoolAttr(nsGkAtoms::autoplay); }
581 void SetAutoplay(bool aValue, ErrorResult& aRv) {
582 SetHTMLBoolAttr(nsGkAtoms::autoplay, aValue, aRv);
585 bool Loop() const { return GetBoolAttr(nsGkAtoms::loop); }
587 void SetLoop(bool aValue, ErrorResult& aRv) {
588 SetHTMLBoolAttr(nsGkAtoms::loop, aValue, aRv);
591 already_AddRefed<Promise> Play(ErrorResult& aRv);
592 void Play() {
593 IgnoredErrorResult dummy;
594 RefPtr<Promise> toBeIgnored = Play(dummy);
597 void Pause(ErrorResult& aRv);
598 void Pause() { Pause(IgnoreErrors()); }
600 bool Controls() const { return GetBoolAttr(nsGkAtoms::controls); }
602 void SetControls(bool aValue, ErrorResult& aRv) {
603 SetHTMLBoolAttr(nsGkAtoms::controls, aValue, aRv);
606 double Volume() const { return mVolume; }
608 void SetVolume(double aVolume, ErrorResult& aRv);
610 bool Muted() const { return mMuted & MUTED_BY_CONTENT; }
611 void SetMuted(bool aMuted);
613 bool DefaultMuted() const { return GetBoolAttr(nsGkAtoms::muted); }
615 void SetDefaultMuted(bool aMuted, ErrorResult& aRv) {
616 SetHTMLBoolAttr(nsGkAtoms::muted, aMuted, aRv);
619 bool MozAllowCasting() const { return mAllowCasting; }
621 void SetMozAllowCasting(bool aShow) { mAllowCasting = aShow; }
623 bool MozIsCasting() const { return mIsCasting; }
625 void SetMozIsCasting(bool aShow) { mIsCasting = aShow; }
627 // Returns whether a call to Play() would be rejected with NotAllowedError.
628 // This assumes "worst case" for unknowns. So if prompting for permission is
629 // enabled and no permission is stored, this behaves as if the user would
630 // opt to block.
631 bool AllowedToPlay() const;
633 already_AddRefed<MediaSource> GetMozMediaSourceObject() const;
635 // Returns a promise which will be resolved after collecting debugging
636 // data from decoder/reader/MDSM. Used for debugging purposes.
637 already_AddRefed<Promise> MozRequestDebugInfo(ErrorResult& aRv);
639 // Enables DecoderDoctorLogger logging. Used for debugging purposes.
640 static void MozEnableDebugLog(const GlobalObject&);
642 // Returns a promise which will be resolved after collecting debugging
643 // log associated with this element. Used for debugging purposes.
644 already_AddRefed<Promise> MozRequestDebugLog(ErrorResult& aRv);
646 // For use by mochitests. Enabling pref "media.test.video-suspend"
647 void SetVisible(bool aVisible);
649 // For use by mochitests. Enabling pref "media.test.video-suspend"
650 bool HasSuspendTaint() const;
652 // For use by mochitests.
653 bool IsVideoDecodingSuspended() const;
655 // These functions return accumulated time, which are used for the telemetry
656 // usage. Return -1 for error.
657 double TotalVideoPlayTime() const;
658 double TotalVideoHDRPlayTime() const;
659 double VisiblePlayTime() const;
660 double InvisiblePlayTime() const;
661 double VideoDecodeSuspendedTime() const;
662 double TotalAudioPlayTime() const;
663 double AudiblePlayTime() const;
664 double InaudiblePlayTime() const;
665 double MutedPlayTime() const;
667 // Test methods for decoder doctor.
668 void SetFormatDiagnosticsReportForMimeType(const nsAString& aMimeType,
669 DecoderDoctorReportType aType);
670 void SetDecodeError(const nsAString& aError, ErrorResult& aRv);
671 void SetAudioSinkFailedStartup();
673 // Synchronously, return the next video frame and mark the element unable to
674 // participate in decode suspending.
676 // This function is synchronous for cases where decoding has been suspended
677 // and JS needs a frame to use in, eg., nsLayoutUtils::SurfaceFromElement()
678 // via drawImage().
679 already_AddRefed<layers::Image> GetCurrentImage();
681 already_AddRefed<DOMMediaStream> GetSrcObject() const;
682 void SetSrcObject(DOMMediaStream& aValue);
683 void SetSrcObject(DOMMediaStream* aValue);
685 bool PreservesPitch() const { return mPreservesPitch; }
686 void SetPreservesPitch(bool aPreservesPitch);
688 MediaKeys* GetMediaKeys() const;
690 already_AddRefed<Promise> SetMediaKeys(MediaKeys* mediaKeys,
691 ErrorResult& aRv);
693 mozilla::dom::EventHandlerNonNull* GetOnencrypted();
694 void SetOnencrypted(mozilla::dom::EventHandlerNonNull* aCallback);
696 mozilla::dom::EventHandlerNonNull* GetOnwaitingforkey();
697 void SetOnwaitingforkey(mozilla::dom::EventHandlerNonNull* aCallback);
699 void DispatchEncrypted(const nsTArray<uint8_t>& aInitData,
700 const nsAString& aInitDataType) override;
702 bool IsEventAttributeNameInternal(nsAtom* aName) override;
704 bool ContainsRestrictedContent() const;
706 void NotifyWaitingForKey() override;
708 already_AddRefed<DOMMediaStream> CaptureAudio(ErrorResult& aRv,
709 MediaTrackGraph* aGraph);
711 already_AddRefed<DOMMediaStream> MozCaptureStream(ErrorResult& aRv);
713 already_AddRefed<DOMMediaStream> MozCaptureStreamUntilEnded(ErrorResult& aRv);
715 bool MozAudioCaptured() const { return mAudioCaptured; }
717 void MozGetMetadata(JSContext* aCx, JS::MutableHandle<JSObject*> aResult,
718 ErrorResult& aRv);
720 double MozFragmentEnd();
722 AudioTrackList* AudioTracks();
724 VideoTrackList* VideoTracks();
726 TextTrackList* GetTextTracks();
728 already_AddRefed<TextTrack> AddTextTrack(TextTrackKind aKind,
729 const nsAString& aLabel,
730 const nsAString& aLanguage);
732 void AddTextTrack(TextTrack* aTextTrack) {
733 GetOrCreateTextTrackManager()->AddTextTrack(aTextTrack);
736 void RemoveTextTrack(TextTrack* aTextTrack, bool aPendingListOnly = false) {
737 if (mTextTrackManager) {
738 mTextTrackManager->RemoveTextTrack(aTextTrack, aPendingListOnly);
742 void NotifyCueAdded(TextTrackCue& aCue) {
743 if (mTextTrackManager) {
744 mTextTrackManager->NotifyCueAdded(aCue);
747 void NotifyCueRemoved(TextTrackCue& aCue) {
748 if (mTextTrackManager) {
749 mTextTrackManager->NotifyCueRemoved(aCue);
752 void NotifyCueUpdated(TextTrackCue* aCue) {
753 if (mTextTrackManager) {
754 mTextTrackManager->NotifyCueUpdated(aCue);
758 void NotifyCueDisplayStatesChanged();
760 bool IsBlessed() const { return mIsBlessed; }
762 // A method to check whether we are currently playing.
763 bool IsCurrentlyPlaying() const;
765 // Returns true if the media element is being destroyed. Used in
766 // dormancy checks to prevent dormant processing for an element
767 // that will soon be gone.
768 bool IsBeingDestroyed();
770 void OnVisibilityChange(Visibility aNewVisibility);
772 // Begin testing only methods
773 float ComputedVolume() const;
774 bool ComputedMuted() const;
776 // Return true if the media has been suspended media due to an inactive
777 // document or prohibiting by the docshell.
778 bool IsSuspendedByInactiveDocOrDocShell() const;
779 // End testing only methods
781 void SetMediaInfo(const MediaInfo& aInfo);
782 MediaInfo GetMediaInfo() const override;
784 // Gives access to the decoder's frame statistics, if present.
785 FrameStatistics* GetFrameStatistics() const override;
787 void DispatchAsyncTestingEvent(const nsAString& aName) override;
789 AbstractThread* AbstractMainThread() const final;
791 // Log the usage of a {visible / invisible} video element as
792 // the source of {drawImage(), createPattern(), createImageBitmap() and
793 // captureStream()} APIs. This function can be used to collect telemetries for
794 // bug 1352007.
795 enum class CallerAPI {
796 DRAW_IMAGE,
797 CREATE_PATTERN,
798 CREATE_IMAGEBITMAP,
799 CAPTURE_STREAM,
801 void LogVisibility(CallerAPI aAPI);
803 Document* GetDocument() const override;
805 already_AddRefed<GMPCrashHelper> CreateGMPCrashHelper() override;
807 nsISerialEventTarget* MainThreadEventTarget() {
808 return mMainThreadEventTarget;
811 // Set the sink id (of the output device) that the audio will play. If aSinkId
812 // is empty the default device will be set.
813 already_AddRefed<Promise> SetSinkId(const nsAString& aSinkId,
814 ErrorResult& aRv);
815 // Get the sink id of the device that audio is being played. Initial value is
816 // empty and the default device is being used.
817 void GetSinkId(nsString& aSinkId) const {
818 MOZ_ASSERT(NS_IsMainThread());
819 aSinkId = mSink.first;
822 // This is used to notify MediaElementAudioSourceNode that media element is
823 // allowed to play when media element is used as a source for web audio, so
824 // that we can start AudioContext if it was not allowed to start.
825 RefPtr<GenericNonExclusivePromise> GetAllowedToPlayPromise();
827 bool GetShowPosterFlag() const { return mShowPoster; }
829 bool IsAudible() const;
831 // Return key system in use if we have one, otherwise return nothing.
832 Maybe<nsAutoString> GetKeySystem() const override;
834 protected:
835 virtual ~HTMLMediaElement();
837 class AudioChannelAgentCallback;
838 class ChannelLoader;
839 class ErrorSink;
840 class MediaElementTrackSource;
841 class MediaLoadListener;
842 class MediaStreamRenderer;
843 class MediaStreamTrackListener;
844 class ShutdownObserver;
845 class TitleChangeObserver;
846 class MediaControlKeyListener;
848 MediaDecoderOwner::NextFrameStatus NextFrameStatus();
850 void SetDecoder(MediaDecoder* aDecoder);
852 void PlayInternal(bool aHandlingUserInput);
854 // See spec, https://html.spec.whatwg.org/#internal-pause-steps
855 void PauseInternal();
857 /** Use this method to change the mReadyState member, so required
858 * events can be fired.
860 void ChangeReadyState(nsMediaReadyState aState);
863 * Use this method to change the mNetworkState member, so required
864 * actions will be taken during the transition.
866 void ChangeNetworkState(nsMediaNetworkState aState);
869 * The MediaElement will be responsible for creating and releasing the audio
870 * wakelock depending on the playing and audible state.
872 virtual void WakeLockRelease();
873 virtual void UpdateWakeLock();
875 void CreateAudioWakeLockIfNeeded();
876 void ReleaseAudioWakeLockIfExists();
877 RefPtr<WakeLock> mWakeLock;
880 * Logs a warning message to the web console to report various failures.
881 * aMsg is the localized message identifier, aParams is the parameters to
882 * be substituted into the localized message, and aParamCount is the number
883 * of parameters in aParams.
885 void ReportLoadError(const char* aMsg, const nsTArray<nsString>& aParams =
886 nsTArray<nsString>());
889 * Log message to web console.
891 void ReportToConsole(
892 uint32_t aErrorFlags, const char* aMsg,
893 const nsTArray<nsString>& aParams = nsTArray<nsString>()) const;
896 * Changes mHasPlayedOrSeeked to aValue. If mHasPlayedOrSeeked changes
897 * we'll force a reflow so that the video frame gets reflowed to reflect
898 * the poster hiding or showing immediately.
900 void SetPlayedOrSeeked(bool aValue);
903 * Initialize the media element for playback of aStream
905 void SetupSrcMediaStreamPlayback(DOMMediaStream* aStream);
907 * Stop playback on mSrcStream.
909 void EndSrcMediaStreamPlayback();
911 * Ensure we're playing mSrcStream if and only if we're not paused.
913 enum { REMOVING_SRC_STREAM = 0x1 };
914 void UpdateSrcMediaStreamPlaying(uint32_t aFlags = 0);
917 * Ensure currentTime progresses if and only if we're potentially playing
918 * mSrcStream. Called by the watch manager while we're playing mSrcStream, and
919 * one of the inputs to the potentially playing algorithm changes.
921 void UpdateSrcStreamPotentiallyPlaying();
924 * mSrcStream's graph's CurrentTime() has been updated. It might be time to
925 * fire "timeupdate".
927 void UpdateSrcStreamTime();
930 * Called after a tail dispatch when playback of mSrcStream ended, to comply
931 * with the spec where we must start reporting true for the ended attribute
932 * after the event loop returns to step 1. A MediaStream could otherwise be
933 * manipulated to end a HTMLMediaElement synchronously.
935 void UpdateSrcStreamReportPlaybackEnded();
938 * Called by our DOMMediaStream::TrackListener when a new MediaStreamTrack has
939 * been added to the playback stream of |mSrcStream|.
941 void NotifyMediaStreamTrackAdded(const RefPtr<MediaStreamTrack>& aTrack);
944 * Called by our DOMMediaStream::TrackListener when a MediaStreamTrack in
945 * |mSrcStream|'s playback stream has ended.
947 void NotifyMediaStreamTrackRemoved(const RefPtr<MediaStreamTrack>& aTrack);
950 * Convenience method to get in a single list all enabled AudioTracks and, if
951 * this is a video element, the selected VideoTrack.
953 void GetAllEnabledMediaTracks(nsTArray<RefPtr<MediaTrack>>& aTracks);
956 * Enables or disables all tracks forwarded from mSrcStream to all
957 * OutputMediaStreams. We do this for muting the tracks when pausing,
958 * and unmuting when playing the media element again.
960 void SetCapturedOutputStreamsEnabled(bool aEnabled);
963 * Returns true if output tracks should be muted, based on the state of this
964 * media element.
966 enum class OutputMuteState { Muted, Unmuted };
967 OutputMuteState OutputTracksMuted();
970 * Sets the muted state of all output track sources. They are muted when we're
971 * paused and unmuted otherwise.
973 void UpdateOutputTracksMuting();
976 * Create a new MediaStreamTrack for the TrackSource corresponding to aTrack
977 * and add it to the DOMMediaStream in aOutputStream. This automatically sets
978 * the output track to enabled or disabled depending on our current playing
979 * state.
981 enum class AddTrackMode { ASYNC, SYNC };
982 void AddOutputTrackSourceToOutputStream(
983 MediaElementTrackSource* aSource, OutputMediaStream& aOutputStream,
984 AddTrackMode aMode = AddTrackMode::ASYNC);
987 * Creates output track sources when this media element is captured, tracks
988 * exist, playback is not ended and readyState is >= HAVE_METADATA.
990 void UpdateOutputTrackSources();
993 * Returns an DOMMediaStream containing the played contents of this
994 * element. When aBehavior is FINISH_WHEN_ENDED, when this element ends
995 * playback we will finish the stream and not play any more into it. When
996 * aType is CONTINUE_WHEN_ENDED, ending playback does not finish the stream.
997 * The stream will never finish.
999 * When aType is CAPTURE_AUDIO, we stop playout of audio and instead route it
1000 * to the DOMMediaStream. Volume and mute state will be applied to the audio
1001 * reaching the stream. No video tracks will be captured in this case.
1003 already_AddRefed<DOMMediaStream> CaptureStreamInternal(
1004 StreamCaptureBehavior aFinishBehavior,
1005 StreamCaptureType aStreamCaptureType, MediaTrackGraph* aGraph);
1008 * Initialize a decoder as a clone of an existing decoder in another
1009 * element.
1010 * mLoadingSrc must already be set.
1012 nsresult InitializeDecoderAsClone(ChannelMediaDecoder* aOriginal);
1015 * Call Load() and FinishDecoderSetup() on the decoder. It also handle
1016 * resource cloning if DecoderType is ChannelMediaDecoder.
1018 template <typename DecoderType, typename... LoadArgs>
1019 nsresult SetupDecoder(DecoderType* aDecoder, LoadArgs&&... aArgs);
1022 * Initialize a decoder to load the given channel. The decoder's stream
1023 * listener is returned via aListener.
1024 * mLoadingSrc must already be set.
1026 nsresult InitializeDecoderForChannel(nsIChannel* aChannel,
1027 nsIStreamListener** aListener);
1030 * Finish setting up the decoder after Load() has been called on it.
1031 * Called by InitializeDecoderForChannel/InitializeDecoderAsClone.
1033 nsresult FinishDecoderSetup(MediaDecoder* aDecoder);
1036 * Call this after setting up mLoadingSrc and mDecoder.
1038 void AddMediaElementToURITable();
1040 * Call this before modifying mLoadingSrc.
1042 void RemoveMediaElementFromURITable();
1044 * Call this to find a media element with the same NodePrincipal and
1045 * mLoadingSrc set to aURI, and with a decoder on which Load() has been
1046 * called.
1048 HTMLMediaElement* LookupMediaElementURITable(nsIURI* aURI);
1051 * Shutdown and clear mDecoder and maintain associated invariants.
1053 void ShutdownDecoder();
1055 * Execute the initial steps of the load algorithm that ensure existing
1056 * loads are aborted, the element is emptied, and a new load ID is
1057 * created.
1059 void AbortExistingLoads();
1062 * This is the dedicated media source failure steps.
1063 * Called when all potential resources are exhausted. Changes network
1064 * state to NETWORK_NO_SOURCE, and sends error event with code
1065 * MEDIA_ERR_SRC_NOT_SUPPORTED.
1067 void NoSupportedMediaSourceError(
1068 const nsACString& aErrorDetails = nsCString());
1071 * Per spec, Failed with elements: Queue a task, using the DOM manipulation
1072 * task source, to fire a simple event named error at the candidate element.
1073 * So dispatch |QueueLoadFromSourceTask| to main thread to make sure the task
1074 * will be executed later than loadstart event.
1076 void DealWithFailedElement(nsIContent* aSourceElement);
1079 * Attempts to load resources from the <source> children. This is a
1080 * substep of the resource selection algorithm. Do not call this directly,
1081 * call QueueLoadFromSourceTask() instead.
1083 void LoadFromSourceChildren();
1086 * Asynchronously awaits a stable state, and then causes
1087 * LoadFromSourceChildren() to be called on the main threads' event loop.
1089 void QueueLoadFromSourceTask();
1092 * Runs the media resource selection algorithm.
1094 void SelectResource();
1097 * A wrapper function that allows us to cleanly reset flags after a call
1098 * to SelectResource()
1100 void SelectResourceWrapper();
1103 * Asynchronously awaits a stable state, and then causes SelectResource()
1104 * to be run on the main thread's event loop.
1106 void QueueSelectResourceTask();
1109 * When loading a new source on an existing media element, make sure to reset
1110 * everything that is accessible using the media element API.
1112 void ResetState();
1115 * The resource-fetch algorithm step of the load algorithm.
1117 MediaResult LoadResource();
1120 * Selects the next <source> child from which to load a resource. Called
1121 * during the resource selection algorithm. Stores the return value in
1122 * mSourceLoadCandidate before returning.
1124 Element* GetNextSource();
1127 * Changes mDelayingLoadEvent, and will call BlockOnLoad()/UnblockOnLoad()
1128 * on the owning document, so it can delay the load event firing.
1130 void ChangeDelayLoadStatus(bool aDelay);
1133 * If we suspended downloading after the first frame, unsuspend now.
1135 void StopSuspendingAfterFirstFrame();
1138 * Called when our channel is redirected to another channel.
1139 * Updates our mChannel reference to aNewChannel.
1141 nsresult OnChannelRedirect(nsIChannel* aChannel, nsIChannel* aNewChannel,
1142 uint32_t aFlags);
1145 * Call this to reevaluate whether we should be holding a self-reference.
1147 void AddRemoveSelfReference();
1150 * Called when "xpcom-shutdown" event is received.
1152 void NotifyShutdownEvent();
1155 * Possible values of the 'preload' attribute.
1157 enum PreloadAttrValue : uint8_t {
1158 PRELOAD_ATTR_EMPTY, // set to ""
1159 PRELOAD_ATTR_NONE, // set to "none"
1160 PRELOAD_ATTR_METADATA, // set to "metadata"
1161 PRELOAD_ATTR_AUTO // set to "auto"
1165 * The preloading action to perform. These dictate how we react to the
1166 * preload attribute. See mPreloadAction.
1168 enum PreloadAction {
1169 PRELOAD_UNDEFINED = 0, // not determined - used only for initialization
1170 PRELOAD_NONE = 1, // do not preload
1171 PRELOAD_METADATA = 2, // preload only the metadata (and first frame)
1172 PRELOAD_ENOUGH = 3 // preload enough data to allow uninterrupted
1173 // playback
1177 * The guts of Load(). Load() acts as a wrapper around this which sets
1178 * mIsDoingExplicitLoad to true so that when script calls 'load()'
1179 * preload-none will be automatically upgraded to preload-metadata.
1181 void DoLoad();
1184 * Suspends the load of mLoadingSrc, so that it can be resumed later
1185 * by ResumeLoad(). This is called when we have a media with a 'preload'
1186 * attribute value of 'none', during the resource selection algorithm.
1188 void SuspendLoad();
1191 * Resumes a previously suspended load (suspended by SuspendLoad(uri)).
1192 * Will continue running the resource selection algorithm.
1193 * Sets mPreloadAction to aAction.
1195 void ResumeLoad(PreloadAction aAction);
1198 * Handle a change to the preload attribute. Should be called whenever the
1199 * value (or presence) of the preload attribute changes. The change in
1200 * attribute value may cause a change in the mPreloadAction of this
1201 * element. If there is a change then this method will initiate any
1202 * behaviour that is necessary to implement the action.
1204 void UpdatePreloadAction();
1207 * Fire progress events if needed according to the time and byte constraints
1208 * outlined in the specification. aHaveNewProgress is true if progress has
1209 * just been detected. Otherwise the method is called as a result of the
1210 * progress timer.
1212 void CheckProgress(bool aHaveNewProgress);
1213 static void ProgressTimerCallback(nsITimer* aTimer, void* aClosure);
1215 * Start timer to update download progress.
1217 void StartProgressTimer();
1219 * Start sending progress and/or stalled events.
1221 void StartProgress();
1223 * Stop progress information timer and events.
1225 void StopProgress();
1228 * Dispatches an error event to a child source element.
1230 void DispatchAsyncSourceError(nsIContent* aSourceElement);
1233 * Resets the media element for an error condition as per aErrorCode.
1234 * aErrorCode must be one of WebIDL HTMLMediaElement error codes.
1236 void Error(uint16_t aErrorCode,
1237 const nsACString& aErrorDetails = nsCString());
1240 * Returns the URL spec of the currentSrc.
1242 void GetCurrentSpec(nsCString& aString);
1245 * Process any media fragment entries in the URI
1247 void ProcessMediaFragmentURI();
1250 * Mute or unmute the audio and change the value that the |muted| map.
1252 void SetMutedInternal(uint32_t aMuted);
1254 * Update the volume of the output audio stream to match the element's
1255 * current mMuted/mVolume/mAudioChannelFaded state.
1257 void SetVolumeInternal();
1260 * Suspend or resume element playback and resource download. When we suspend
1261 * playback, event delivery would also be suspended (and events queued) until
1262 * the element is resumed.
1264 void SuspendOrResumeElement(bool aSuspendElement);
1266 // Get the HTMLMediaElement object if the decoder is being used from an
1267 // HTML media element, and null otherwise.
1268 HTMLMediaElement* GetMediaElement() final { return this; }
1270 // Return true if decoding should be paused
1271 bool GetPaused() final { return Paused(); }
1273 // Seeks to aTime seconds. aSeekType can be Exact to seek to exactly the
1274 // seek target, or PrevSyncPoint if a quicker but less precise seek is
1275 // desired, and we'll seek to the sync point (keyframe and/or start of the
1276 // next block of audio samples) preceeding seek target.
1277 void Seek(double aTime, SeekTarget::Type aSeekType, ErrorResult& aRv);
1279 // Update the audio channel playing state
1280 void UpdateAudioChannelPlayingState();
1282 // Adds to the element's list of pending text tracks each text track
1283 // in the element's list of text tracks whose text track mode is not disabled
1284 // and whose text track readiness state is loading.
1285 void PopulatePendingTextTrackList();
1287 // Gets a reference to the MediaElement's TextTrackManager. If the
1288 // MediaElement doesn't yet have one then it will create it.
1289 TextTrackManager* GetOrCreateTextTrackManager();
1291 // Recomputes ready state and fires events as necessary based on current
1292 // state.
1293 void UpdateReadyStateInternal();
1295 // Create or destroy the captured stream.
1296 void AudioCaptureTrackChange(bool aCapture);
1298 // If the network state is empty and then we would trigger DoLoad().
1299 void MaybeDoLoad();
1301 // Anything we need to check after played success and not related with spec.
1302 void UpdateCustomPolicyAfterPlayed();
1304 // Returns a StreamCaptureType populated with the right bits, depending on the
1305 // tracks this HTMLMediaElement has.
1306 StreamCaptureType CaptureTypeForElement();
1308 // True if this element can be captured, false otherwise.
1309 bool CanBeCaptured(StreamCaptureType aCaptureType);
1311 using nsGenericHTMLElement::DispatchEvent;
1312 // For nsAsyncEventRunner.
1313 nsresult DispatchEvent(const nsAString& aName);
1315 already_AddRefed<nsMediaEventRunner> GetEventRunner(
1316 const nsAString& aName, EventFlag aFlag = EventFlag::eNone);
1318 // This method moves the mPendingPlayPromises into a temperate object. So the
1319 // mPendingPlayPromises is cleared after this method call.
1320 nsTArray<RefPtr<PlayPromise>> TakePendingPlayPromises();
1322 // This method snapshots the mPendingPlayPromises by TakePendingPlayPromises()
1323 // and queues a task to resolve them.
1324 void AsyncResolvePendingPlayPromises();
1326 // This method snapshots the mPendingPlayPromises by TakePendingPlayPromises()
1327 // and queues a task to reject them.
1328 void AsyncRejectPendingPlayPromises(nsresult aError);
1330 // This method snapshots the mPendingPlayPromises by TakePendingPlayPromises()
1331 // and queues a task to resolve them also to dispatch a "playing" event.
1332 void NotifyAboutPlaying();
1334 already_AddRefed<Promise> CreateDOMPromise(ErrorResult& aRv) const;
1336 // Pass information for deciding the video decode mode to decoder.
1337 void NotifyDecoderActivityChanges() const;
1339 // Constructs an AudioTrack in mAudioTrackList if aInfo reports that audio is
1340 // available, and a VideoTrack in mVideoTrackList if aInfo reports that video
1341 // is available.
1342 void ConstructMediaTracks(const MediaInfo* aInfo);
1344 // Removes all MediaTracks from mAudioTrackList and mVideoTrackList and fires
1345 // "removetrack" on the lists accordingly.
1346 // Note that by spec, this should not fire "removetrack". However, it appears
1347 // other user agents do, per
1348 // https://wpt.fyi/results/media-source/mediasource-avtracks.html.
1349 void RemoveMediaTracks();
1351 // Mark the decoder owned by the element as tainted so that the
1352 // suspend-video-decoder is disabled.
1353 void MarkAsTainted();
1355 virtual nsresult AfterSetAttr(int32_t aNameSpaceID, nsAtom* aName,
1356 const nsAttrValue* aValue,
1357 const nsAttrValue* aOldValue,
1358 nsIPrincipal* aMaybeScriptedPrincipal,
1359 bool aNotify) override;
1360 virtual nsresult OnAttrSetButNotChanged(int32_t aNamespaceID, nsAtom* aName,
1361 const nsAttrValueOrString& aValue,
1362 bool aNotify) override;
1364 bool DetachExistingMediaKeys();
1365 bool TryRemoveMediaKeysAssociation();
1366 void RemoveMediaKeys();
1367 bool AttachNewMediaKeys();
1368 bool TryMakeAssociationWithCDM(CDMProxy* aProxy);
1369 void MakeAssociationWithCDMResolved();
1370 void SetCDMProxyFailure(const MediaResult& aResult);
1371 void ResetSetMediaKeysTempVariables();
1373 void PauseIfShouldNotBePlaying();
1375 WatchManager<HTMLMediaElement> mWatchManager;
1377 // When the play is not allowed, dispatch related events which are used for
1378 // testing or changing control UI.
1379 void DispatchEventsWhenPlayWasNotAllowed();
1381 // When the doc is blocked permanantly, we would dispatch event to notify
1382 // front-end side to show blocking icon.
1383 void MaybeNotifyAutoplayBlocked();
1385 // Dispatch event for video control when video gets blocked in order to show
1386 // the click-to-play icon.
1387 void DispatchBlockEventForVideoControl();
1389 // When playing state change, we have to notify MediaControl in the chrome
1390 // process in order to keep its playing state correct.
1391 void NotifyMediaControlPlaybackStateChanged();
1393 // Clear the timer when we want to continue listening to the media control
1394 // key events.
1395 void ClearStopMediaControlTimerIfNeeded();
1397 // Sets a secondary renderer for mSrcStream, so this media element can be
1398 // rendered in Picture-in-Picture mode when playing a MediaStream. A null
1399 // aContainer will unset the secondary renderer. aFirstFrameOutput allows
1400 // for injecting a listener of the callers choice for rendering the first
1401 // frame.
1402 void SetSecondaryMediaStreamRenderer(
1403 VideoFrameContainer* aContainer,
1404 FirstFrameVideoOutput* aFirstFrameOutput = nullptr);
1406 // This function is used to update the status of media control when the media
1407 // changes its status of being used in the Picture-in-Picture mode.
1408 void UpdateMediaControlAfterPictureInPictureModeChanged();
1410 // The current decoder. Load() has been called on this decoder.
1411 // At most one of mDecoder and mSrcStream can be non-null.
1412 RefPtr<MediaDecoder> mDecoder;
1414 // The DocGroup-specific nsISerialEventTarget of this HTML element on the main
1415 // thread.
1416 nsCOMPtr<nsISerialEventTarget> mMainThreadEventTarget;
1418 // The DocGroup-specific AbstractThread::MainThread() of this HTML element.
1419 RefPtr<AbstractThread> mAbstractMainThread;
1421 // A reference to the VideoFrameContainer which contains the current frame
1422 // of video to display.
1423 RefPtr<VideoFrameContainer> mVideoFrameContainer;
1425 // Holds a reference to the MediaStream that has been set in the src
1426 // attribute.
1427 RefPtr<DOMMediaStream> mSrcAttrStream;
1429 // Holds the triggering principal for the src attribute.
1430 nsCOMPtr<nsIPrincipal> mSrcAttrTriggeringPrincipal;
1432 // Holds a reference to the MediaStream that we're actually playing.
1433 // At most one of mDecoder and mSrcStream can be non-null.
1434 RefPtr<DOMMediaStream> mSrcStream;
1436 // The MediaStreamRenderer handles rendering of our selected video track, and
1437 // enabled audio tracks, while mSrcStream is set.
1438 RefPtr<MediaStreamRenderer> mMediaStreamRenderer;
1440 // The secondary MediaStreamRenderer handles rendering of our selected video
1441 // track to a secondary VideoFrameContainer, while mSrcStream is set.
1442 RefPtr<MediaStreamRenderer> mSecondaryMediaStreamRenderer;
1444 // True once PlaybackEnded() is called and we're playing a MediaStream.
1445 // Reset to false if we start playing mSrcStream again.
1446 Watchable<bool> mSrcStreamPlaybackEnded = {
1447 false, "HTMLMediaElement::mSrcStreamPlaybackEnded"};
1449 // Mirrors mSrcStreamPlaybackEnded after a tail dispatch when set to true,
1450 // but may be be forced to false directly. To accomodate when an application
1451 // ends playback synchronously by manipulating mSrcStream or its tracks,
1452 // e.g., through MediaStream.removeTrack(), or MediaStreamTrack.stop().
1453 bool mSrcStreamReportPlaybackEnded = false;
1455 // Holds a reference to the stream connecting this stream to the window
1456 // capture sink.
1457 UniquePtr<MediaStreamWindowCapturer> mStreamWindowCapturer;
1459 // Holds references to the DOM wrappers for the MediaStreams that we're
1460 // writing to.
1461 nsTArray<OutputMediaStream> mOutputStreams;
1463 // Mapping for output tracks, from dom::MediaTrack ids to the
1464 // MediaElementTrackSource that represents the source of all corresponding
1465 // MediaStreamTracks captured from this element.
1466 nsRefPtrHashtable<nsStringHashKey, MediaElementTrackSource>
1467 mOutputTrackSources;
1469 // The currently selected video stream track.
1470 RefPtr<VideoStreamTrack> mSelectedVideoStreamTrack;
1472 const RefPtr<ShutdownObserver> mShutdownObserver;
1474 const RefPtr<TitleChangeObserver> mTitleChangeObserver;
1476 // Holds a reference to the MediaSource, if any, referenced by the src
1477 // attribute on the media element.
1478 RefPtr<MediaSource> mSrcMediaSource;
1480 // Holds a reference to the MediaSource supplying data for playback. This
1481 // may either match mSrcMediaSource or come from Source element children.
1482 // This is set when and only when mLoadingSrc corresponds to an object url
1483 // that resolved to a MediaSource.
1484 RefPtr<MediaSource> mMediaSource;
1486 RefPtr<ChannelLoader> mChannelLoader;
1488 // Points to the child source elements, used to iterate through the children
1489 // when selecting a resource to load. This is the previous sibling of the
1490 // child considered the current 'candidate' in:
1491 // https://html.spec.whatwg.org/multipage/media.html#concept-media-load-algorithm
1493 // mSourcePointer == nullptr, we will next try to load |GetFirstChild()|.
1494 // mSourcePointer == GetLastChild(), we've exhausted all sources, waiting
1495 // for new elements to be appended.
1496 nsCOMPtr<nsIContent> mSourcePointer;
1498 // Points to the document whose load we're blocking. This is the document
1499 // we're bound to when loading starts.
1500 nsCOMPtr<Document> mLoadBlockedDoc;
1502 // This is used to help us block/resume the event delivery.
1503 class EventBlocker;
1504 RefPtr<EventBlocker> mEventBlocker;
1506 // Media loading flags. See:
1507 // http://www.whatwg.org/specs/web-apps/current-work/#video)
1508 nsMediaNetworkState mNetworkState = HTMLMediaElement_Binding::NETWORK_EMPTY;
1509 Watchable<nsMediaReadyState> mReadyState = {
1510 HTMLMediaElement_Binding::HAVE_NOTHING, "HTMLMediaElement::mReadyState"};
1512 enum LoadAlgorithmState {
1513 // No load algorithm instance is waiting for a source to be added to the
1514 // media in order to continue loading.
1515 NOT_WAITING,
1516 // We've run the load algorithm, and we tried all source children of the
1517 // media element, and failed to load any successfully. We're waiting for
1518 // another source element to be added to the media element, and will try
1519 // to load any such element when its added.
1520 WAITING_FOR_SOURCE
1523 // The current media load ID. This is incremented every time we start a
1524 // new load. Async events note the ID when they're first sent, and only fire
1525 // if the ID is unchanged when they come to fire.
1526 uint32_t mCurrentLoadID = 0;
1528 // Denotes the waiting state of a load algorithm instance. When the load
1529 // algorithm is waiting for a source element child to be added, this is set
1530 // to WAITING_FOR_SOURCE, otherwise it's NOT_WAITING.
1531 LoadAlgorithmState mLoadWaitStatus = NOT_WAITING;
1533 // Current audio volume
1534 double mVolume = 1.0;
1536 // True if the audio track is not silent.
1537 bool mIsAudioTrackAudible = false;
1539 enum MutedReasons {
1540 MUTED_BY_CONTENT = 0x01,
1541 MUTED_BY_INVALID_PLAYBACK_RATE = 0x02,
1542 MUTED_BY_AUDIO_CHANNEL = 0x04,
1543 MUTED_BY_AUDIO_TRACK = 0x08
1546 uint32_t mMuted = 0;
1548 UniquePtr<const MetadataTags> mTags;
1550 // URI of the resource we're attempting to load. This stores the value we
1551 // return in the currentSrc attribute. Use GetCurrentSrc() to access the
1552 // currentSrc attribute.
1553 // This is always the original URL we're trying to load --- before
1554 // redirects etc.
1555 nsCOMPtr<nsIURI> mLoadingSrc;
1557 // The triggering principal for the current source.
1558 nsCOMPtr<nsIPrincipal> mLoadingSrcTriggeringPrincipal;
1560 // Stores the current preload action for this element. Initially set to
1561 // PRELOAD_UNDEFINED, its value is changed by calling
1562 // UpdatePreloadAction().
1563 PreloadAction mPreloadAction = PRELOAD_UNDEFINED;
1565 // Time that the last timeupdate event was queued. Read/Write from the
1566 // main thread only.
1567 TimeStamp mQueueTimeUpdateRunnerTime;
1569 // Time that the last timeupdate event was fired. Read/Write from the
1570 // main thread only.
1571 TimeStamp mLastTimeUpdateDispatchTime;
1573 // Time that the last progress event was fired. Read/Write from the
1574 // main thread only.
1575 TimeStamp mProgressTime;
1577 // Time that data was last read from the media resource. Used for
1578 // computing if the download has stalled and to rate limit progress events
1579 // when data is arriving slower than PROGRESS_MS.
1580 // Read/Write from the main thread only.
1581 TimeStamp mDataTime;
1583 // Media 'currentTime' value when the last timeupdate event was queued.
1584 // Read/Write from the main thread only.
1585 double mLastCurrentTime = 0.0;
1587 // Logical start time of the media resource in seconds as obtained
1588 // from any media fragments. A negative value indicates that no
1589 // fragment time has been set. Read/Write from the main thread only.
1590 double mFragmentStart = -1.0;
1592 // Logical end time of the media resource in seconds as obtained
1593 // from any media fragments. A negative value indicates that no
1594 // fragment time has been set. Read/Write from the main thread only.
1595 double mFragmentEnd = -1.0;
1597 // The defaultPlaybackRate attribute gives the desired speed at which the
1598 // media resource is to play, as a multiple of its intrinsic speed.
1599 double mDefaultPlaybackRate = 1.0;
1601 // The playbackRate attribute gives the speed at which the media resource
1602 // plays, as a multiple of its intrinsic speed. If it is not equal to the
1603 // defaultPlaybackRate, then the implication is that the user is using a
1604 // feature such as fast forward or slow motion playback.
1605 double mPlaybackRate = 1.0;
1607 // True if pitch correction is applied when playbackRate is set to a
1608 // non-intrinsic value.
1609 bool mPreservesPitch = true;
1611 // Reference to the source element last returned by GetNextSource().
1612 // This is the child source element which we're trying to load from.
1613 nsCOMPtr<nsIContent> mSourceLoadCandidate;
1615 // Range of time played.
1616 RefPtr<TimeRanges> mPlayed;
1618 // Timer used for updating progress events.
1619 nsCOMPtr<nsITimer> mProgressTimer;
1621 // Encrypted Media Extension media keys.
1622 RefPtr<MediaKeys> mMediaKeys;
1623 RefPtr<MediaKeys> mIncomingMediaKeys;
1624 // The dom promise is used for HTMLMediaElement::SetMediaKeys.
1625 RefPtr<DetailedPromise> mSetMediaKeysDOMPromise;
1626 // Used to indicate if the MediaKeys attaching operation is on-going or not.
1627 bool mAttachingMediaKey = false;
1628 MozPromiseRequestHolder<SetCDMPromise> mSetCDMRequest;
1630 // Stores the time at the start of the current 'played' range.
1631 double mCurrentPlayRangeStart = 1.0;
1633 // True if loadeddata has been fired.
1634 bool mLoadedDataFired = false;
1636 // Indicates whether current playback is a result of user action
1637 // (ie. calling of the Play method), or automatic playback due to
1638 // the 'autoplay' attribute being set. A true value indicates the
1639 // latter case.
1640 // The 'autoplay' HTML attribute indicates that the video should
1641 // start playing when loaded. The 'autoplay' attribute of the object
1642 // is a mirror of the HTML attribute. These are different from this
1643 // 'mAutoplaying' flag, which indicates whether the current playback
1644 // is a result of the autoplay attribute.
1645 bool mAutoplaying = true;
1647 // Playback of the video is paused either due to calling the
1648 // 'Pause' method, or playback not yet having started.
1649 Watchable<bool> mPaused = {true, "HTMLMediaElement::mPaused"};
1651 // The following two fields are here for the private storage of the builtin
1652 // video controls, and control 'casting' of the video to external devices
1653 // (TVs, projectors etc.)
1654 // True if casting is currently allowed
1655 bool mAllowCasting = false;
1656 // True if currently casting this video
1657 bool mIsCasting = false;
1659 // Set while there are some OutputMediaStreams this media element's enabled
1660 // and selected tracks are captured into. When set, all tracks are captured
1661 // into the graph of this dummy track.
1662 // NB: This is a SharedDummyTrack to allow non-default graphs (AudioContexts
1663 // with an explicit sampleRate defined) to capture this element. When
1664 // cross-graph tracks are supported, this can become a bool.
1665 Watchable<RefPtr<SharedDummyTrack>> mTracksCaptured;
1667 // True if the sound is being captured.
1668 bool mAudioCaptured = false;
1670 // If TRUE then the media element was actively playing before the currently
1671 // in progress seeking. If FALSE then the media element is either not seeking
1672 // or was not actively playing before the current seek. Used to decide whether
1673 // to raise the 'waiting' event as per 4.7.1.8 in HTML 5 specification.
1674 bool mPlayingBeforeSeek = false;
1676 // True if this element is suspended because the document is inactive or the
1677 // inactive docshell is not allowing media to play.
1678 bool mSuspendedByInactiveDocOrDocshell = false;
1680 // True if we're running the "load()" method.
1681 bool mIsRunningLoadMethod = false;
1683 // True if we're running or waiting to run queued tasks due to an explicit
1684 // call to "load()".
1685 bool mIsDoingExplicitLoad = false;
1687 // True if we're loading the resource from the child source elements.
1688 bool mIsLoadingFromSourceChildren = false;
1690 // True if we're delaying the "load" event. They are delayed until either
1691 // an error occurs, or the first frame is loaded.
1692 bool mDelayingLoadEvent = false;
1694 // True when we've got a task queued to call SelectResource(),
1695 // or while we're running SelectResource().
1696 bool mIsRunningSelectResource = false;
1698 // True when we already have select resource call queued
1699 bool mHaveQueuedSelectResource = false;
1701 // True if we suspended the decoder because we were paused,
1702 // preloading metadata is enabled, autoplay was not enabled, and we loaded
1703 // the first frame.
1704 bool mSuspendedAfterFirstFrame = false;
1706 // True if we are allowed to suspend the decoder because we were paused,
1707 // preloading metdata was enabled, autoplay was not enabled, and we loaded
1708 // the first frame.
1709 bool mAllowSuspendAfterFirstFrame = true;
1711 // True if we've played or completed a seek. We use this to determine
1712 // when the poster frame should be shown.
1713 bool mHasPlayedOrSeeked = false;
1715 // True if we've added a reference to ourselves to keep the element
1716 // alive while no-one is referencing it but the element may still fire
1717 // events of its own accord.
1718 bool mHasSelfReference = false;
1720 // True if we've received a notification that the engine is shutting
1721 // down.
1722 bool mShuttingDown = false;
1724 // True if we've suspended a load in the resource selection algorithm
1725 // due to loading a preload:none media. When true, the resource we'll
1726 // load when the user initiates either playback or an explicit load is
1727 // stored in mPreloadURI.
1728 bool mSuspendedForPreloadNone = false;
1730 // True if we've connected mSrcStream to the media element output.
1731 bool mSrcStreamIsPlaying = false;
1733 // True if we should set nsIClassOfService::UrgentStart to the channel to
1734 // get the response ASAP for better user responsiveness.
1735 bool mUseUrgentStartForChannel = false;
1737 // The CORS mode when loading the media element
1738 CORSMode mCORSMode = CORS_NONE;
1740 // Info about the played media.
1741 MediaInfo mMediaInfo;
1743 // True if the media has encryption information.
1744 bool mIsEncrypted = false;
1746 enum WaitingForKeyState {
1747 NOT_WAITING_FOR_KEY = 0,
1748 WAITING_FOR_KEY = 1,
1749 WAITING_FOR_KEY_DISPATCHED = 2
1752 // True when the CDM cannot decrypt the current block due to lacking a key.
1753 // Note: the "waitingforkey" event is not dispatched until all decoded data
1754 // has been rendered.
1755 WaitingForKeyState mWaitingForKey = NOT_WAITING_FOR_KEY;
1757 // Listens for waitingForKey events from the owned decoder.
1758 MediaEventListener mWaitingForKeyListener;
1760 // Init Data that needs to be sent in 'encrypted' events in MetadataLoaded().
1761 EncryptionInfo mPendingEncryptedInitData;
1763 // True if the media's channel's download has been suspended.
1764 Watchable<bool> mDownloadSuspendedByCache = {
1765 false, "HTMLMediaElement::mDownloadSuspendedByCache"};
1767 // Disable the video playback by track selection. This flag might not be
1768 // enough if we ever expand the ability of supporting multi-tracks video
1769 // playback.
1770 bool mDisableVideo = false;
1772 RefPtr<TextTrackManager> mTextTrackManager;
1774 RefPtr<AudioTrackList> mAudioTrackList;
1776 RefPtr<VideoTrackList> mVideoTrackList;
1778 UniquePtr<MediaStreamTrackListener> mMediaStreamTrackListener;
1780 // The principal guarding mVideoFrameContainer access when playing a
1781 // MediaStream.
1782 nsCOMPtr<nsIPrincipal> mSrcStreamVideoPrincipal;
1784 // True if the autoplay media was blocked because it hadn't loaded metadata
1785 // yet.
1786 bool mBlockedAsWithoutMetadata = false;
1788 // This promise is used to notify MediaElementAudioSourceNode that media
1789 // element is allowed to play when MediaElement is used as a source for web
1790 // audio.
1791 MozPromiseHolder<GenericNonExclusivePromise> mAllowedToPlayPromise;
1793 // True if media has ever been blocked for autoplay, it's used to notify front
1794 // end to show the correct blocking icon when the document goes back from
1795 // bfcache.
1796 bool mHasEverBeenBlockedForAutoplay = false;
1798 // True if we have dispatched a task for text track changed, will be unset
1799 // when we starts processing text track changed.
1800 // https://html.spec.whatwg.org/multipage/media.html#pending-text-track-change-notification-flag
1801 bool mPendingTextTrackChanged = false;
1803 public:
1804 // This function will be called whenever a text track that is in a media
1805 // element's list of text tracks has its text track mode change value
1806 void NotifyTextTrackModeChanged();
1808 private:
1809 friend class nsMediaEventRunner;
1810 friend class nsResolveOrRejectPendingPlayPromisesRunner;
1812 already_AddRefed<PlayPromise> CreatePlayPromise(ErrorResult& aRv) const;
1814 virtual void MaybeBeginCloningVisually(){};
1816 uint32_t GetPreloadDefault() const;
1817 uint32_t GetPreloadDefaultAuto() const;
1820 * This function is called by AfterSetAttr and OnAttrSetButNotChanged.
1821 * It will not be called if the value is being unset.
1823 * @param aNamespaceID the namespace of the attr being set
1824 * @param aName the localname of the attribute being set
1825 * @param aNotify Whether we plan to notify document observers.
1827 void AfterMaybeChangeAttr(int32_t aNamespaceID, nsAtom* aName, bool aNotify);
1829 // True if Init() has been called after construction
1830 bool mInitialized = false;
1832 // True if user has called load(), seek() or element has started playing
1833 // before. It's *only* use for `click-to-play` blocking autoplay policy.
1834 // In addition, we would reset this once media aborts current load.
1835 bool mIsBlessed = false;
1837 // True if the first frame has been successfully loaded.
1838 Watchable<bool> mFirstFrameLoaded = {false,
1839 "HTMLMediaElement::mFirstFrameLoaded"};
1841 // Media elements also have a default playback start position, which must
1842 // initially be set to zero seconds. This time is used to allow the element to
1843 // be seeked even before the media is loaded.
1844 double mDefaultPlaybackStartPosition = 0.0;
1846 // True if media element has been marked as 'tainted' and can't
1847 // participate in video decoder suspending.
1848 bool mHasSuspendTaint = false;
1850 // True if media element has been forced into being considered 'hidden'.
1851 // For use by mochitests. Enabling pref "media.test.video-suspend"
1852 bool mForcedHidden = false;
1854 Visibility mVisibilityState = Visibility::Untracked;
1856 UniquePtr<ErrorSink> mErrorSink;
1858 // This wrapper will handle all audio channel related stuffs, eg. the
1859 // operations of tab audio indicator, Fennec's media control. Note:
1860 // mAudioChannelWrapper might be null after GC happened.
1861 RefPtr<AudioChannelAgentCallback> mAudioChannelWrapper;
1863 // A list of pending play promises. The elements are pushed during the play()
1864 // method call and are resolved/rejected during further playback steps.
1865 nsTArray<RefPtr<PlayPromise>> mPendingPlayPromises;
1867 // A list of already-dispatched but not yet run
1868 // nsResolveOrRejectPendingPlayPromisesRunners.
1869 // Runners whose Run() method is called remove themselves from this list.
1870 // We keep track of these because the load algorithm resolves/rejects all
1871 // already-dispatched pending play promises.
1872 nsTArray<nsResolveOrRejectPendingPlayPromisesRunner*>
1873 mPendingPlayPromisesRunners;
1875 // A pending seek promise which is created at Seek() method call and is
1876 // resolved/rejected at AsyncResolveSeekDOMPromiseIfExists()/
1877 // AsyncRejectSeekDOMPromiseIfExists() methods.
1878 RefPtr<dom::Promise> mSeekDOMPromise;
1880 // Return true if the docshell is inactive and explicitly wants to stop media
1881 // playing in that shell.
1882 bool ShouldBeSuspendedByInactiveDocShell() const;
1884 // For debugging bug 1407148.
1885 void AssertReadyStateIsNothing();
1887 // Contains the unique id of the sink device and the device info.
1888 // The initial value is ("", nullptr) and the default output device is used.
1889 // It can contain an invalid id and info if the device has been
1890 // unplugged. It can be set to ("", nullptr). It follows the spec attribute:
1891 // https://w3c.github.io/mediacapture-output/#htmlmediaelement-extensions
1892 // Read/Write from the main thread only.
1893 std::pair<nsString, RefPtr<AudioDeviceInfo>> mSink;
1895 // This flag is used to control when the user agent is to show a poster frame
1896 // for a video element instead of showing the video contents.
1897 // https://html.spec.whatwg.org/multipage/media.html#show-poster-flag
1898 bool mShowPoster;
1900 // We may delay starting playback of a media for an unvisited tab until it's
1901 // going to foreground. We would create ResumeDelayedMediaPlaybackAgent to
1902 // handle related operations at the time whenever delaying media playback is
1903 // needed.
1904 void CreateResumeDelayedMediaPlaybackAgentIfNeeded();
1905 void ClearResumeDelayedMediaPlaybackAgentIfNeeded();
1906 RefPtr<ResumeDelayedPlaybackAgent> mResumeDelayedPlaybackAgent;
1907 MozPromiseRequestHolder<ResumeDelayedPlaybackAgent::ResumePromise>
1908 mResumePlaybackRequest;
1910 // Return true if we have already a decoder or a src stream and don't have any
1911 // error.
1912 bool IsPlayable() const;
1914 // Return true if the media qualifies for being controlled by media control
1915 // keys.
1916 bool ShouldStartMediaControlKeyListener() const;
1918 // Start the listener if media fits the requirement of being able to be
1919 // controlled be media control keys.
1920 void StartMediaControlKeyListenerIfNeeded();
1922 // It's used to listen media control key, by which we would play or pause
1923 // media element.
1924 RefPtr<MediaControlKeyListener> mMediaControlKeyListener;
1926 // Method to update audio stream name
1927 void UpdateStreamName();
1929 // Return true if the media element is being used in picture in picture mode.
1930 bool IsBeingUsedInPictureInPictureMode() const;
1932 // Return true if we should queue a 'timeupdate' event runner to main thread.
1933 bool ShouldQueueTimeupdateAsyncTask(TimeupdateType aType) const;
1936 // Check if the context is chrome or has the debugger or tabs permission
1937 bool HasDebuggerOrTabsPrivilege(JSContext* aCx, JSObject* aObj);
1939 } // namespace mozilla::dom
1941 #endif // mozilla_dom_HTMLMediaElement_h