WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 214304
[iOS] Avoid loading media libraries in Document::visibilityStateChanged() if not needed
https://bugs.webkit.org/show_bug.cgi?id=214304
Summary
[iOS] Avoid loading media libraries in Document::visibilityStateChanged() if ...
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
Details
Formatted Diff
Diff
Patch
(1.46 KB, patch)
2020-07-14 12:10 PDT
,
Per Arne Vollan
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Per Arne Vollan
Comment 1
2020-07-14 09:53:17 PDT
rdar://problem/65005038
Per Arne Vollan
Comment 2
2020-07-14 09:55:44 PDT
Created
attachment 404245
[details]
Patch
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
Created
attachment 404263
[details]
Patch
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.
Top of Page
Format For Printing
XML
Clone This Bug