RESOLVED FIXED 172391
[MediaStream] Allow transition from autoplay to play when a capture stream begins.
https://bugs.webkit.org/show_bug.cgi?id=172391
Summary [MediaStream] Allow transition from autoplay to play when a capture stream be...
Eric Carlson
Reported 2017-05-19 15:31:07 PDT
Allow audio/video elements to transition from autoplay to play when a capture stream begin.
Attachments
WIP patch (5.03 KB, patch)
2017-05-19 15:41 PDT, Eric Carlson
no flags
Proposed patch. (9.57 KB, patch)
2017-05-22 13:47 PDT, Eric Carlson
no flags
Proposed patch. (9.58 KB, patch)
2017-05-22 13:50 PDT, Eric Carlson
no flags
Patch (5.56 KB, patch)
2017-05-23 16:19 PDT, youenn fablet
no flags
Radar WebKit Bug Importer
Comment 1 2017-05-19 15:32:06 PDT
Eric Carlson
Comment 2 2017-05-19 15:41:33 PDT
Created attachment 310714 [details] WIP patch No test yet.
Build Bot
Comment 3 2017-05-19 15:44:14 PDT
Attachment 310714 [details] did not pass style-queue: ERROR: Source/WebCore/ChangeLog:9: You should remove the 'No new tests' and either add and list tests, or explain why no new tests were possible. [changelog/nonewtests] [5] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
youenn fablet
Comment 4 2017-05-19 15:55:19 PDT
Comment on attachment 310714 [details] WIP patch View in context: https://bugs.webkit.org/attachment.cgi?id=310714&action=review > Source/WebCore/dom/Document.cpp:3497 > + mediaStreamStateChanged(); Change the name to captureStateChanged() or mediaStreamCaptureStateChanged() maybe? > Source/WebCore/dom/Document.h:1771 > + HashSet<HTMLMediaElement*> m_mediaStreamStateChangeElements; Might be able to use HashSet<std::reference_wrapper<HTMLMediaElement>> Then in the mediaStreamStateChanged, you would have: for (HTMLMediaElement& mediaElement : m_mediaStreamStateChangeElements) mediaElement.mediaStreamStateChanged(); > Source/WebCore/html/HTMLMediaElement.cpp:7500 > + play(); There is resumeAutoplaying() which does almost the same but is also setting m_autoplaying = true as well. Can we reuse it instead?
youenn fablet
Comment 5 2017-05-19 15:55:48 PDT
Looks good, will have a go at it whenever I am finishing my build
Eric Carlson
Comment 6 2017-05-22 13:47:29 PDT
Created attachment 310914 [details] Proposed patch.
Eric Carlson
Comment 7 2017-05-22 13:50:45 PDT
Created attachment 310915 [details] Proposed patch.
youenn fablet
Comment 8 2017-05-22 14:09:41 PDT
Comment on attachment 310915 [details] Proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=310915&action=review > Source/WebCore/dom/Document.h:1772 > + String m_idHashSalt; nit: unneeded whitespaces > LayoutTests/webrtc/autoplay_remote_stream.html:40 > + assert_true(Object.isFrozen(trackEvent.streams), "Object.isFrozen() should return true"); nit: Probably do not need all of these asserts since they are tested in other tests already. > LayoutTests/webrtc/autoplay_remote_stream.html:49 > + remote_video.srcObject = stream; Shouldn't we check that remote_video is not autoplaying after setting srcObject? IIRC, one issue was that the remote_video element was not visible or in the DOM at the time srcObject is set. Maybe we should test these two cases? > LayoutTests/webrtc/autoplay_remote_stream.html:65 > + remote_video.play().then(() => resolve() ); then(resolve) maybe
youenn fablet
Comment 9 2017-05-23 16:19:06 PDT
WebKit Commit Bot
Comment 10 2017-05-23 17:07:25 PDT
Comment on attachment 311072 [details] Patch Clearing flags on attachment: 311072 Committed r217311: <http://trac.webkit.org/changeset/217311>
WebKit Commit Bot
Comment 11 2017-05-23 17:07:26 PDT
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.