Bug 171999

Summary: Simplify RealtimeMediaSource data production and state
Product: WebKit Reporter: youenn fablet <youennf>
Component: MediaAssignee: youenn fablet <youennf>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, eric.carlson, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Trying to fix GTK
none
Patch
none
Patch
none
Patch for landing
none
Patch for landing none

youenn fablet
Reported 2017-05-11 16:38:44 PDT
RealtimeMediaSource production of data is complex. We should try to simplify it.
Attachments
Patch (48.97 KB, patch)
2017-05-11 17:15 PDT, youenn fablet
no flags
Patch (48.93 KB, patch)
2017-05-11 17:30 PDT, youenn fablet
no flags
Trying to fix GTK (51.00 KB, patch)
2017-05-12 10:51 PDT, youenn fablet
no flags
Patch (51.27 KB, patch)
2017-05-12 12:17 PDT, youenn fablet
no flags
Patch (51.84 KB, patch)
2017-05-12 13:11 PDT, youenn fablet
no flags
Patch for landing (56.15 KB, patch)
2017-05-15 13:58 PDT, youenn fablet
no flags
Patch for landing (51.78 KB, patch)
2017-05-15 16:35 PDT, youenn fablet
no flags
youenn fablet
Comment 1 2017-05-11 17:15:21 PDT
youenn fablet
Comment 2 2017-05-11 17:30:38 PDT
youenn fablet
Comment 3 2017-05-12 10:51:21 PDT
Created attachment 309915 [details] Trying to fix GTK
youenn fablet
Comment 4 2017-05-12 12:17:34 PDT
youenn fablet
Comment 5 2017-05-12 13:11:58 PDT
Eric Carlson
Comment 6 2017-05-15 09:54:41 PDT
Comment on attachment 309933 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309933&action=review > Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp:89 > m_muted = muted; > > - if (muted) { > - // FIXME: We need to figure out how to guarantee that at least one black video frame is > - // emitted after being muted. > - stopProducingData(); > - } else > - startProducingData(); > + if (muted) > + stop(); > + else > + start(); > + > + notifyMutedObservers(); It is slightly confusing that we modify m_muted and call notifyMutedObservers() here and in notifyMutedChange. Is there a reason to not call notifyMutedChange from here and have it do both?
youenn fablet
Comment 7 2017-05-15 09:59:16 PDT
Comment on attachment 309933 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309933&action=review >> Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp:89 >> + notifyMutedObservers(); > > It is slightly confusing that we modify m_muted and call notifyMutedObservers() here and in notifyMutedChange. Is there a reason to not call notifyMutedChange from here and have it do both? Yes. The only reason is that we preserve setting m_muted before calling start/stop. But maybe it is better to call start/stop unconditionally and then call notifyMutedChange to do the reset of the work. I'll try this and see whether that breaks anything.
youenn fablet
Comment 8 2017-05-15 13:58:36 PDT
Created attachment 310161 [details] Patch for landing
WebKit Commit Bot
Comment 9 2017-05-15 14:00:09 PDT
Comment on attachment 310161 [details] Patch for landing Rejecting attachment 310161 [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', 'validate-changelog', '--check-oops', '--non-interactive', 310161, '--port=mac']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit ChangeLog entry in Tools/ChangeLog contains OOPS!. Full output: http://webkit-queues.webkit.org/results/3745960
youenn fablet
Comment 10 2017-05-15 16:35:08 PDT
Created attachment 310181 [details] Patch for landing
WebKit Commit Bot
Comment 11 2017-05-15 19:45:32 PDT
Comment on attachment 310181 [details] Patch for landing Clearing flags on attachment: 310181 Committed r216898: <http://trac.webkit.org/changeset/216898>
WebKit Commit Bot
Comment 12 2017-05-15 19:45:33 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 13 2017-05-16 14:21:47 PDT
Note You need to log in before you can comment on or make changes to this bug.