WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
184188
[Extra zoom mode] Replace video with a placeholder image during fullscreen transition
https://bugs.webkit.org/show_bug.cgi?id=184188
Summary
[Extra zoom mode] Replace video with a placeholder image during fullscreen tr...
Eric Carlson
Reported
2018-03-30 11:32:29 PDT
Replace video with a placeholder image during fullscreen transition
Attachments
Patch
(35.02 KB, patch)
2018-03-30 11:52 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(35.72 KB, patch)
2018-03-30 13:03 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(35.70 KB, patch)
2018-03-30 13:24 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(36.56 KB, patch)
2018-04-01 22:26 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(36.02 KB, patch)
2018-04-02 04:33 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(36.04 KB, patch)
2018-04-02 06:32 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Patch
(35.50 KB, patch)
2018-04-02 13:20 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
Show Obsolete
(6)
View All
Add attachment
proposed patch, testcase, etc.
Eric Carlson
Comment 1
2018-03-30 11:32:58 PDT
<
rdar://problem/38940307
>
Eric Carlson
Comment 2
2018-03-30 11:52:06 PDT
Created
attachment 336876
[details]
Patch
EWS Watchlist
Comment 3
2018-03-30 11:53:47 PDT
Attachment 336876
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 26 files If any of these errors are false positives, please file a bug against check-webkit-style.
Eric Carlson
Comment 4
2018-03-30 13:03:38 PDT
Created
attachment 336882
[details]
Patch
EWS Watchlist
Comment 5
2018-03-30 13:06:43 PDT
Attachment 336882
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
Eric Carlson
Comment 6
2018-03-30 13:24:19 PDT
Created
attachment 336885
[details]
Patch
EWS Watchlist
Comment 7
2018-03-30 13:25:45 PDT
Attachment 336885
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
youenn fablet
Comment 8
2018-03-31 10:58:49 PDT
Comment on
attachment 336885
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=336885&action=review
> Source/WebCore/html/HTMLMediaElement.cpp:6028 > + if (m_player)
Is there a case where m_player is nullified before exiting full screen?
> Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:265 > + enum UpdateType { UpdateSynchronously, UpdateAsynchronously };
Can it be an enum class?
> Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:1175 > void MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenLayer(PlatformLayer* videoFullscreenLayer, WTF::Function<void()>&& completionHandler)
WTF:: is no longer needed.
> Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm:1069 > void MediaPlayerPrivateMediaSourceAVFObjC::setVideoFullscreenLayer(PlatformLayer *videoFullscreenLayer, WTF::Function<void()>&& completionHandler)
Ditto here.
> Source/WebCore/platform/graphics/avfoundation/objc/VideoFullscreenLayerManagerObjC.mm:77 > + [m_videoInlineLayer setContentsGravity:kCAGravityResizeAspect];
Not sure why this is needed now, maybe a comment in changelog?
> Source/WebCore/platform/graphics/avfoundation/objc/VideoFullscreenLayerManagerObjC.mm:91 > + [m_videoInlineLayer setContents:(id)image.get()];
This is ObjC so if m_videoInlinLayer is null, would this line be a no op, in which case we can remove if(m_videoInlineLayer) ?
> Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm:1112 > + if (m_waitingForPreparedToExit) {
early return?
> Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm:287 > + WebThreadRun([protectedThis = makeRefPtr(this), this] () mutable {
makeRef(*this) is usually what we use. Is it supposed to work in WK1?
> Source/WebKit/WebProcess/cocoa/VideoFullscreenManager.mm:443 > + dispatch_async(dispatch_get_main_queue(), [protectedThis = makeRefPtr(this), videoElement, contextId] {
makeRef(*this) maybe and WTFMove(videoElement) to reduce count churn.
Eric Carlson
Comment 9
2018-04-01 22:26:28 PDT
Created
attachment 336971
[details]
Patch
EWS Watchlist
Comment 10
2018-04-01 22:27:24 PDT
Attachment 336971
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
WebKit Commit Bot
Comment 11
2018-04-01 22:57:50 PDT
Comment on
attachment 336971
[details]
Patch Rejecting
attachment 336971
[details]
from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-03', 'build', '--no-clean', '--no-update', '--build-style=release', '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: Kit/Source/WebKit/UIProcess/WebContextMenuListenerProxy.cpp -o /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/WebContextMenuListenerProxy.o ** BUILD FAILED ** The following build commands failed: CompileC /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/VideoFullscreenManager.o WebProcess/cocoa/VideoFullscreenManager.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (1 failure) Full output:
http://webkit-queues.webkit.org/results/7172584
Eric Carlson
Comment 12
2018-04-02 04:33:02 PDT
Created
attachment 336978
[details]
Patch
EWS Watchlist
Comment 13
2018-04-02 04:34:35 PDT
Attachment 336978
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
WebKit Commit Bot
Comment 14
2018-04-02 05:03:53 PDT
Comment on
attachment 336978
[details]
Patch Rejecting
attachment 336978
[details]
from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-02', 'build', '--no-clean', '--no-update', '--build-style=release', '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: /Data/EWS/WebKit/Source/WebKit/Shared/WebContextMenuItemData.cpp -o /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/WebContextMenuItemData.o ** BUILD FAILED ** The following build commands failed: CompileC /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/VideoFullscreenManager.o WebProcess/cocoa/VideoFullscreenManager.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (1 failure) Full output:
http://webkit-queues.webkit.org/results/7174886
Eric Carlson
Comment 15
2018-04-02 06:32:52 PDT
Created
attachment 336980
[details]
Patch
EWS Watchlist
Comment 16
2018-04-02 06:34:56 PDT
Attachment 336980
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
WebKit Commit Bot
Comment 17
2018-04-02 07:03:13 PDT
Comment on
attachment 336980
[details]
Patch Rejecting
attachment 336980
[details]
from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-01', 'build', '--no-clean', '--no-update', '--build-style=release', '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: /Data/EWS/WebKit/Source/WebKit/Shared/WebContextMenuItemData.cpp -o /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/WebContextMenuItemData.o ** BUILD FAILED ** The following build commands failed: CompileC /Volumes/Data/EWS/WebKit/WebKitBuild/WebKit.build/Release/WebKit.build/Objects-normal/x86_64/VideoFullscreenManager.o WebProcess/cocoa/VideoFullscreenManager.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (1 failure) Full output:
http://webkit-queues.webkit.org/results/7175981
Eric Carlson
Comment 18
2018-04-02 13:20:56 PDT
Created
attachment 337021
[details]
Patch
EWS Watchlist
Comment 19
2018-04-02 13:22:53 PDT
Attachment 337021
[details]
did not pass style-queue: ERROR: Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:266: The parameter name "type" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 27 files If any of these errors are false positives, please file a bug against check-webkit-style.
WebKit Commit Bot
Comment 20
2018-04-02 17:50:34 PDT
Comment on
attachment 337021
[details]
Patch Clearing flags on attachment: 337021 Committed
r230194
: <
https://trac.webkit.org/changeset/230194
>
WebKit Commit Bot
Comment 21
2018-04-02 17:50:36 PDT
All reviewed patches have been landed. Closing bug.
mitz
Comment 22
2018-04-05 21:02:47 PDT
This seems to have broken the !HAVE(AVFOUNDATION_VIDEO_OUTPUT) build.
mitz
Comment 23
2018-04-05 21:06:38 PDT
(In reply to mitz from
comment #22
)
> This seems to have broken the !HAVE(AVFOUNDATION_VIDEO_OUTPUT) build.
Bug 184309
, already fixed.
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