RESOLVED FIXED 206286
Add support for MediaStream video track rendering in GPUProcess
https://bugs.webkit.org/show_bug.cgi?id=206286
Summary Add support for MediaStream video track rendering in GPUProcess
youenn fablet
Reported 2020-01-15 05:42:30 PST
Add support for MediaStream video track rendering in GPUProcess
Attachments
Patch (79.83 KB, patch)
2020-01-15 05:55 PST, youenn fablet
no flags
Patch (96.63 KB, patch)
2020-01-16 02:28 PST, youenn fablet
no flags
Patch (97.30 KB, patch)
2020-01-16 02:54 PST, youenn fablet
no flags
Patch (98.97 KB, patch)
2020-01-16 05:01 PST, youenn fablet
no flags
Patch for landing (100.37 KB, patch)
2020-01-16 08:15 PST, youenn fablet
no flags
Patch for landing (96.07 KB, patch)
2020-01-20 00:50 PST, youenn fablet
no flags
youenn fablet
Comment 1 2020-01-15 05:55:02 PST
youenn fablet
Comment 2 2020-01-15 06:29:37 PST
Rendering does not work 100%, video frame is only updated when a full refresh is needed, like a window resize.
Eric Carlson
Comment 3 2020-01-15 08:59:18 PST
Comment on attachment 387783 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=387783&action=review > Source/WebKit/GPUProcess/webrtc/RemoteSampleBufferDisplayLayer.cpp:138 > + // This is only an approximation, maybe we should use a clock as well. > + return m_mediaTime; I think we will need to use a clock, or time will "stop" between samples. Maybe use the wall clock to calculate the delta between samples? > Source/WebKit/GPUProcess/webrtc/RemoteSampleBufferDisplayLayer.messages.in:1 > +# Copyright (C) 2019 Apple Inc. All rights reserved. 2020 > Source/WebKit/GPUProcess/webrtc/RemoteSampleBufferDisplayLayerManager.messages.in:1 > +# Copyright (C) 2019 Apple Inc. All rights reserved. Ditto > Source/WebKit/WebProcess/GPU/webrtc/SampleBufferDisplayLayer.messages.in:1 > +# Copyright (C) 2019 Apple Inc. All rights reserved. Ditto > Source/WebKit/WebProcess/GPU/webrtc/SampleBufferDisplayLayerIdentifier.h:2 > + * Copyright (C) 2019 Apple Inc. All rights reserved. Ditto
youenn fablet
Comment 4 2020-01-16 02:28:29 PST
youenn fablet
Comment 5 2020-01-16 02:54:31 PST
youenn fablet
Comment 6 2020-01-16 05:01:11 PST
Eric Carlson
Comment 7 2020-01-16 07:03:09 PST
Comment on attachment 387910 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=387910&action=review > Source/WebCore/platform/graphics/avfoundation/objc/LocalSampleBufferDisplayLayer.mm:283 > + CFArrayRef attachmentsArray = CMSampleBufferGetSampleAttachmentsArray(sample.platformSample().sample.cmSampleBuffer, true); > + for (CFIndex i = 0; i < CFArrayGetCount(attachmentsArray); ++i) { > + CFMutableDictionaryRef attachments = checked_cf_cast<CFMutableDictionaryRef>(CFArrayGetValueAtIndex(attachmentsArray, i)); > + CFDictionarySetValue(attachments, kCMSampleAttachmentKey_DisplayImmediately, kCFBooleanTrue); > + } You mentioned this hack in the ChangeLog, but it should have a FIXME here because we're going to need a remote display layer for MSE and it will need to honor timestamps.
youenn fablet
Comment 8 2020-01-16 07:12:23 PST
(In reply to Eric Carlson from comment #7) > Comment on attachment 387910 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=387910&action=review > > > Source/WebCore/platform/graphics/avfoundation/objc/LocalSampleBufferDisplayLayer.mm:283 > > + CFArrayRef attachmentsArray = CMSampleBufferGetSampleAttachmentsArray(sample.platformSample().sample.cmSampleBuffer, true); > > + for (CFIndex i = 0; i < CFArrayGetCount(attachmentsArray); ++i) { > > + CFMutableDictionaryRef attachments = checked_cf_cast<CFMutableDictionaryRef>(CFArrayGetValueAtIndex(attachmentsArray, i)); > > + CFDictionarySetValue(attachments, kCMSampleAttachmentKey_DisplayImmediately, kCFBooleanTrue); > > + } > > You mentioned this hack in the ChangeLog, but it should have a FIXME here > because we're going to need a remote display layer for MSE and it will need > to honor timestamps. OK, let's move it out of LocalSampleBufferDisplayLayer.mm for easier reuse. I don't think this will apply to MSE though since presentation timing is key there. MSE will probably not use LocalSampleBufferDisplayLayer. In WebRTC, we are missing this information and are relying on attachment instead.
youenn fablet
Comment 9 2020-01-16 08:15:48 PST
Created attachment 387921 [details] Patch for landing
WebKit Commit Bot
Comment 10 2020-01-16 10:08:26 PST
The commit-queue encountered the following flaky tests while processing attachment 387921 [details]: editing/spelling/spellcheck-async-remove-frame.html bug 158401 (authors: morrita@google.com, rniwa@webkit.org, and tony@chromium.org) The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 11 2020-01-16 10:09:15 PST
Comment on attachment 387921 [details] Patch for landing Clearing flags on attachment: 387921 Committed r254688: <https://trac.webkit.org/changeset/254688>
WebKit Commit Bot
Comment 12 2020-01-16 10:09:16 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 13 2020-01-16 10:10:16 PST
Matt Lewis
Comment 14 2020-01-17 16:40:23 PST
Reverted r254688 for reason: This caused internal test crashes. Committed r254778: <https://trac.webkit.org/changeset/254778>
youenn fablet
Comment 15 2020-01-20 00:50:49 PST
Created attachment 388216 [details] Patch for landing
WebKit Commit Bot
Comment 16 2020-01-20 02:38:13 PST
The commit-queue encountered the following flaky tests while processing attachment 388216 [details]: editing/spelling/spellcheck-async-remove-frame.html bug 158401 (authors: morrita@google.com, rniwa@webkit.org, and tony@chromium.org) The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 17 2020-01-20 02:39:05 PST
Comment on attachment 388216 [details] Patch for landing Clearing flags on attachment: 388216 Committed r254817: <https://trac.webkit.org/changeset/254817>
WebKit Commit Bot
Comment 18 2020-01-20 02:39:07 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.