1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 et tw=78: */
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/. */
7 #ifndef mozilla_dom_MediaTrack_h
8 #define mozilla_dom_MediaTrack_h
10 #include "mozilla/DOMEventTargetHelper.h"
12 namespace mozilla::dom
{
19 * Base class of AudioTrack and VideoTrack. The AudioTrack and VideoTrack
20 * objects represent specific tracks of a media resource. Each track has aspects
21 * of an identifier, category, label, and language, even if a track is removed
22 * from its corresponding track list, those aspects do not change.
24 * When fetching the media resource, an audio/video track is created if the
25 * media resource is found to have an audio/video track. When the UA has learned
26 * that an audio/video track has ended, this audio/video track will be removed
27 * from its corresponding track list.
29 * Although AudioTrack and VideoTrack are not EventTargets, TextTrack is, and
30 * TextTrack inherits from MediaTrack as well (or is going to).
32 class MediaTrack
: public DOMEventTargetHelper
{
34 MediaTrack(nsIGlobalObject
* aOwnerGlobal
, const nsAString
& aId
,
35 const nsAString
& aKind
, const nsAString
& aLabel
,
36 const nsAString
& aLanguage
);
38 NS_DECL_ISUPPORTS_INHERITED
39 NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(dom::MediaTrack
,
44 FIRE_NO_EVENTS
= 1 << 0,
46 // The default behavior of enabling an audio track or selecting a video track
47 // fires a change event and notifies its media resource about the changes.
48 // It should not fire any events when fetching media resource.
49 virtual void SetEnabledInternal(bool aEnabled
, int aFlags
) = 0;
51 virtual AudioTrack
* AsAudioTrack() { return nullptr; }
53 virtual VideoTrack
* AsVideoTrack() { return nullptr; }
55 const nsString
& GetId() const { return mId
; }
58 void GetId(nsAString
& aId
) const { aId
= mId
; }
59 void GetKind(nsAString
& aKind
) const { aKind
= mKind
; }
60 void GetLabel(nsAString
& aLabel
) const { aLabel
= mLabel
; }
61 void GetLanguage(nsAString
& aLanguage
) const { aLanguage
= mLanguage
; }
63 friend class MediaTrackList
;
66 virtual ~MediaTrack();
68 void SetTrackList(MediaTrackList
* aList
);
70 RefPtr
<MediaTrackList
> mList
;
77 } // namespace mozilla::dom
79 #endif // mozilla_dom_MediaTrack_h