RESOLVED FIXED 226478
Fix thread safety issues in WaveShaperProcessor
https://bugs.webkit.org/show_bug.cgi?id=226478
Summary Fix thread safety issues in WaveShaperProcessor
Chris Dumez
Reported 2021-05-31 18:53:08 PDT
Adopt thread safety analysis annotations in WaveShaperProcessor and fix bugs found by clang.
Attachments
Patch (15.43 KB, patch)
2021-05-31 19:01 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2021-05-31 19:01:03 PDT
youenn fablet
Comment 2 2021-06-01 05:05:55 PDT
Comment on attachment 430223 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=430223&action=review > Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:96 > + for (size_t i = 0; i < m_kernels.size(); ++i) auto? > Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:97 > + static_cast<WaveShaperDSPKernel&>(*m_kernels[i]).process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); Why do we need static_cast<WaveShaperDSPKernel&> now while we did not in the past?
Chris Dumez
Comment 3 2021-06-01 07:39:45 PDT
Comment on attachment 430223 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=430223&action=review >> Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:96 >> + for (size_t i = 0; i < m_kernels.size(); ++i) > > auto? What will be the type for auto i = 0? I want the type to be size_t to match kernels.size(). >> Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:97 >> + static_cast<WaveShaperDSPKernel&>(*m_kernels[i]).process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); > > Why do we need static_cast<WaveShaperDSPKernel&> now while we did not in the past? No, this is just an optimization to avoid a virtual function call.
Chris Dumez
Comment 4 2021-06-01 07:46:44 PDT
(In reply to Chris Dumez from comment #3) > Comment on attachment 430223 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=430223&action=review > > >> Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:96 > >> + for (size_t i = 0; i < m_kernels.size(); ++i) > > > > auto? > > What will be the type for auto i = 0? I want the type to be size_t to match > kernels.size(). auto i = 0; would resolve auto to int so it wouldn't do what I want. > > >> Source/WebCore/Modules/webaudio/WaveShaperProcessor.cpp:97 > >> + static_cast<WaveShaperDSPKernel&>(*m_kernels[i]).process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess); > > > > Why do we need static_cast<WaveShaperDSPKernel&> now while we did not in the past? > > No, this is just an optimization to avoid a virtual function call.
EWS
Comment 5 2021-06-01 08:09:55 PDT
Committed r278307 (238344@main): <https://commits.webkit.org/238344@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 430223 [details].
Radar WebKit Bug Importer
Comment 6 2021-06-01 08:10:20 PDT
Note You need to log in before you can comment on or make changes to this bug.