Bug 214304

Summary: [iOS] Avoid loading media libraries in Document::visibilityStateChanged() if not needed
Product: WebKit Reporter: Per Arne Vollan <pvollan>
Component: WebKit Misc.Assignee: Per Arne Vollan <pvollan>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, cdumez, darin, esprehn+autocc, ews-watchlist, jer.noble, kangil.han, simon.fraser, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch none

Per Arne Vollan
Reported 2020-07-14 09:52:01 PDT
When the shared PlatformMediaSessionManager is created and accessed for the first time, some media libraries are loaded. There should be no need to access the shared PlatformMediaSessionManager if no manager has been created in Document::visibilityStateChanged().
Attachments
Patch (1.74 KB, patch)
2020-07-14 09:55 PDT, Per Arne Vollan
no flags
Patch (1.46 KB, patch)
2020-07-14 12:10 PDT, Per Arne Vollan
no flags
Per Arne Vollan
Comment 1 2020-07-14 09:53:17 PDT
Per Arne Vollan
Comment 2 2020-07-14 09:55:44 PDT
Per Arne Vollan
Comment 3 2020-07-14 11:33:39 PDT
Comment on attachment 404245 [details] Patch Thanks for reviewing!
EWS
Comment 4 2020-07-14 11:40:22 PDT
Committed r264359: <https://trac.webkit.org/changeset/264359> All reviewed patches have been landed. Closing bug and clearing flags on attachment 404245 [details].
Simon Fraser (smfr)
Comment 5 2020-07-14 12:00:45 PDT
Comment on attachment 404245 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=404245&action=review > Source/WebCore/dom/Document.cpp:1761 > + if (PlatformMediaSessionManager::sharedManagerIfExists()) { > + if (!PlatformMediaSessionManager::sharedManager().isInterrupted()) > + MediaStreamTrack::updateCaptureAccordingToMutedState(*this); > + } if (auto mediaSessionManager = PlatformMediaSessionManager::sharedManagerIfExists()) if (mediaSessionManager->isInterrupted()) ....
Per Arne Vollan
Comment 6 2020-07-14 12:02:41 PDT
(In reply to Simon Fraser (smfr) from comment #5) > Comment on attachment 404245 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=404245&action=review > > > Source/WebCore/dom/Document.cpp:1761 > > + if (PlatformMediaSessionManager::sharedManagerIfExists()) { > > + if (!PlatformMediaSessionManager::sharedManager().isInterrupted()) > > + MediaStreamTrack::updateCaptureAccordingToMutedState(*this); > > + } > > if (auto mediaSessionManager = > PlatformMediaSessionManager::sharedManagerIfExists()) > if (mediaSessionManager->isInterrupted()) > .... Yes, that is better, I will a new patch :) Thanks for reviewing!
Per Arne Vollan
Comment 7 2020-07-14 12:10:13 PDT
Reopening to attach new patch.
Per Arne Vollan
Comment 8 2020-07-14 12:10:14 PDT
EWS
Comment 9 2020-07-14 12:55:51 PDT
Committed r264370: <https://trac.webkit.org/changeset/264370> All reviewed patches have been landed. Closing bug and clearing flags on attachment 404263 [details].
Note You need to log in before you can comment on or make changes to this bug.