Bug 229924 - Refactor Video,Audio,TextTrack and TrackLists to not depend on HTMLMediaElement
Summary: Refactor Video,Audio,TextTrack and TrackLists to not depend on HTMLMediaElement
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Media (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Jer Noble
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2021-09-05 12:41 PDT by Jer Noble
Modified: 2021-09-15 13:42 PDT (History)
17 users (show)

See Also:


Attachments
Patch (109.20 KB, patch)
2021-09-05 17:46 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (106.78 KB, patch)
2021-09-07 14:47 PDT, Jer Noble
ews-feeder: commit-queue-
Details | Formatted Diff | Diff
Patch (106.88 KB, patch)
2021-09-07 15:01 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (107.08 KB, patch)
2021-09-07 15:57 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (107.25 KB, patch)
2021-09-07 20:20 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (107.19 KB, patch)
2021-09-08 09:26 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (107.35 KB, patch)
2021-09-08 11:22 PDT, Jer Noble
no flags Details | Formatted Diff | Diff
Patch (107.40 KB, patch)
2021-09-08 11:30 PDT, Jer Noble
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jer Noble 2021-09-05 12:41:23 PDT
Refactor Video,Audio,TextTrack and TrackLists to not depend on HTMLMediaElement
Comment 1 Jer Noble 2021-09-05 17:46:40 PDT Comment hidden (obsolete)
Comment 2 Jer Noble 2021-09-07 14:47:15 PDT Comment hidden (obsolete)
Comment 3 Jer Noble 2021-09-07 15:01:28 PDT Comment hidden (obsolete)
Comment 4 Jer Noble 2021-09-07 15:57:52 PDT Comment hidden (obsolete)
Comment 5 Jer Noble 2021-09-07 20:20:21 PDT Comment hidden (obsolete)
Comment 6 Jer Noble 2021-09-08 09:26:27 PDT Comment hidden (obsolete)
Comment 7 Jer Noble 2021-09-08 11:22:53 PDT Comment hidden (obsolete)
Comment 8 Jer Noble 2021-09-08 11:30:55 PDT
Created attachment 437650 [details]
Patch
Comment 9 EWS 2021-09-09 09:49:59 PDT
Committed r282220 (241507@main): <https://commits.webkit.org/241507@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 437650 [details].
Comment 10 Radar WebKit Bug Importer 2021-09-09 09:51:18 PDT
<rdar://problem/82929817>
Comment 11 Ryosuke Niwa 2021-09-10 15:38:35 PDT
Comment on attachment 437650 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=437650&action=review

> Source/WebCore/Modules/mediasource/SourceBuffer.cpp:638
> +        m_videoTracks = VideoTrackList::create(scriptExecutionContext());
> +        m_videoTracks->setOpaqueRootObserver(m_opaqueRootProvider);

Maybe we should cal this setOpaqueRootProvider? Or better yet, maybe the create function should take it as an argument.